/* ==========================================================================
   AI-Native Retreat hero, Partouche Multiverse x ryon
   Pixel-faithful replica of the reference mockup. Desktop is the source of
   truth (1440px), then it degrades cleanly to tablet and mobile.
   No frameworks, no dependencies.
   ========================================================================== */

:root {
  /* Color */
  --color-page-bg:      #FFFFFF;   /* page background, the hero panel sits on this */
  --color-panel-ink:    #050607;   /* near-black fallback behind the hero image */
  --color-accent:       var(--brand-green);   /* ryon brand green (shared): eyebrow, AI-native, APPLY, CTA, icons */
  --color-accent-ink:   #03935A;   /* deeper green of the brand, legible on white (dent label) */
  --color-text-on-dark: #FFFFFF;
  --color-text-muted:   rgba(255, 255, 255, 0.82); /* subhead on dark */
  --color-nav-ink:      #0A0A0A;   /* nav links on white */
  --color-divider:      rgba(255, 255, 255, 0.22); /* stat dividers */

  /* Radius and structure */
  --panel-radius: 22px;
  --page-pad-x:   24px;   /* horizontal gutter, matches ryon.ai px-6 */
  --nav-h:        60px;   /* header height, kept in sync with the mobile menu */

  /* ---- One typographic system for the whole page ----
     Every heading and paragraph maps to a step here. Do not hard-code sizes
     in section rules; use these tokens so the scale stays consistent. */
  --fs-display: clamp(30px, 4.9vw, 62px);   /* H1, hero only — matches ryon.ai (caps ~61.6px) */
  --fs-h2:      clamp(30px, 3.4vw, 48px);   /* section titles, matches ryon text-3xl→5xl */
  --fs-h3:      clamp(21px, 1.6vw, 25px);   /* card and sub titles */
  --fs-title-sm: 18px;                       /* small titles, names */
  --fs-lead:    clamp(16px, 1.15vw, 19px);  /* section intros, subhead */
  --fs-body:    16px;                        /* standard paragraph */
  --fs-body-sm: 15px;                        /* secondary text, card copy */
  --fs-meta:    13px;                        /* captions, meta, footer */
  --fs-label:   12px;                        /* uppercase labels */
  --fs-micro:   11px;                        /* tiny uppercase labels */

  --lh-tight:   1.06;   /* display */
  --lh-snug:    1.12;   /* h2 */
  --lh-title:   1.2;    /* h3 */
  --lh-body:    1.6;    /* paragraphs */
  --lh-lead:    1.5;    /* leads */
  --tracking-tight:   -0.02em;
  --tracking-eyebrow:  0.2em;

  /* Consistent vertical rhythm for every full-width section (matches ryon py-24→py-32) */
  --section-pad-y: clamp(96px, 9vw, 128px);

  /* Aliases kept so existing rules resolve to the system */
  --h1-size:        var(--fs-display);
  --h1-leading:     var(--lh-tight);
  --h1-tracking:    var(--tracking-tight);
  --eyebrow-size:   13px;
  --eyebrow-tracking: var(--tracking-eyebrow);
  --subhead-size:   var(--fs-lead);
  --subhead-leading: var(--lh-lead);
  --nav-size:       14px;
  --nav-tracking:   0;
  --cta-size:       15px;
  --cta-tracking:   0;
  --stat-size:      13px;
  --stat-tracking:  0.08em;

  /* Manifesto section */
  --manifesto-bg:    #FFFFFF;
  --manifesto-ink:   #0A0A0A;   /* near-black, intentional, not pure black */
  --manifesto-max-w: 768px;     /* centered column width */
  --manifesto-pad-y: var(--section-pad-y);
  --reveal-gap:      56px;      /* space between reveal blocks */

  /* Reveal motion: slow and smooth, a calm rise that matches "read this
     slowly". Long duration with a gentle ease-out deceleration. */
  --reveal-distance: 28px;      /* how far each block travels up */
  --reveal-duration: 1.5s;
  --reveal-ease:     cubic-bezier(0.16, 1, 0.3, 1);

  /* Modules bento section */
  --modules-pad-y:   var(--section-pad-y);
  --modules-max-w:   1152px;
  --bento-gap:       16px;

  /* Masterminds section */
  --mm-pad-y:        var(--section-pad-y);
  --mm-max-w:        1152px;
}

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

/* The hidden attribute must win over flex/grid display (used by the booking
   form and its success state), otherwise a display rule keeps it visible. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

/* Smooth in-page scrolling to the booking form, unless reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--color-page-bg);
  color: var(--color-nav-ink);
  /* Inter for body/UI, from the shared brand system. Display headings (h1/h2)
     opt back into Almarai via brand.css. */
  font-family: var(--brand-font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { text-decoration: none; color: inherit; }

ul { margin: 0; padding: 0; list-style: none; }

/* ==========================================================================
   5.1 Top nav
   ========================================================================== */
.site-nav {
  position: relative;
  z-index: 100;
  height: 80px;              /* matches ryon.ai desktop header */
  padding: 0 64px;           /* logo left edge at 64px, like the main site */
  background: var(--color-page-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Anchor targets clear the top edge a little when jumped to */
main > section[id],
.location[id] { scroll-margin-top: 24px; }

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ryon-logo { height: 28px; width: auto; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-right a {
  font-size: var(--nav-size);
  font-weight: 500;
  letter-spacing: var(--nav-tracking);
  color: var(--color-nav-ink);
  transition: opacity 0.18s ease;
}

/* Menu links sit at half strength and come to full on hover */
.nav-right a:not(.nav-apply) { opacity: 0.5; transition: opacity 0.25s ease; }
.nav-right a:not(.nav-apply):hover,
.nav-right a:not(.nav-apply):focus-visible { opacity: 1; }

/* Bullet button: the shared filled green pill, used by the header APPLY and
   the hero CTA. Each carries the classic Ryon slash as a leading icon. */
/* Primary CTA — the exact green pill from the main ryon.ai site: green fill,
   ink label + slash, Inter semibold, darkens on hover. Uniform padding across
   every button (13px 26px) so they read as one component. */
.btn-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 20px; /* matches ryon.ai px-5 py-3 exactly */
  background: var(--color-accent);
  color: var(--brand-ink);
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px; /* single button text size, matches ryon.ai text-sm */
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.btn-bullet:hover { filter: brightness(0.9); }
.btn-bullet:active { transform: translateY(1px); }

/* The ryon slash mark, sized to the label and inheriting the ink colour. */
.btn-slash {
  flex: none;
  height: 0.82em;
  width: auto;
  color: inherit;
}

/* APPLY in the header */
.nav-right .nav-apply {
  color: var(--brand-ink);
  font-weight: 600; /* keep the pill semibold; overrides the nav-link weight */
}

.nav-right .nav-apply:hover { opacity: 1; }

.nav-right a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 3px;
}

/* Pill buttons keep their rounded shape on focus */
.btn-bullet:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 999px;
}

/* Mobile menu button, hidden on desktop */
.nav-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-nav-ink);
  border-radius: 2px;
}

.nav-menu-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ==========================================================================
   5.2 Hero panel
   ========================================================================== */
.hero {
  position: relative;
  /* Flush below the header + 24px side margins + 32px radius, matching the
     ryon.ai home hero exactly. */
  margin: 0 24px 24px;
  /* Fill the first screen exactly like the ryon.ai hero: viewport minus the
     header (80px) and this panel's own 24px bottom margin, so it never spills
     past the fold. Floored/capped to stay sane on tiny and huge screens. */
  height: clamp(520px, calc(100vh - 104px), 880px);
  border-radius: 32px;
  overflow: hidden;
  background-color: var(--color-panel-ink);
  background-image: url("assets/bg_ai_native_hero.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Gradient overlay: darken the left for text, soft vignette at the bottom */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.78) 28%,
      rgba(0, 0, 0, 0.35) 52%,
      rgba(0, 0, 0, 0.08) 78%,
      rgba(0, 0, 0, 0) 100%),
    linear-gradient(0deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0) 30%);
}

/* ==========================================================================
   5.3 Hero content
   ========================================================================== */
.hero-content {
  position: relative;   /* above the ::before overlay */
  z-index: 1;
  /* Matches ryon.ai hero content: max-w-3xl (768px), lg:px-12 (48px) gutter,
     vertically centered (no nudge) so both heroes place text identically. */
  max-width: 768px;
  padding-left: 48px;
  padding-right: 48px;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--color-accent);
  font-size: var(--eyebrow-size);
  font-weight: 500;
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
}

h1 {
  margin: 0 0 32px;
  color: var(--color-text-on-dark);
  font-size: var(--h1-size);
  font-weight: 700;   /* bold display, matching ryon.ai */
  line-height: 1;     /* tight, matching ryon.ai */
  letter-spacing: var(--h1-tracking);
  white-space: nowrap;   /* honor the authored <br>, never break a line */
}

/* Keep the compound word intact so it never splits at the hyphen */
h1 .accent {
  color: var(--color-accent);
  white-space: nowrap;
}

.subhead {
  margin: 0 0 40px;
  max-width: 560px;   /* wide enough to keep the subhead to two lines */
  color: var(--color-text-muted);
  font-size: clamp(15px, 1.4vw, 18px);   /* matches ryon.ai subhead (up to text-lg 18px) */
  font-weight: 400;
  line-height: var(--subhead-leading);
}

/* CTA, the same bullet button as the header, sized up for the hero */
.cta {
  letter-spacing: var(--cta-tracking);
}

/* ==========================================================================
   5.4 Stat row
   ========================================================================== */
/* Bottom-right corner cluster: benefits stacked above the dent */
.hero-corner {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.hero-stats {
  display: flex;
  align-items: center;
  margin-right: 36px;   /* line the benefits up over the dent */
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-icon {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
}

.stat-label {
  margin-top: 10px;
  color: var(--color-text-on-dark);
  font-size: var(--stat-size);
  font-weight: 500;
  letter-spacing: var(--stat-tracking);
  text-transform: uppercase;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 46px;
  margin: 0 28px;
  background: var(--color-divider);
}

/* The dent: a notch where the white page background pushes up into the
   bottom-right of the panel, so the panel looks deformed (a bite taken out of
   the corner) rather than carrying a card on top. The fill matches the page,
   and the two pseudo-element fillets round the junctions concavely so the cut
   reads as carved into the panel. */
.hero-dent {
  position: relative;
  padding: 22px 40px 26px;
  background: var(--color-page-bg);
  border-top-left-radius: 26px;              /* convex inner corner of the notch */
  border-bottom-right-radius: var(--panel-radius);
}

/* concave fillet where the notch top edge meets the panel right edge */
.hero-dent::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 22px;
  height: 22px;
  background: radial-gradient(circle at top left, transparent 22px, var(--color-page-bg) 22px);
}

/* concave fillet where the notch left edge meets the panel bottom edge */
.hero-dent::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  width: 22px;
  height: 22px;
  background: radial-gradient(circle at top left, transparent 22px, var(--color-page-bg) 22px);
}

.countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-label {
  color: var(--color-accent-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.countdown-clock {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 40px;
}

.cd-num {
  color: var(--color-nav-ink);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.cd-cap {
  margin-top: 8px;
  color: rgba(10, 10, 10, 0.5);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cd-sep {
  color: rgba(10, 10, 10, 0.25);
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  margin-top: 1px;
}

/* The short "France" label, the standalone timer section, and the bottom CTA
   are mobile only */
.lbl-short { display: none; }
.timer-section { display: none; }
.cta-mobile { display: none; }

/* ==========================================================================
   6. Responsive
   ========================================================================== */

/* Tablet, about 900px and below */
@media (max-width: 900px) {
  .hero {
    height: 70vh;
    align-items: flex-start;
  }

  .hero-content {
    padding-left: 40px;
    margin-top: 8vh;
    margin-bottom: 0;
  }

  .hero-stats { margin-right: 28px; }

  .stat-divider { margin: 0 20px; }

  .hero-dent { padding: 18px 26px 22px; }
  .cd-unit { min-width: 38px; }
  .cd-num { font-size: 26px; }
}

/* Mobile, about 600px and below */
@media (max-width: 600px) {
  :root {
    --page-pad-x: 16px;
    --panel-radius: 16px;
    --nav-h: 56px;
  }

  /* Match ryon.ai header + hero at mobile: 56px header, logo left at 40px,
     24px tall; hero flush below with 16px side margins and a 16px radius. */
  .site-nav { height: 56px; padding: 0 40px; }
  .ryon-logo { height: 24px; }
  .hero { margin: 0 16px 24px; border-radius: 16px; }

  /* Collapse nav links behind the hamburger; the button opens them */
  .nav-right { display: none; }
  .nav-menu-btn { display: flex; }

  .site-nav.menu-open .nav-right {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 16px 20px;
    background: var(--color-page-bg);
    border-top: 1px solid rgba(10, 10, 10, 0.08);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.14);
  }

  .site-nav.menu-open .nav-right a {
    padding: 14px 6px;
    font-size: 15px;
  }

  .site-nav.menu-open .nav-right .nav-apply {
    justify-content: center;
    margin-top: 8px;
    padding: 15px;
    font-size: 14px;
  }

  /* Hamburger morphs into a close (X) when the menu is open */
  .nav-menu-btn span { transition: transform 0.22s ease, opacity 0.18s ease; }
  .site-nav.menu-open .nav-menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-nav.menu-open .nav-menu-btn span:nth-child(2) { opacity: 0; }
  .site-nav.menu-open .nav-menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero {
    height: min(82vh, 640px);
  }

  /* Lighter overlay so the venue shows through: dark bands top and bottom
     keep the headline, subhead, CTA and benefits legible, the middle opens up. */
  .hero::before {
    background:
      linear-gradient(180deg,
        rgba(0, 0, 0, 0.80) 0%,
        rgba(0, 0, 0, 0.52) 24%,
        rgba(0, 0, 0, 0.24) 44%,
        rgba(0, 0, 0, 0.24) 60%,
        rgba(0, 0, 0, 0.66) 82%,
        rgba(0, 0, 0, 0.84) 100%);
  }

  /* Soft halo so text stays crisp over the now-visible image */
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content .subhead {
    text-shadow: 0 1px 22px rgba(0, 0, 0, 0.55);
  }

  .hero-content {
    padding-left: 24px;
    padding-right: 24px;
    margin-top: 7vh;
  }

  .eyebrow { margin-bottom: 18px; }
  h1 {
    margin-bottom: 22px;
    white-space: normal;   /* let it wrap on narrow screens, accent stays intact */
  }
  .subhead { margin-bottom: 32px; }

  /* The timer leaves the hero on mobile. The corner holds the CTA above the
     benefits, both centered near the panel bottom. */
  .hero-corner {
    left: 0;
    right: 0;
    bottom: 22px;
    padding: 0 14px;
    align-items: stretch;
    gap: 18px;
  }

  /* In-content CTA moves to the bottom on mobile */
  .hero-content .cta { display: none; }

  /* Bottom CTA: centered, nearly full width with small side margins */
  .cta-mobile {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 15px 16px;
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  .hero-stats {
    margin-right: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: nowrap;
  }

  /* Shrink the benefits so all three fit side by side */
  .stat-icon { width: 20px; height: 20px; }
  .stat-label { font-size: 10.5px; letter-spacing: 0.05em; margin-top: 8px; }
  .stat-divider { height: 34px; margin: 0 14px; }

  /* "South of France" becomes "France" so the row fits */
  .lbl-full { display: none; }
  .lbl-short { display: inline; }

  /* The in-hero dent is removed; the timer becomes its own section below */
  .hero-dent { display: none; }

  .timer-section {
    display: block;
    padding: 26px var(--page-pad-x) 6px;
  }

  .timer-section .countdown { align-items: center; }

  .countdown-clock { gap: 7px; }
  .cd-unit { min-width: 38px; }
  .cd-num { font-size: 26px; }
  .cd-sep { font-size: 22px; }
}

/* Honor reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cta-arrow,
  .cta::after,
  .nav-right a { transition: none; }
}

/* ==========================================================================
   Section 2: introduction (condensed honest message)
   ========================================================================== */
.intro {
  background: var(--manifesto-bg);
  padding: var(--section-pad-y) var(--page-pad-x);
}

/* A single, centered column (the media was removed). */
.intro-inner {
  max-width: 720px;
  margin: 0 auto;
}

.intro-text {
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.intro-eyebrow {
  margin: 0 0 18px;
  color: var(--color-accent-ink);
  font-size: var(--eyebrow-size);
  font-weight: 600;
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
}

.intro-title {
  margin: 0 0 26px;
  color: var(--manifesto-ink);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
}

.intro-body p {
  margin: 0 0 16px;
  color: rgba(10, 10, 10, 0.72);
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.62;
}

.intro-body p:last-child { margin-bottom: 0; }

/* The price line stands a little apart and heavier. */
.intro-price {
  margin-top: 24px;
  font-weight: 600;
}

.intro .accent { color: var(--color-accent-ink); }

.intro-cta { margin-top: 34px; }

@media (max-width: 860px) {
  .intro-text { max-width: 640px; }
}

/* ==========================================================================
   Section 3: the program (two teaching days)
   ========================================================================== */
.program {
  background: var(--manifesto-bg);
  padding: var(--section-pad-y) var(--page-pad-x);
}

.program-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.program-eyebrow,
.included-eyebrow {
  margin: 0 0 18px;
  color: var(--color-accent-ink);
  font-size: var(--eyebrow-size);
  font-weight: 600;
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
}

.program-title,
.included-title {
  margin: 0;
  color: var(--manifesto-ink);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
}

.program-intro,
.included-intro {
  margin: 20px auto 0;
  max-width: 580px;
  color: rgba(10, 10, 10, 0.6);
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: var(--lh-lead);
}

/* Two day panels side by side */
.program-days {
  display: grid;
  max-width: var(--modules-max-w);
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: var(--bento-gap);
  align-items: start;
}

.day-card {
  padding: clamp(26px, 3vw, 40px);
  border-radius: var(--panel-radius);
  background:
    radial-gradient(110% 100% at 85% 0%, rgba(0, 228, 129, 0.18), rgba(5, 6, 7, 0) 58%),
    var(--color-panel-ink);
}

.day-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: var(--fs-meta);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.day-title {
  margin: 0 0 10px;
  color: var(--color-text-on-dark);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: var(--lh-title);
  letter-spacing: -0.01em;
}

.day-sub {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--fs-meta);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.day-lead {
  margin: 0 0 28px;
  color: var(--color-text-muted);
  font-size: var(--fs-body-sm);
  font-weight: 300;
  line-height: 1.6;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.day-blocks {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.day-blocks li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.day-num {
  flex: none;
  color: var(--color-accent);
  font-size: var(--fs-meta);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-top: 3px;
}

.day-item h4 {
  margin: 0 0 5px;
  color: var(--color-text-on-dark);
  font-size: var(--fs-body);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.day-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-body-sm);
  font-weight: 300;
  line-height: 1.55;
}

/* ==========================================================================
   Section 3a: what is included
   ========================================================================== */
.included {
  background: var(--manifesto-bg);
  padding: var(--section-pad-y) var(--page-pad-x);
}

.included-header {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.included-grid {
  display: grid;
  max-width: var(--modules-max-w);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.inc-card {
  padding: 30px 28px 32px;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 16px;
  background: #fff;
  transition: border-color 0.2s ease, transform 0.3s var(--reveal-ease), box-shadow 0.3s var(--reveal-ease);
}

.inc-card:hover {
  border-color: rgba(3, 147, 90, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
}

.inc-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 18px;
  color: var(--color-accent-ink);
}

.inc-card h3 {
  margin: 0 0 8px;
  color: var(--manifesto-ink);
  font-size: var(--fs-title-sm);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.inc-card p {
  margin: 0;
  color: rgba(10, 10, 10, 0.62);
  font-size: var(--fs-body-sm);
  font-weight: 300;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .program-days { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .program-header { margin-bottom: 36px; }
  .included-header { margin-bottom: 34px; }
  .included-grid { grid-template-columns: 1fr; }
  .inc-card { padding: 26px 24px 28px; }
}

/* ==========================================================================
   Section 4: the masterminds (the team behind the retreat)
   Editorial trio on white, black and white portraits, one mystery tile.
   ========================================================================== */
.masterminds {
  background: var(--manifesto-bg);
  padding: var(--mm-pad-y) var(--page-pad-x);
}

.mm-inner {
  max-width: var(--mm-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Heading column */
.mm-eyebrow {
  margin: 0 0 22px;
  color: var(--color-accent-ink);
  font-size: var(--eyebrow-size);
  font-weight: 600;
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
}

.mm-title {
  margin: 0;
  color: var(--manifesto-ink);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.mm-intro {
  margin: 24px 0 0;
  max-width: 360px;
  color: rgba(10, 10, 10, 0.6);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

/* People, staggered to match the editorial composition */
.mm-person {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mm-person--artem {
  grid-column: 2;
  margin-top: 130px;
}

.mm-stack {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* Photo frame */
.mm-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  background: #ececec;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.10);
  transition: transform 0.5s var(--reveal-ease), box-shadow 0.5s var(--reveal-ease);
}

.mm-person--artem .mm-photo { max-width: 300px; }
.mm-person--eugene .mm-photo,
.mm-person--secret .mm-photo { max-width: 268px; }

.mm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.03);
  transition: transform 0.6s var(--reveal-ease), filter 0.5s ease;
}

.mm-person:hover .mm-photo {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
}

.mm-person:hover .mm-photo img {
  transform: scale(1.04);
  filter: grayscale(1) contrast(1.05) brightness(1.03);
}

/* Secret guest mystery tile */
.mm-photo--secret {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(0, 228, 129, 0.18), rgba(5, 6, 7, 0) 62%),
    var(--color-panel-ink);
  color: rgba(0, 228, 129, 0.7);
}

.mm-secret-icon {
  width: 60px;
  height: 60px;
  opacity: 0.7;
  filter: blur(0.5px);
}

.mm-secret-tag {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Captions */
.mm-caption {
  display: block;
  margin-top: 22px;
  text-align: center;
}

.mm-rule {
  display: block;
  width: 26px;
  height: 2px;
  margin: 0 auto 16px;
  background: var(--color-accent);
}

.mm-name {
  display: block;
  color: var(--manifesto-ink);
  font-size: var(--fs-title-sm);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.mm-role {
  display: block;
  margin-top: 9px;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(10, 10, 10, 0.62);
  font-size: var(--fs-body-sm);
  font-weight: 400;
  line-height: 1.45;
}

.mm-meta {
  display: block;
  margin-top: 5px;
  color: rgba(10, 10, 10, 0.45);
  font-size: 13px;
  font-weight: 300;
}

/* Tablet: heading on top, the three portraits in a centered row */
@media (max-width: 900px) {
  .mm-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .mm-head { grid-column: 1 / -1; }
  .mm-stack { display: contents; }

  .mm-person { grid-column: auto; margin-top: 0; }
  .mm-person--artem .mm-photo,
  .mm-person--eugene .mm-photo,
  .mm-person--secret .mm-photo { max-width: 100%; }
}

/* Mobile: single stacked column, centered */
@media (max-width: 600px) {
  .mm-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .mm-head { text-align: center; }
  .mm-intro { margin-left: auto; margin-right: auto; }

  .mm-person--artem .mm-photo,
  .mm-person--eugene .mm-photo,
  .mm-person--secret .mm-photo { max-width: 300px; }
}

/* ==========================================================================
   Section 5: partners (credit strip near the bottom)
   ========================================================================== */
.partners {
  background: var(--manifesto-bg);
  padding: var(--section-pad-y) var(--page-pad-x);
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.partners-inner {
  max-width: var(--modules-max-w);
  margin: 0 auto;
  text-align: center;
}

.partners-eyebrow {
  margin: 0 0 40px;
  color: var(--color-accent-ink);
  font-size: var(--eyebrow-size);
  font-weight: 600;
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 56px;
}

.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.partner-name {
  color: var(--manifesto-ink);
  font-size: var(--fs-h3);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.partner-role {
  color: rgba(10, 10, 10, 0.5);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .partners-list { gap: 32px; }
}

/* ==========================================================================
   Section 6: Book Your Seat — typeform-style flow + payment wall
   Dark rounded panel, one question per step. No card details are collected
   here; the final step redirects to a Stripe hosted Payment Link.
   ========================================================================== */
.apply {
  background: var(--manifesto-bg);
  padding: var(--section-pad-y) var(--page-pad-x);
}

.apply-panel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px);
  border-radius: var(--panel-radius);
  background:
    radial-gradient(90% 120% at 12% 0%, rgba(0, 228, 129, 0.16), rgba(5, 6, 7, 0) 55%),
    var(--color-panel-ink);
  overflow: hidden;
}

.apply-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.apply-eyebrow {
  margin: 0;
  color: var(--color-accent);
  font-size: var(--eyebrow-size);
  font-weight: 600;
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
  white-space: nowrap;
}

.apply-progress {
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.apply-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: var(--color-accent);
  transition: width 0.4s var(--reveal-ease);
}

/* One step shown at a time, entering with a soft rise */
.apply-form {
  position: relative;
  min-height: clamp(300px, 40vh, 380px);
  display: flex;
  align-items: center;
}

.apply-step {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.apply-step.is-active {
  display: flex;
  animation: applyIn 0.5s var(--reveal-ease) both;
}

@keyframes applyIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.apply-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--color-accent);
  font-size: var(--fs-meta);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.apply-q {
  margin: 0 0 24px;
  max-width: 640px;
  color: var(--color-text-on-dark);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.apply-input {
  width: 100%;
  max-width: 560px;
  padding: 10px 2px;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.22);
  color: var(--color-text-on-dark);
  font-family: inherit;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.35;
  transition: border-color 0.2s ease;
}

.apply-input::placeholder { color: rgba(255, 255, 255, 0.30); }
.apply-input:focus { outline: none; border-bottom-color: var(--color-accent); }
.apply-textarea { resize: none; min-height: 44px; }

.apply-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.apply-next {
  /* padding/size inherited from .btn-bullet for consistency */
}

.apply-enter {
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--fs-meta);
  font-weight: 300;
}
.apply-enter b { font-weight: 600; color: rgba(255, 255, 255, 0.7); }

.apply-error {
  display: block;
  min-height: 18px;
  margin-top: 12px;
  color: #ff7a7a;
  font-size: var(--fs-meta);
}

.apply-choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 560px;
}

.apply-choice {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  color: var(--color-text-on-dark);
  font-family: inherit;
  font-size: 16px;
  font-weight: 300;
  text-align: left;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.apply-choice:hover,
.apply-choice:focus-visible {
  background: rgba(0, 228, 129, 0.10);
  border-color: var(--color-accent);
  outline: none;
}

.apply-choice.is-selected {
  background: rgba(0, 228, 129, 0.16);
  border-color: var(--color-accent);
}

.apply-choice-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 600;
}

/* Payment wall */
.apply-pay-title { margin-bottom: 14px; }

.apply-pay-sub {
  margin: 0 0 26px;
  max-width: 520px;
  color: var(--color-text-muted);
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.55;
}

.apply-pay-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 26px;
}

.apply-pay-amount {
  color: var(--color-text-on-dark);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.apply-pay-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-meta);
}

.apply-pay-btn {
  letter-spacing: var(--cta-tracking);
}

.apply-pay-btn.is-disabled { opacity: 0.5; pointer-events: none; }

.apply-pay-config {
  margin: 14px 0 0;
  color: #ffcf6b;
  font-size: var(--fs-meta);
}

.apply-pay-fine {
  margin: 18px 0 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--fs-meta);
  font-weight: 300;
  line-height: 1.5;
}
.apply-pay-fine a { color: rgba(255, 255, 255, 0.7); text-decoration: underline; }

.apply-back {
  margin-top: 22px;
  padding: 6px 2px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-family: inherit;
  font-size: var(--fs-meta);
  cursor: pointer;
  transition: color 0.16s ease;
}
.apply-back:hover { color: var(--color-accent); }
.apply-back:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .apply-panel { padding: 24px 20px 28px; }
  .apply-form { min-height: 340px; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .apply-step.is-active { animation: none; }
  .apply-progress-bar { transition: none; }
}


/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #050607;
  color: var(--color-text-on-dark);
  padding: 72px var(--page-pad-x) 32px;
}

.footer-inner {
  max-width: var(--modules-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo { height: 26px; width: auto; margin-bottom: 20px; }

.footer-tagline {
  margin: 0 0 10px;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
}

.footer-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-col-title {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 300;
  transition: color 0.18s ease;
}

.footer-col a:hover { color: var(--color-accent); }

.footer-partner {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 300;
}

.footer-base {
  max-width: var(--modules-max-w);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 300;
}

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.18s ease;
}

.footer-legal a:hover { color: var(--color-accent); }

.site-footer a:focus-visible,
.footer-legal a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .site-footer { padding: 56px var(--page-pad-x) 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-base {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ==========================================================================
   Location section (the venue: Divonne on Lake Geneva)
   Split layout, copy left and the venue image right.
   ========================================================================== */
.location {
  background: var(--manifesto-bg);
  padding: var(--section-pad-y) var(--page-pad-x);
}

.location-inner {
  max-width: var(--modules-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.location-eyebrow {
  margin: 0 0 20px;
  color: var(--color-accent-ink);
  font-size: var(--eyebrow-size);
  font-weight: 600;
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
}

.location-title {
  margin: 0 0 20px;
  color: var(--manifesto-ink);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.location-desc {
  margin: 0;
  max-width: 440px;
  color: rgba(10, 10, 10, 0.62);
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.55;
}

.location-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(10, 10, 10, 0.1);
}

.location-facts li {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.location-fact-value {
  color: var(--manifesto-ink);
  font-size: var(--fs-title-sm);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.location-fact-label {
  color: rgba(10, 10, 10, 0.5);
  font-size: var(--fs-meta);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.location-address {
  margin: 26px 0 0;
  color: rgba(10, 10, 10, 0.5);
  font-size: var(--fs-body-sm);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Gallery of real venue photos: one wide shot above two smaller ones */
.location-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.location-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.location-shot--main { grid-column: 1 / -1; }

.location-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--reveal-ease);
}

.location-shot--main img { aspect-ratio: 3 / 2; }
.location-shot:not(.location-shot--main) img { aspect-ratio: 4 / 3; }

.location-shot:hover img { transform: scale(1.04); }

.location-caption {
  grid-column: 1 / -1;
  margin-top: 4px;
  color: rgba(10, 10, 10, 0.45);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: right;
}

@media (max-width: 860px) {
  .location-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .location-gallery { order: -1; }      /* photos above the copy when stacked */
  .location-caption { text-align: left; }
}

/* ==========================================================================
   Legal pages (privacy, terms)
   ========================================================================== */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px var(--page-pad-x) 120px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  color: var(--color-accent-ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-back:hover { opacity: 0.7; }

.legal h1 {
  margin: 0 0 8px;
  color: var(--manifesto-ink);
  font-size: var(--fs-h2);
  font-weight: 400;
  letter-spacing: -0.02em;
  white-space: normal;
}

.legal-updated {
  margin: 0 0 40px;
  color: rgba(10, 10, 10, 0.45);
  font-size: 13px;
}

.legal-draft {
  margin: 0 0 40px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(0, 228, 129, 0.08);
  border: 1px solid rgba(3, 147, 90, 0.25);
  color: rgba(10, 10, 10, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

.legal h2 {
  margin: 40px 0 12px;
  color: var(--manifesto-ink);
  font-size: 19px;
  font-weight: 500;
}

.legal p {
  margin: 0 0 16px;
  color: rgba(10, 10, 10, 0.72);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.legal a { color: var(--color-accent-ink); }
.legal a:hover { text-decoration: underline; }

/* ==========================================================================
   Section reveal on scroll (progressive enhancement)
   Only active when JS has added .js to <html>, so with no JS every element
   stays visible. Honors reduced motion.
   ========================================================================== */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--reveal-ease),
    transform 0.8s var(--reveal-ease);
  will-change: opacity, transform;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Gentle cascade for the bento cards as the grid enters */
.js .module-card:nth-of-type(2) { transition-delay: 0.06s; }
.js .module-card:nth-of-type(3) { transition-delay: 0.12s; }
.js .module-card:nth-of-type(4) { transition-delay: 0.18s; }
.js .module-card:nth-of-type(5) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Reservation confirmed page (Stripe redirects here after payment)
   ========================================================================== */
.confirm {
  max-width: 660px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) var(--page-pad-x) clamp(72px, 10vw, 120px);
  text-align: left;
}

.confirm-mark {
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  color: var(--color-accent-ink);
}

.confirm-eyebrow {
  margin: 0 0 14px;
  color: var(--color-accent-ink);
  font-size: var(--eyebrow-size);
  font-weight: 600;
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
}

.confirm-title {
  margin: 0 0 12px;
  color: var(--manifesto-ink);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
  white-space: normal;
}

.confirm-lead {
  margin: 0 0 36px;
  color: rgba(10, 10, 10, 0.62);
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: var(--lh-lead);
}

/* Reservation summary, a dark panel matching the site's language */
.confirm-panel {
  padding: 26px 28px;
  border-radius: var(--panel-radius);
  background:
    radial-gradient(90% 120% at 12% 0%, rgba(0, 228, 129, 0.16), rgba(5, 6, 7, 0) 55%),
    var(--color-panel-ink);
  margin-bottom: 40px;
}

.confirm-row {
  display: flex;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.confirm-row:last-child { border-bottom: none; }

.confirm-key {
  flex: none;
  width: 84px;
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--fs-meta);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 2px;
}

.confirm-val {
  color: var(--color-text-on-dark);
  font-size: var(--fs-body-sm);
  font-weight: 300;
  line-height: 1.5;
}

.confirm-next {
  margin: 0 0 12px;
  color: var(--manifesto-ink);
  font-size: var(--fs-h3);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.confirm p {
  margin: 0 0 16px;
  color: rgba(10, 10, 10, 0.72);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: var(--lh-body);
}

.confirm-note {
  color: rgba(10, 10, 10, 0.55) !important;
  font-size: var(--fs-body-sm) !important;
}
.confirm-note a { color: var(--color-accent-ink); text-decoration: underline; }

.confirm-back {
  margin-top: 22px;
  padding: 15px 26px;
  font-size: var(--cta-size);
  letter-spacing: var(--cta-tracking);
}
