:root {
  --cream: #f4e4c3;
  --paper: #faedcf;
  --ink: #2b180d;
  --muted: #4b3824;
  --olive: #4d5b2f;
  --olive-dark: #293315;
  --gold: #d99928;
  --rust: #bf4f1f;
  --orange: #d66f26;
  --line: #7a5526;
  --shadow: 0 24px 60px rgba(43, 24, 13, 0.24);
  --display: "Cooper Black", "Cooper Std Black", "Bookman Old Style", Georgia, serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background:
    radial-gradient(circle at 20% 10%, rgba(217, 153, 40, 0.24), transparent 24rem),
    linear-gradient(135deg, #30180b, #6e3218 46%, #2c381c);
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image:
    radial-gradient(rgba(43, 24, 13, 0.22) 0.8px, transparent 0.8px),
    radial-gradient(rgba(255, 255, 255, 0.28) 0.7px, transparent 0.7px);
  background-position: 0 0, 12px 14px;
  background-size: 24px 24px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1400px, calc(100% - 24px));
  margin: 8px auto 36px;
  border: 2px solid rgba(250, 237, 207, 0.86);
  border-radius: 48px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-height: 82px;
  padding: 18px clamp(24px, 6vw, 78px);
  background: rgba(250, 237, 207, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  margin-right: auto;
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  text-decoration: none;
  color: var(--rust);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 58px);
  font-family: var(--display);
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:first-child,
.site-nav a:hover {
  color: var(--rust);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section-card {
  position: relative;
  border-top: 2px solid rgba(43, 24, 13, 0.8);
  overflow: hidden;
}

.hero {
  min-height: min(900px, calc(100vh - 20px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) clamp(24px, 8vw, 96px) 64px;
  border-top: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 620px;
  padding-left: clamp(0px, 7vw, 78px);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 4.8vw, 5.4rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero h1 span {
  display: inline-block;
  margin-top: 0.06em;
}

.hero-role {
  margin: 30px 0 28px;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.16;
  color: var(--rust);
  text-transform: uppercase;
}

.hero-intro {
  max-width: 500px;
  margin: 0 0 44px;
  font-size: clamp(1rem, 1.4vw, 1.32rem);
  color: #1f1a14;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  padding: 12px 18px 12px 28px;
  border: 2px solid rgba(43, 24, 13, 0.82);
  border-radius: 999px;
  color: var(--paper);
  background: var(--olive);
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.16);
  font-family: var(--display);
  font-size: clamp(0.9rem, 1.3vw, 1.13rem);
  text-decoration: none;
  text-transform: uppercase;
  text-align: left;
}

.button span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--rust);
  font-family: Georgia, serif;
  line-height: 1;
}

.hero-media {
  position: relative;
  z-index: 2;
  padding: 14px;
  border: 10px solid var(--gold);
  border-radius: 72px;
  background: var(--olive);
  box-shadow: 0 0 0 3px var(--olive-dark), 0 20px 40px rgba(43, 24, 13, 0.22);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 0.83;
  object-fit: cover;
  object-position: 48% 16%;
  border-radius: 52px;
}

.award-badge {
  position: absolute;
  right: -18px;
  bottom: -18px;
  display: grid;
  width: clamp(140px, 15vw, 210px);
  aspect-ratio: 1;
  place-items: center;
  padding: 22px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  color: var(--paper);
  background: var(--rust);
  box-shadow: 0 10px 30px rgba(43, 24, 13, 0.22);
  font-family: var(--display);
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.award-badge strong {
  display: block;
  font-size: clamp(1.08rem, 2vw, 1.65rem);
}

.award-badge span {
  font-size: clamp(0.72rem, 1.2vw, 1.1rem);
}

.wave-stack {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(19vw, 240px);
  pointer-events: none;
}

.wave {
  position: absolute;
  top: -8%;
  bottom: -8%;
  width: 52%;
  border-radius: 50% 42% 55% 48% / 24% 52% 44% 72%;
}

.wave-rust {
  left: -25%;
  background: var(--rust);
}

.wave-gold {
  left: -7%;
  background: var(--gold);
}

.wave-olive {
  left: 11%;
  background: var(--olive);
}

.spark {
  position: absolute;
  z-index: 1;
  color: var(--rust);
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 1;
}

.spark-one {
  top: 27%;
  left: 48%;
}

.spark-two {
  right: 6%;
  bottom: 8%;
}

.flower {
  position: absolute;
  z-index: 2;
  display: block;
  width: 160px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--olive) 0 21%, transparent 22%),
    conic-gradient(var(--rust) 0 12.5%, var(--orange) 0 25%, var(--rust) 0 37.5%, var(--orange) 0 50%, var(--rust) 0 62.5%, var(--orange) 0 75%, var(--rust) 0 87.5%, var(--orange) 0);
}

.flower-large {
  left: 30px;
  bottom: 30px;
  z-index: 1;
}

.flower-small {
  right: 36px;
  bottom: -28px;
  width: 190px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 44px);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.section-heading span {
  color: var(--rust);
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
}

.about,
.photo-band {
  padding: clamp(48px, 6vw, 76px) clamp(24px, 4vw, 48px);
  color: var(--paper);
  background: var(--olive-dark);
}

.bio-copy {
  max-width: 980px;
  margin: 0 auto;
}

.bio-copy article {
  border-left: 3px solid var(--gold);
  padding-left: clamp(20px, 3vw, 34px);
}

.contact h2,
.thanks-card h1 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 4.1rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.bio-copy p,
.contact p,
.thanks-card p {
  margin: 0 0 18px;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.photo-grid figure {
  position: relative;
  margin: 0;
  padding-bottom: 24px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1.08;
  border: 4px solid var(--paper);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
}

.photo-grid figure:nth-child(1) img {
  object-position: 82% 50%;
}

.photo-grid figure:nth-child(2) img {
  object-position: 18% 42%;
}

.photo-grid figure:nth-child(3) img {
  object-position: 28% 50%;
}

.photo-grid figure:nth-child(4) img {
  object-position: 60% 48%;
}

.photo-grid figcaption {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: max-content;
  max-width: calc(100% - 20px);
  transform: translateX(-50%);
  padding: 8px 20px;
  border-radius: 999px;
  color: var(--olive-dark);
  background: var(--paper);
  font-family: var(--display);
  font-size: clamp(0.86rem, 1.5vw, 1.2rem);
  line-height: 1.05;
  text-align: center;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(56px, 7vw, 86px) clamp(24px, 8vw, 96px) 78px;
  background:
    radial-gradient(circle at 4% 6%, var(--gold) 0 11%, transparent 12%),
    radial-gradient(circle at 98% 92%, var(--rust) 0 14%, transparent 15%),
    var(--paper);
}

.contact-intro {
  border-right: 2px solid rgba(43, 24, 13, 0.65);
  padding-right: clamp(28px, 5vw, 62px);
}

.social-links {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.social-links a {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--olive-dark);
}

.social-links svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-action {
  display: flex;
  align-items: center;
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}

label {
  display: grid;
  gap: 8px;
  font-family: var(--display);
  font-size: 1rem;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 2px solid rgba(43, 24, 13, 0.72);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(250, 237, 207, 0.58);
  font: 500 1rem var(--body);
}

textarea {
  min-height: 196px;
  resize: vertical;
}

.message-field {
  grid-row: span 3;
}

.form-button {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: min(100%, 360px);
  justify-content: center;
  background: var(--rust);
}

.form-button span {
  color: var(--rust);
  background: var(--paper);
}

.closing-quote {
  margin: 0;
  padding: 32px clamp(28px, 15vw, 280px);
  color: var(--paper);
  background: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 2.1rem);
  line-height: 1.18;
  text-align: center;
}

.hidden,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thanks-card {
  max-width: 760px;
  padding: clamp(44px, 8vw, 76px);
  border: 2px solid var(--ink);
  border-radius: 36px;
  background: var(--paper);
  text-align: center;
}

@media (max-width: 860px) {
  .site-shell {
    width: min(100% - 16px, 760px);
    border-radius: 32px;
  }

  .hero,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-copy {
    padding-left: clamp(22px, 10vw, 78px);
  }

  .hero-media {
    max-width: 560px;
    margin: 0 auto;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-intro {
    border-right: 0;
    border-bottom: 2px solid rgba(43, 24, 13, 0.65);
    padding-right: 0;
    padding-bottom: 28px;
  }

  .contact {
    background: var(--paper);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    justify-content: space-between;
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 2px solid var(--ink);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: 0 18px 38px rgba(43, 24, 13, 0.25);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero h1 {
    font-size: clamp(3rem, 12.8vw, 5rem);
  }

  .wave-stack {
    display: none;
  }

  .spark-one,
  .spark-two,
  .flower-large,
  .flower-small {
    display: none;
  }

  .award-badge {
    right: -8px;
    bottom: -8px;
  }

  .photo-grid,
  form {
    grid-template-columns: 1fr;
  }

  .message-field {
    grid-row: auto;
  }

  .section-heading {
    gap: 12px;
  }

  .section-heading h2 {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }
}

@media (max-width: 460px) {
  .site-shell {
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .hero,
  .about,
  .photo-band,
  .contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-copy {
    padding-left: 16px;
  }

  .button {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    padding-left: 20px;
  }

  .photo-grid figcaption {
    font-size: 0.94rem;
  }
}
