/* ============================================================
   RECHARGE — The Urban Spa
   Mockup-faithful: espresso, cream, copper
   ============================================================ */

:root {
  --espresso: #2a1b16;
  --espresso-deep: #1c110e;
  --burgundy: #3a221c;
  --cream: #fbf4ee;
  --cream-2: #efe4d8;
  --copper: #c49280;
  --copper-hover: #b07d6c;
  --copper-soft: rgba(179, 126, 109, 0.18);
  --white: #fff;
  --ink: #2a1b16;
  --muted: #6d5b53;
  --on-dark: #f4ebe3;
  --on-dark-soft: rgba(244, 235, 227, 0.72);
  --line: rgba(42, 27, 22, 0.12);
  --line-dark: rgba(244, 235, 227, 0.16);
  --pill: 999px;
  --max: 1240px;
  --gutter: clamp(1.2rem, 4.2vw, 3.25rem);
  --serif: "Cormorant Garamond", "Palatino Linotype", Palatino, serif;
  --display: "Cinzel", "Palatino Linotype", Palatino, serif;
  --sans: "Montserrat", system-ui, sans-serif;
  --script: "Allura", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header: 78px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.script {
  font-family: var(--script);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--espresso);
  color: var(--cream);
  border-radius: var(--pill);
}
.skip-link:focus { top: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.7rem;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}
.btn--primary:hover {
  background: var(--copper-hover);
  border-color: var(--copper-hover);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}
.btn--metal {
  background: linear-gradient(180deg, #d7a48f 0%, #b37e6d 52%, #9d6b5c 100%);
  color: var(--espresso);
  border-color: transparent;
  font-weight: 600;
}
.btn--metal:hover {
  background: linear-gradient(180deg, #e0b19d 0%, #c08a78 52%, #a86f5e 100%);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
  padding: 0 var(--gutter);
  transition: background 0.35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(28, 17, 14, 0.94);
  backdrop-filter: blur(16px);
}
.brand img { width: clamp(118px, 16vw, 152px); height: auto; }
.header-end {
  display: none;
  align-items: center;
  gap: 2rem;
}
.site-nav { display: flex; gap: 1.75rem; }
.site-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}
.site-nav a:hover,
.site-nav a.is-active { color: var(--white); }
.btn--nav { padding: 0.7rem 1.35rem; font-size: 0.72rem; }

.nav-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.4px;
  background: var(--white);
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.4px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--header);
  left: 0;
  right: 0;
  z-index: 99;
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem var(--gutter) 1.4rem;
  background: var(--espresso-deep);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--on-dark);
}
.mobile-nav .btn { margin-top: 0.85rem; justify-self: start; }

@media (min-width: 900px) {
  .header-end { display: flex; }
  .nav-toggle,
  .mobile-nav { display: none !important; }
}

/* Shared type */
.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}
.section-title {
  margin: 0 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 4.4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
}
.section-title--light { color: var(--on-dark); }
.section-title .script {
  font-size: 0.92em;
  color: var(--copper);
  line-height: 1;
}
.prose {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 300;
}
.prose p { margin: 0; }
.prose strong { color: var(--ink); font-weight: 500; }
.prose--light { color: var(--on-dark-soft); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

.botanical { color: var(--copper); opacity: 0.45; pointer-events: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 8, 7, 0.22) 0%, rgba(12, 8, 7, 0.08) 32%, rgba(12, 8, 7, 0.55) 62%, rgba(12, 8, 7, 0.94) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 var(--gutter) 3.6rem;
}
.hero-copy {
  max-width: 46rem;
  text-align: center;
}
.hero-flourish {
  width: min(220px, 60vw);
  height: auto;
  margin: 0 auto 0.85rem;
  color: var(--copper);
  opacity: 0.85;
}
.hero-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 9.2vw, 6.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  color: var(--copper);
  text-shadow: 0 2px 18px rgba(12, 8, 7, 0.35);
}
.hero-slogan {
  margin: 1.05rem 0 0;
  font-family: var(--sans);
  font-size: clamp(0.68rem, 1.5vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1.45;
  color: var(--white);
}
.hero-script {
  margin: 0.85rem 0 0;
  font-family: var(--script);
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  color: var(--copper);
}
.btn--hero {
  display: inline-flex;
  margin-top: 1.6rem;
  padding: 0.95rem 2.1rem;
  border-radius: 2px;
  background: var(--copper);
  color: var(--white);
  border: 0;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.btn--hero:hover {
  background: var(--copper-hover);
  transform: none;
}

.info-wrap {
  position: relative;
  z-index: 5;
  margin: -2.4rem var(--gutter) 0;
}
.info-bar {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--espresso-deep);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(20, 10, 8, 0.28);
}
.info-bar__item {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid var(--line-dark);
}
.info-icon {
  width: 22px;
  height: 22px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  color: var(--copper);
}
.info-bar__item span {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}
.info-bar__item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--on-dark);
  line-height: 1.4;
}

@media (min-width: 700px) {
  .info-bar { grid-template-columns: 1fr 1fr; }
  .info-bar__item:nth-child(odd) { border-right: 1px solid var(--line-dark); }
  .info-bar__item:nth-last-child(-n + 2) { border-bottom: 0; }
}
@media (min-width: 1100px) {
  .info-bar { grid-template-columns: repeat(4, 1fr); }
  .info-bar__item {
    border-bottom: 0;
    border-right: 1px solid var(--line-dark);
    padding: 1.45rem 1.4rem;
  }
  .info-bar__item:last-child { border-right: 0; }
}

/* Story: cream wine + copy | dark talk */
.story {
  display: grid;
  background: #fdf8f2;
}
.story-left {
  display: grid;
  background: #fdf8f2;
}
.story-glass {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem 0.75rem 0;
  background: transparent;
}
.story-glass img {
  width: min(92%, 420px);
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 22px 36px rgba(80, 20, 24, 0.16));
}
.story-copy {
  padding: clamp(1.6rem, 5vw, 3.4rem) var(--gutter) clamp(2.4rem, 6vw, 4.2rem);
}
.gold-rule {
  display: block;
  width: 3.2rem;
  height: 1.5px;
  margin: 0 0 1.35rem;
  background: var(--copper);
}
.story-copy .btn { margin-top: 1.55rem; }

.story-right {
  position: relative;
  background: var(--espresso);
  color: var(--on-dark);
  padding: clamp(2.6rem, 6vw, 4.8rem) var(--gutter);
  padding-right: clamp(6.5rem, 12vw, 9rem);
  overflow: hidden;
}
.expect-kicker {
  margin: 0 0 0.45rem;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  color: var(--copper);
}
.talk-intro {
  margin: 0 0 1.6rem;
  max-width: 36rem;
  font-weight: 300;
  color: var(--on-dark-soft);
  line-height: 1.65;
}
.seal {
  position: absolute;
  top: 1.4rem;
  right: 1.3rem;
  width: 112px;
  height: 112px;
  color: var(--copper);
}
.seal svg { width: 100%; height: 100%; display: block; }
.seal-text {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.8px;
  fill: currentColor;
}
.seal-glass {
  stroke-width: 1.55;
}
.talk-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
  max-width: 34rem;
}
.talk-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.95rem;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--on-dark);
  line-height: 1.5;
}
.talk-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--copper);
  border-radius: 50%;
  color: var(--copper);
  flex-shrink: 0;
}
.talk-icon svg { width: 20px; height: 20px; }
.story-sprig {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 92px;
  height: 120px;
  color: var(--copper);
  opacity: 0.55;
}

@media (min-width: 760px) {
  .story-left {
    grid-template-columns: 0.78fr 1.22fr;
    align-items: stretch;
  }
  .story-glass {
    min-height: 100%;
    align-items: flex-end;
    padding: 1.25rem 0 0;
  }
  .story-glass img {
    width: 100%;
    max-width: 420px;
  }
  .story-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.4rem 2.4rem 3.4rem 1.2rem;
  }
}

@media (min-width: 1080px) {
  .story {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }
  .story-right {
    padding: 3.6rem 3rem 3.6rem 2.6rem;
  }
  .seal { width: 122px; height: 122px; }
}

/* Offer */
.offer {
  background: var(--burgundy);
  color: var(--on-dark);
  padding: clamp(3.2rem, 7vw, 5.6rem) var(--gutter);
}
.offer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.6rem;
}
.offer-eyebrow {
  margin: 0 0 0.35rem;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  color: var(--copper);
}
.offer-price {
  margin: 0 0 1.1rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 6.2rem);
  font-weight: 600;
  line-height: 0.85;
  color: var(--on-dark);
}
.offer-price small {
  display: block;
  margin-top: 0.55em;
  font-size: 0.22em;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--on-dark-soft);
}
.offer-copy {
  margin: 0 0 1.8rem;
  max-width: 28rem;
  font-weight: 300;
  color: var(--on-dark-soft);
}
.offer__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.offer__cards li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 0.75rem;
  row-gap: 0.35rem;
  padding: 1.25rem 1.2rem;
  border: 1px solid rgba(179, 126, 109, 0.45);
  background: rgba(0, 0, 0, 0.16);
}
.card-num {
  grid-row: 1;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--copper);
}
.offer__cards svg {
  grid-row: 1;
  width: 20px;
  height: 20px;
  color: var(--copper);
  justify-self: end;
  align-self: center;
}
.offer__cards h3 {
  grid-column: 1 / -1;
  margin: 0.35rem 0 0;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--on-dark);
}
.offer__cards p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--on-dark-soft);
}

@media (min-width: 560px) {
  .offer__cards { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .offer__inner {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 3.5rem 4rem;
    align-items: center;
  }
}

/* Speakers */
.speakers {
  background: var(--cream);
  padding: clamp(3.4rem, 8vw, 6rem) var(--gutter);
}
.speakers__layout {
  max-width: var(--max);
  margin: 0 auto;
}
.speakers__intro { position: relative; max-width: 34rem; margin-bottom: 2.6rem; }
.speakers__intro .botanical {
  position: absolute;
  left: -1.5rem;
  top: -1rem;
  width: 110px;
  height: 150px;
  opacity: 0.28;
}
.speakers-lede {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}
.speakers-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2.2rem 1.4rem;
}
.speaker-card { text-align: center; }
.speaker-card__photo {
  position: relative;
  width: min(176px, 58vw);
  aspect-ratio: 1;
  margin: 0 auto 1.35rem;
  border-radius: 50%;
  overflow: visible;
}
.speaker-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 50%;
  background: var(--cream-2);
}
.speaker-card:nth-child(1) .speaker-card__photo img {
  object-position: center 18%;
}
.speaker-card:nth-child(4) .speaker-card__photo img {
  object-position: center 22%;
}
.speaker-card__num {
  position: absolute;
  left: 8px;
  bottom: 6px;
  width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  font-family: var(--serif);
  font-size: 0.82rem;
  border: 2px solid var(--cream);
}
.speaker-session {
  margin: 0 0 0.3rem;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}
.speaker-card h3 {
  margin: 0 0 0.28rem;
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 600;
}
.speaker-card__role {
  margin: 0 0 0.7rem;
  font-size: 0.84rem;
  color: var(--muted);
}
.speaker-card__bio {
  margin: 0 auto;
  max-width: 22rem;
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
}

.speakers-panel {
  margin-top: 2.8rem;
  padding: 1.8rem 1.6rem 1.9rem;
  border: 1px solid rgba(196, 146, 128, 0.55);
  background: rgba(255, 255, 255, 0.42);
  max-width: 46rem;
}
.speakers-panel__kicker {
  margin: 0 0 0.35rem;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  color: var(--copper);
}
.speakers-panel__title {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
.speakers-panel p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

@media (min-width: 640px) {
  .speakers-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .speakers__layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 3rem 2.5rem;
    align-items: start;
  }
  .speakers__intro { margin: 0; padding-top: 0.5rem; }
  .speakers-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
  .speaker-card__photo { width: 100%; max-width: 168px; }
  .speakers-panel {
    grid-column: 1 / -1;
    max-width: none;
    padding: 2.1rem 2.2rem;
  }
}

/* Music */
.music {
  display: grid;
  background: var(--espresso-deep);
}
.music__media { background: #120b09; }
.music__media img {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  object-position: center top;
  margin: 0 auto;
}
.music__content { padding: clamp(2.5rem, 6vw, 4.8rem) var(--gutter); }
.music-kicker {
  margin: 0 0 0.45rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--copper);
}
.music-host {
  margin: 0 0 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}

@media (min-width: 860px) {
  .music {
    grid-template-columns: 46% 54%;
    min-height: 520px;
  }
  .music__media {
    display: flex;
    align-items: stretch;
  }
  .music__media img {
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center 18%;
  }
  .music__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3.5rem;
  }
}

/* Reserve */
.reserve {
  display: grid;
  gap: 2.4rem;
  padding: clamp(3.2rem, 7vw, 5.6rem) var(--gutter);
  background: var(--cream);
}
.reserve-facts {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}
.reserve-facts li { display: flex; gap: 0.95rem; }
.reserve-facts svg {
  width: 22px;
  height: 22px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  color: var(--copper);
}
.reserve-facts span {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.reserve-facts strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
}
.form-card {
  position: relative;
  background: var(--white);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: 0 18px 50px rgba(42, 27, 22, 0.08);
}
.form-card__deco {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 78px;
  height: 78px;
}
.form-card__title {
  margin: 0 0 0.3rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}
.form-card__lede {
  margin: 0 0 1.2rem;
  max-width: 36rem;
  color: var(--muted);
  font-weight: 300;
}
.form-fallback { margin: 1rem 0 0; font-size: 0.86rem; color: var(--muted); }
.form-fallback a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; }

@media (min-width: 960px) {
  .reserve {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 3.5rem 4rem;
    max-width: calc(var(--max) + var(--gutter) * 2);
    margin: 0 auto;
    align-items: start;
  }
}

/* Footer */
.footer {
  display: grid;
  gap: 0.7rem;
  padding: 1.15rem var(--gutter);
  background: var(--espresso-deep);
  color: var(--on-dark-soft);
  font-size: 0.8rem;
}
.footer__logo { width: 108px; height: auto; opacity: 0.92; }
.footer__copy { margin: 0; }
.footer__script { margin: 0; font-size: 1.35rem; color: var(--copper); }
.footer__top { color: var(--on-dark); }
.footer__top:hover { color: var(--copper); }

@media (min-width: 768px) {
  .footer {
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1.5rem;
  }
}

/* Thank-you / form redirect */
.page-thanks {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}
.site-header--solid {
  position: sticky;
  top: 0;
  background: var(--espresso-deep);
}
.thanks {
  flex: 1;
  display: grid;
  gap: 2.4rem;
  width: 100%;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  padding: clamp(2.4rem, 6vw, 4.6rem) var(--gutter) clamp(3rem, 7vw, 5.4rem);
}
.thanks__copy {
  max-width: 36rem;
}
.thanks .hero-flourish {
  margin: 0 0 0.85rem;
  color: var(--copper);
}
.thanks__kicker {
  margin: 0 0 0.35rem;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  color: var(--copper);
}
.thanks__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 5.2rem);
  font-weight: 600;
  line-height: 0.95;
  color: var(--ink);
}
.thanks__lede,
.thanks__note {
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}
.thanks__lede strong { color: var(--ink); font-weight: 500; }
.thanks__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(42, 27, 22, 0.28);
}
.btn--ghost-dark:hover {
  border-color: var(--copper);
  color: var(--copper);
}
.thanks__card {
  background: var(--espresso);
  color: var(--on-dark);
  padding: clamp(1.6rem, 4vw, 2.3rem);
  box-shadow: 0 18px 50px rgba(20, 10, 8, 0.18);
}
.thanks__card .eyebrow { color: var(--copper); }
.thanks__event {
  margin: 0 0 1.35rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--copper);
}
.thanks__card .reserve-facts { margin-top: 0; }
.thanks__card .reserve-facts span { color: var(--copper); }
.thanks__card .reserve-facts strong { color: var(--on-dark); }
.thanks__map {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--on-dark-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.thanks__map:hover { color: var(--copper); }
.thanks__script {
  margin: 1.6rem 0 0;
  font-size: 1.7rem;
  color: var(--copper);
}

@media (min-width: 960px) {
  .thanks {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem 4.2rem;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .btn {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
