/* =========================================================
   DUKES PICKS - preview brand stylesheet
   Black + gold. Serif (Playfair Display) + sans (Inter).
   Palette is locked to the brief - do not introduce other hues.
   ========================================================= */

:root {
  --header-h:  85px;      /* sticky header height (for sticky offsets) */
  --bg:        #0a0908;   /* deep near-black base            */
  --bg-deep:   #050403;   /* deeper sections                 */
  --bg-raised: #14110d;   /* slightly raised surfaces        */
  --gold:      #d4af6f;   /* the one accent                  */
  --gold-soft: #e7cf9f;   /* lighter gold for hovers         */
  --silver:      #a8a8a8; /* entry-tier border (cool gray)   */
  --silver-soft: #c2c4c7; /* lighter silver for labels       */
  --ink:       #f5f0e6;   /* warm off-white body text        */
  --muted:     rgba(245,240,230,0.6);
  --muted-2:   rgba(245,240,230,0.4);
  --line:      rgba(212,175,111,0.2);   /* visible border    */
  --line-soft: rgba(212,175,111,0.1);   /* subtle border     */

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 64px);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- layout helpers -------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(46px, 6vw, 84px) 0; }
.section--tight  { padding: clamp(34px, 4.4vw, 60px) 0; }
.section--deep   { background: var(--bg-deep); }
.section--raised { background: var(--bg-raised); }
.divider { border: 0; border-top: 1px solid var(--line-soft); margin: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.12; margin: 0; }
/* prevent single-word widows on headings site-wide (modern browsers; graceful fallback) */
h1, h2, h3, h4 { text-wrap: balance; }
h1 { font-size: clamp(38px, 6vw, 56px); }
h2 { font-size: clamp(30px, 4.4vw, 44px); }
h3 { font-size: clamp(20px, 2.4vw, 24px); }

.accent { font-style: italic; color: var(--gold); }

p { margin: 0 0 1em; }
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 56ch; }

/* ---- buttons --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn--gold {
  background: var(--gold);
  color: #1a1409;
  border: 1px solid var(--gold);
}
.btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--gold); background: rgba(212,175,111,0.06); transform: translateY(-2px); }

.textlink {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.textlink:hover { color: var(--gold); border-color: var(--gold); }

/* =========================================================
   HEADER (shared, sticky)
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,9,8,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.lockup { display: flex; align-items: center; }
/* single full lockup (horse mark + DUKES PICKS) in the header */
.header-logo { height: 46px; width: auto; display: block; }
@media (max-width: 720px) { .header-logo { height: 40px; } }
@media (max-width: 480px) { .header-logo { height: 36px; } }
/* right-side cluster: primary nav + Login + CTA (+ burger on mobile) */
.header-right { display: flex; align-items: center; gap: 22px; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a {
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s ease;
  white-space: nowrap;
}
.nav a:hover { color: var(--ink); }

/* Login: a regular nav link (matches .nav a color/weight/hover) */
.nav-login {
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-login:hover { color: var(--ink); }

/* Become a Member: the one gold pill CTA at the right edge */
.nav-cta {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #1a1409;
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--gold-soft); border-color: var(--gold-soft); transform: translateY(-1px); }

/* in-menu CTA: only shown inside the mobile hamburger panel (hidden on desktop) */
.nav-cta-menu { display: none; }

/* mobile nav toggle (hamburger): checkbox-driven, hidden on desktop */
.nav-toggle {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.nav-burger { display: none; }

/* anchored sections clear the sticky header on a hash jump */
section[id], .hero[id] { scroll-margin-top: 90px; }

/* ---- header collapses to hamburger on tablet + mobile (≤1080px) ---- */
@media (max-width: 1080px) {
  .site-header .wrap { position: relative; }
  .nav-burger {
    display: flex; flex-direction: column; justify-content: center;
    gap: 5px; width: 44px; height: 44px; cursor: pointer;
  }
  .nav-burger span {
    display: block; width: 24px; height: 2px; margin: 0 auto;
    background: var(--gold); border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
  }
  /* the 4 primary links + the CTA drop into a panel under the header; Login stays out */
  .nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10,9,8,0.97);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-soft);
    padding: 4px var(--gutter) 18px;
  }
  .nav-toggle:checked ~ .nav { display: flex; }
  .nav a { display: block; width: 100%; padding: 15px 2px; font-size: 14px; letter-spacing: 0.1em; border-top: 1px solid var(--line-soft); }
  .nav a:first-of-type { border-top: 0; }
  /* the desktop pill is hidden; Become a Member moves into the hamburger panel */
  .nav-cta { display: none; }
  .nav a.nav-cta-menu {
    display: block;
    margin: 16px 0 2px;
    padding: 15px 18px;
    text-align: center;
    font-weight: 600;
    color: #1a1409;
    background: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 999px;
  }
  .nav a.nav-cta-menu:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
  .header-right { gap: 14px; }
  /* burger morphs into an X when the menu is open */
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* small phones: only Login + burger sit beside the logo now, so give them room */
@media (max-width: 460px) {
  .header-right { gap: 14px; }
  .nav-login { font-size: 12px; letter-spacing: 0.05em; }
}

@media (max-width: 720px) {
  /* larger tap area for secondary inline links */
  .textlink { display: inline-block; padding: 12px 0; }
  /* tighten the numbered steps so copy gets more room on phones
     (.steps .step beats the later base .step rule on specificity) */
  .steps .step { grid-template-columns: 50px 1fr; gap: 20px; }
}

/* =========================================================
   HERO - hybrid cinematic (photo base + motion overlay)
   Layer order (bottom → top):
     img → grade → mist → rays → vignette → scrim → content
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050403;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media > * { position: absolute; inset: 0; }

/* parallax wrapper is moved by JS; image breathes inside it */
.hero__parallax { will-change: transform; }
.hero__img {
  position: absolute;
  /* bleed beyond the frame so the image always covers the container; source set per-page inline */
  inset: -14% -3%;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  /* source is already cinematically graded - barely touch it */
  filter: contrast(1.04) brightness(0.96);
}

/* home page ships the hero-5 cobblestone walk with its own zoom/shift framing - stays pinned */
.hero__img--home {
  inset: 0;
  background-size: 120% auto;
  background-position: 8% 42%;
  background-repeat: no-repeat;
  animation: none;
  transform: none;
}
@media (max-width: 640px) {
  .hero__img--home {
    background-size: cover;
    background-position: 62% 42%;
  }
}

/* hero motion FX retired globally - photos carry the frame on their own */
.hero__rays { display: none; }
.hero__mist { display: none; }
.hero__grade { display: none; }

/* fine film grain ties the whole frame together */
.hero__grain {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  mix-blend-mode: overlay;
  opacity: 0.10;
  pointer-events: none;
}

.hero__vignette {
  background: radial-gradient(120% 105% at 50% 42%,
    transparent 36%,
    rgba(3,3,4,0.5) 80%,
    rgba(2,2,3,0.86) 100%);
}

/* readability scrim - anchors the left-aligned headline on darkness */
.hero__scrim {
  background:
    linear-gradient(90deg, rgba(5,4,3,0.93) 0%, rgba(5,4,3,0.8) 42%, rgba(5,4,3,0.34) 74%, rgba(5,4,3,0.1) 100%),
    linear-gradient(0deg, #050403 0%, rgba(5,4,3,0.7) 9%, transparent 46%);
}
/* bright/warm photos (home, about, live-events): lighter scrim so the right side breathes */
.hero--light .hero__scrim {
  background: linear-gradient(90deg,
    rgba(5,4,3,0.95) 0%,
    rgba(5,4,3,0.85) 25%,
    rgba(5,4,3,0.55) 55%,
    rgba(5,4,3,0.15) 80%,
    rgba(5,4,3,0) 100%);
}

.hero .wrap { position: relative; z-index: 10; width: 100%; padding-top: 88px; padding-bottom: 104px; }
/* home only: pull headline to optical center, lift foot caption off the bottom edge */
.hero--home .wrap {
  padding-top: 40px;
  padding-bottom: 60px;
}
.hero--home .hero__foot {
  bottom: 0;
}
.hero__inner { max-width: 640px; }
.hero h1 { margin-bottom: 22px; text-shadow: 0 2px 40px rgba(0,0,0,0.55); }
.hero .lead { margin-bottom: 34px; text-shadow: 0 1px 24px rgba(0,0,0,0.6); }
.hero .eyebrow { text-shadow: 0 1px 16px rgba(0,0,0,0.5); }
.hero .session-meta { text-shadow: 0 1px 18px rgba(0,0,0,0.6); }
.hero__cta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

/* thin cinematic footer bar across the base of the hero */
.hero__foot {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(0deg, rgba(5,4,3,0.7), transparent);
}
.hero__loc { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.hero__scrollcue {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted-2);
}
.hero__scrollcue::after {
  content: ""; width: 1px; height: 22px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: translateY(0); }
  50%      { opacity: 1;    transform: translateY(3px); }
}

@media (max-width: 640px) {
  .hero { min-height: 88vh; }
  .hero__foot { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__img, .hero__rays, .hero__scrollcue::after { animation: none; }
}

/* faint engraved rule under eyebrows in hero */
.eyebrow--rule { display: inline-flex; align-items: center; gap: 14px; }
.eyebrow--rule::after { content: ""; width: 46px; height: 1px; background: var(--line); }

/* =========================================================
   GRIDS / CARDS
   ========================================================= */
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 { margin-bottom: 0; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } }

.feature {
  position: relative;
  padding: 30px 30px 34px;
  background: var(--bg-raised);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--gold);
  border-radius: 4px;
}
.feature h3 { margin-bottom: 12px; }
.feature p { color: var(--muted); margin: 0; font-size: 15.5px; }
.feature .idx {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

/* =========================================================
   NEXT SESSION strip
   ========================================================= */
.strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px clamp(28px, 4vw, 52px);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.strip__title { font-family: var(--serif); font-size: clamp(24px, 3vw, 30px); margin: 6px 0 8px; }
.strip__meta { color: var(--muted); font-size: 15px; margin: 0; }

/* =========================================================
   HOST
   ========================================================= */
.two-col {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.portrait {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center top;
  position: relative;
  overflow: hidden;
}
.portrait--texture {
  background:
    radial-gradient(80% 60% at 50% 12%, rgba(212,175,111,0.22), transparent 60%),
    linear-gradient(180deg, #161208, #070604);
}
.portrait__tag {
  position: absolute;
  left: 0; bottom: 0;
  padding: 14px 18px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  background: linear-gradient(0deg, rgba(5,4,3,0.85), transparent);
  width: 100%;
}

.stat-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 34px; }
.stat {
  flex: 1 1 150px;
  padding: 22px 20px;
  background: var(--bg-deep);
  border: 1px solid var(--line-soft);
  border-radius: 5px;
}
.stat .num {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 36px);
  color: var(--gold);
  line-height: 1;
}
.stat .cap {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

/* =========================================================
   TESTIMONIAL
   ========================================================= */
.quote { max-width: 880px; margin: 0 auto; text-align: center; }
.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.32;
  margin: 0 0 28px;
  color: var(--ink);
}
.quote .who {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================================================
   MEMBERSHIP
   ========================================================= */
.tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  display: flex;
  flex-direction: column;
  padding: 38px 34px 40px;
  background: var(--bg-raised);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}
/* bullets grow to fill the gap so price + CTA sit at the card bottom,
   aligned across both tier columns regardless of bullet wrap */
.tier__bullets { flex: 1 1 auto; }
.tier--highlight { border: 1px solid var(--gold); box-shadow: 0 0 0 1px rgba(212,175,111,0.25), 0 30px 80px -50px rgba(212,175,111,0.5); }
.tier .tier-name { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.tier .tier-title { font-family: var(--serif); font-size: 26px; margin-bottom: 6px; }
.tier .price { font-family: var(--serif); font-size: 40px; color: var(--ink); }
.tier .price span { font-family: var(--sans); font-size: 14px; color: var(--muted); letter-spacing: 0.04em; }
.tier ul { list-style: none; padding: 0; margin: 24px 0 30px; }
.tier li { color: var(--muted); font-size: 15px; padding: 9px 0 9px 26px; position: relative; border-top: 1px solid var(--line-soft); }
.tier li:first-child { border-top: 0; }
.tier li::before { content: ""; position: absolute; left: 0; top: 19px; width: 14px; height: 1px; background: var(--gold); opacity: 0.85; }
/* clarifying note (e.g. FT "no direct access to Duke"): same dash, muted not gold */
.tier li.tier-note { font-style: italic; color: var(--muted-2); }
.tier li.tier-note::before { background: var(--muted); opacity: 0.7; }
.tier .btn { width: 100%; justify-content: center; }
.center-cta { text-align: center; margin-top: 48px; }

/* screen-reader-only utility */
.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;
}

/* =========================================================
   PRICING: monthly/yearly billing toggle
   ========================================================= */
.billing-toggle-wrap {
  display: flex; justify-content: center;
  margin: 0 0 40px;
  /* stays visible while scrolling through the cards; releases when the
     memberships .wrap (its containing block) scrolls past the cards */
  position: sticky; top: var(--header-h, 85px);
  z-index: 40;
}
/* subtle dark/blurred backdrop only while the toggle is pinned (JS toggles the class) */
.billing-toggle-wrap.is-stuck {
  padding: 10px 0;
  margin-bottom: 30px;
  background: linear-gradient(180deg, rgba(5,4,3,0.86), rgba(5,4,3,0.5));
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.billing-toggle {
  display: inline-flex;
  gap: 4px;
  margin: 0;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-raised);
}
/* radios are kept focusable but visually replaced by the labels */
.billing-toggle input {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.billing-toggle label {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  transition: background .2s ease, color .2s ease;
}
.billing-toggle label:hover { color: var(--ink); }
.billing-toggle input:checked + label { background: var(--gold); color: #1a1409; }
.billing-toggle input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 3px; }
/* price area: every duration variant stacked in one grid cell, cross-faded.
   All variants stay in the DOM (one visible at a time) so there is no
   layout flash and search engines still see every price. */
.price-block { display: grid; grid-template-columns: minmax(0, 1fr); margin-bottom: 30px; }
/* .tier .price is a baseline flex row ("$137 / month"); let it wrap so the
   note and savings badge drop onto their own lines instead of overflowing */
.price-block > .price { grid-area: 1 / 1; margin: 0; flex-wrap: wrap; opacity: 0; visibility: hidden; transition: opacity .15s ease; }
.price-block .price__note { flex-basis: 100%; }
.price-block .price__save { align-self: flex-start; }
[data-billing="day"]     .price--day,
[data-billing="week"]    .price--week,
[data-billing="monthly"] .price--monthly,
[data-billing="yearly"]  .price--yearly { opacity: 1; visibility: visible; }
.price__note {
  font-family: var(--sans);
  font-size: 13px; line-height: 1.5;
  color: var(--muted-2);
  letter-spacing: 0.02em;
  margin: 6px 0 0;
  text-transform: none;
}
/* yearly savings badge */
.price__save {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,111,0.16);
  padding: 3px 10px; border-radius: 999px;
}

/* VIP Day Pass has no single-day price: show a continuity explainer instead */
.price-explain { display: none; margin-bottom: 30px; min-width: 0; }
[data-billing="day"] .tier--highlight .price-block { display: none; }
[data-billing="day"] .tier--highlight .price-explain { display: block; }
[data-billing="day"] .tier--highlight > .btn { display: none; }
.price__lead { font-family: var(--serif); font-size: 22px; color: var(--ink); margin: 0 0 10px; }
.price__body { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0 0 18px; }
.price__switches { display: flex; flex-wrap: wrap; gap: 10px; }
.price__switch {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); background: transparent;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 16px; cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.price__switch:hover { border-color: var(--gold); background: rgba(212,175,111,0.06); }
.price__switch:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* the four-way toggle wraps to a 2x2 grid on narrow screens */
@media (max-width: 560px) {
  .billing-toggle {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
    width: 100%; max-width: 300px; border-radius: 16px;
  }
  .billing-toggle label { justify-content: center; padding: 11px 8px; font-size: 11px; letter-spacing: 0.08em; }
}

/* =========================================================
   PRICING: compact two-up tier cards (stay side by side on mobile)
   ========================================================= */
@media (max-width: 720px) { :root { --header-h: 78px; } }
@media (max-width: 480px) { :root { --header-h: 70px; } }

@media (max-width: 720px) {
  .tiers.tiers--compact { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; max-width: 560px; }
  /* let the 1fr tracks shrink below the cards' min-content (stacked price
     variants) instead of blowing the grid wider than the viewport */
  .tiers--compact .tier,
  .tiers--compact .price-block,
  .tiers--compact .price { min-width: 0; }
}
@media (max-width: 480px) {
  .tiers.tiers--compact { gap: 10px; }
  .tiers--compact .tier { padding: 18px 14px 22px; }
  .tiers--compact .tier__logo { width: 38px; height: 38px; }
  .tiers--compact .tier .tier-name { margin-bottom: 12px; font-size: 10px; }
  .tiers--compact .tier .tier-title { font-size: 19px; }
  .tiers--compact .tier .tier__desc { font-size: 12.5px; line-height: 1.45; }
  .tiers--compact .tier li { font-size: 12px; padding: 7px 0 7px 18px; }
  .tiers--compact .tier li::before { top: 15px; width: 9px; }
  .tiers--compact .tier .price { font-size: 28px; }
  .tiers--compact .tier .price span { font-size: 11px; letter-spacing: 0.02em; }
  .tiers--compact .tier .price__note { font-size: 11px; }
  .tiers--compact .tier .price__save { margin-top: 8px; font-size: 10px; padding: 2px 8px; }
  .tiers--compact .tier .btn { padding: 13px 12px; font-size: 11px; letter-spacing: 0.09em; }
  .tiers--compact .tier .tier__learn { font-size: 10.5px; margin-top: 12px; }
  .tiers--compact .tier .price__lead { font-size: 17px; }
  .tiers--compact .tier .price__body { font-size: 12px; line-height: 1.5; }
  .tiers--compact .tier .price__switches { flex-direction: column; gap: 8px; }
  .tiers--compact .tier .price__switch { width: 100%; justify-content: center; text-align: center; padding: 10px 8px; font-size: 10.5px; }
}
/* mobile: swipeable card carousel instead of cramped side-by-side.
   (below the toggle's 2x2 breakpoint; tablet 561-720 keeps the 2-up grid) */
@media (max-width: 560px) {
  .tiers.tiers--compact {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    max-width: none;
    /* break out of the .wrap gutter to use the full viewport width */
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
    padding: 4px 7vw 8px;
    scroll-padding: 0 7vw;
    scrollbar-width: none;
  }
  .tiers.tiers--compact::-webkit-scrollbar { display: none; }
  .tiers--compact .tier {
    flex: 0 0 86vw;
    min-width: 0;
    scroll-snap-align: center;
  }
}

/* mobile swipe cue: subtle directional hint under the carousel (hero-cue styling) */
.tier-swipe { display: none; }
.tier-swipe__cue {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); opacity: 0.6;
}
@media (max-width: 560px) {
  .tier-swipe { display: flex; margin-top: 16px; }
  .tier-swipe.tier-swipe--top { margin-top: 0; margin-bottom: 14px; }
  .tier-swipe.tier-swipe--end { justify-content: flex-end; }
  .tier-swipe.tier-swipe--start { justify-content: flex-start; }
}

/* =========================================================
   NUMBERED BREAKDOWN (session page)
   ========================================================= */
.steps { display: grid; gap: 0; max-width: 880px; }
.step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: clamp(20px, 4vw, 44px);
  align-items: baseline;
  padding: 34px 0;
  border-top: 1px solid var(--line-soft);
}
.step:last-child { border-bottom: 1px solid var(--line-soft); }
.step .roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(34px, 5vw, 52px);
  color: var(--gold);
  line-height: 1;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); margin: 0; }

/* =========================================================
   CLOSING CTA
   ========================================================= */
.closing { text-align: center; }
.closing h2 { max-width: 760px; margin: 0 auto 36px; }

/* =========================================================
   FOOTER (shared) - full multi-column footer
   ========================================================= */
.site-footer {
  background: #000;
  border-top: 1px solid var(--line-soft);
  padding: clamp(48px, 7vw, 72px) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  padding-bottom: clamp(40px, 6vw, 60px);
}
@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
}
.footer__logo { height: 58px; width: auto; margin-bottom: 20px; }
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  opacity: 0.86;
  margin: 0 0 14px;
  max-width: 30ch;
}
.footer__apps {
  display: flex;
  gap: 10px;
  margin: 16px 0;
  align-items: center;
}
.footer__apps a { display: inline-flex; transition: opacity .2s ease; }
.footer__apps a:hover { opacity: 0.82; }
.footer__apps img { width: auto; display: block; }
/* Google bakes ~25% more padding into its badge, so size it taller to match Apple's visible artwork */
.footer__apps a[href*="apps.apple.com"] img { height: 42px; }
.footer__apps a[href*="play.google.com"] img { height: 63px; }
@media (max-width: 640px) {
  .footer__apps a[href*="apps.apple.com"] img { height: 38px; }
  .footer__apps a[href*="play.google.com"] img { height: 57px; }
}
.footer__llc {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0;
}
.footer__head {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 11px; }
.footer__col a {
  font-size: 14px;
  color: var(--muted);
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--gold); }
/* mobile tap targets: ensure footer links + inline textlinks clear ~30-32px */
@media (max-width: 640px) {
  .footer__col a { display: inline-block; padding: 8px 0; }
  .footer__col li { margin-bottom: 4px; }
  .textlink { padding-top: 8px; padding-bottom: 8px; }
}
.footer__bottombar { border-top: 1px solid var(--line); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  padding-bottom: 26px;
}
.footer__bottom span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.footer__signoff {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
}
@media (max-width: 560px) {
  .footer__bottom { justify-content: center; text-align: center; }
}

/* misc: a thin gold accent line component */
.accent-line { width: 56px; height: 2px; background: var(--gold); border: 0; margin: 0 0 28px; }
.session-meta { color: var(--gold); font-size: 14px; letter-spacing: 0.04em; margin-bottom: 8px; }

/* =========================================================
   ATMOSPHERIC BAND - full-bleed photographic section break
   ========================================================= */
.band {
  position: relative;
  height: clamp(200px, 32vh, 360px);
  overflow: hidden;
  background: #050403;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.band__img {
  position: absolute;
  left: 0; right: 0; top: -24%;
  height: 148%;
  background-size: cover;
  background-position: center 42%;
  /* brand grade: warm, desaturated, deep */
  filter: sepia(0.42) saturate(0.72) brightness(0.62) contrast(1.06);
  will-change: transform;
  z-index: 0;
}
/* top + bottom fade so the band melts between two black sections */
.band::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(0deg, #050403 0%, rgba(5,4,3,0.15) 34%, rgba(5,4,3,0.12) 64%, #050403 100%),
    radial-gradient(120% 130% at 50% 50%, transparent 50%, rgba(3,3,4,0.7) 100%);
}
/* taller cinematic divider - lets a strong photo stand on its own */
.band--feature { height: clamp(340px, 58vh, 600px); }
.band--feature .band__img {
  top: -16%; height: 132%;
  /* these toolkit photos are already golden - barely grade them */
  filter: brightness(0.84) contrast(1.03) saturate(1.02);
}
/* dawn workout shot reads lighter than the dark-bg site - push it down to match */
.band--dawn .band__img {
  filter: sepia(0.34) saturate(0.7) brightness(0.5) contrast(1.05);
}
.band--feature::before {
  background:
    linear-gradient(0deg, #050403 0%, transparent 24%, transparent 76%, rgba(5,4,3,0.55) 100%),
    radial-gradient(130% 130% at 50% 50%, transparent 58%, rgba(3,3,4,0.5) 100%);
}

/* extra-tall hero-scale divider for a loaded image (clubhouse interior) */
.band--xl { height: clamp(420px, 74vh, 720px); }
.band--xl .band__img {
  top: -8%; height: 116%;
  filter: brightness(0.92) contrast(1.02) saturate(1.03);
}
.band--xl::before {
  background:
    linear-gradient(0deg, rgba(5,4,3,0.5) 0%, transparent 24%, transparent 66%, rgba(5,4,3,0.9) 100%);
}

.band__caption {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0 var(--gutter) clamp(20px, 4vw, 36px);
  max-width: var(--maxw);
  width: 100%;
  margin-left: auto; margin-right: auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.7vw, 19px);
  color: rgba(245,240,230,0.82);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 18px rgba(0,0,0,0.7);
}
.band__caption .mark {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* =========================================================
   DUKE - cinematic wide moment + stats laid across the base
   ========================================================= */
.cinematic {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  isolation: isolate;
  min-height: clamp(420px, 60vh, 560px);
  display: flex;
  align-items: flex-end;
}
.cinematic__img {
  position: absolute; left: 0; right: 0; top: -12%; height: 124%; z-index: 0;
  background-size: cover;
  background-position: center 42%;
  filter: saturate(0.8) contrast(1.05) brightness(0.8);
  will-change: transform;
}
/* On narrow screens the frame goes tall/narrow. Duke stands ~68% across
   the source; with cover, pushing position too high (e.g. 88%) shows the
   far-right of the photo and lands his head on the LEFT of the box under
   the text. ~68% seats him on the right where the overlay is lightest,
   leaving the darker left side for the headline. */
@media (max-width: 720px) {
  .cinematic__img { background-position: 68% 40%; }
  /* drop one stat on mobile so 19 yrs joins the others instead of
     sitting alone on the right of the column */
  .cinematic__stat--hide-mobile { display: none; }
}
.cinematic::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(0deg, rgba(4,3,3,0.94) 0%, rgba(4,3,3,0.7) 24%, rgba(4,3,3,0.18) 56%, rgba(4,3,3,0.42) 100%),
    linear-gradient(90deg, rgba(10,9,8,0.88) 0%, rgba(10,9,8,0.55) 50%, rgba(10,9,8,0.18) 100%);
}
/* Your Host (home): grade dark on the left (headline) with a bottom band
   for the stats, but clear the right so Duke reads clearly. --bg is 10,9,8 */
#host .cinematic::after {
  background:
    linear-gradient(to top, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.55) 18%, rgba(10,9,8,0) 42%),
    linear-gradient(to right, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.60) 32%, rgba(10,9,8,0.12) 66%, rgba(10,9,8,0) 100%);
}
#host .cinematic__img { filter: saturate(0.85) contrast(1.04) brightness(0.92); }
@media (max-width: 720px) {
  /* narrow stacked frame: go vertical so the bottom (text + stats) stays
     readable while Duke's head up top reads clearly */
  #host .cinematic::after {
    background:
      linear-gradient(to top, rgba(10,9,8,0.94) 0%, rgba(10,9,8,0.80) 30%, rgba(10,9,8,0.34) 56%, rgba(10,9,8,0.08) 100%);
  }
}
.cinematic__body {
  position: relative; z-index: 2;
  width: 100%;
  padding: clamp(28px, 4vw, 52px);
}
.cinematic__lede { max-width: 540px; margin-bottom: clamp(26px, 4vw, 40px); }
.cinematic__lede h2 { margin-bottom: 18px; text-shadow: 0 2px 30px rgba(0,0,0,0.5); }
.cinematic__lede p { color: var(--ink); opacity: 0.86; margin: 0; max-width: 48ch; text-shadow: 0 1px 20px rgba(0,0,0,0.6); }
/* stats sit across the bottom like a magazine pull-quote rule */
.cinematic__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 5vw, 64px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.cinematic__stats .num {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 42px);
  color: var(--gold);
  line-height: 1;
}
.cinematic__stats .cap {
  display: block; margin-top: 8px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.cinematic__tag {
  position: absolute; z-index: 2; top: 0; right: 0;
  padding: 14px 18px;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   FROM THE RACETRACK - magazine filmstrip
   ========================================================= */
.filmstrip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 860px) { .filmstrip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .filmstrip { grid-template-columns: 1fr; } }
.frame { position: relative; }
.frame__img {
  aspect-ratio: 4 / 5;
  border-radius: 5px;
  border: 1px solid var(--line-soft);
  background-size: cover;
  background-position: center;
  filter: sepia(0.34) saturate(0.7) brightness(0.74) contrast(1.05);
  transition: filter .5s ease, transform .5s ease;
}
.frame:hover .frame__img { filter: sepia(0.12) saturate(0.92) brightness(0.92) contrast(1.04); transform: translateY(-3px); }
.frame__cap {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}
.frame__cap .n {
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-right: 8px;
}

/* =========================================================
   MEMBERSHIP - club-emblem treatment (restraint over "buy me")
   ========================================================= */
.tier { text-align: left; }
.tier__logo {
  height: 52px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 22px;
}
/* silver = entry tier; gold (.tier--highlight) = premium tier */
.tier--silver {
  border: 1px solid var(--silver);
  box-shadow: 0 0 0 1px rgba(168,168,168,0.16), 0 30px 80px -54px rgba(168,168,168,0.4);
}
.tier--silver .tier-name { color: var(--silver-soft); }
.tier .price {
  display: flex; align-items: baseline; gap: 8px;
  padding-top: 20px; margin: 4px 0 26px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--serif);
  font-size: 30px;
  color: var(--muted);
}
.members-note {
  text-align: center;
  margin: 36px auto 0;
  max-width: 44ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--muted-2);
}
.tier .price span { color: var(--muted-2); }
.tier--highlight .price { color: var(--ink); }
.tier .tier-name { color: var(--muted-2); }
.tier--highlight .tier-name { color: var(--gold); }

/* tier description paragraph - sits above the bullet list */
.tier__desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.66;
  margin: 0 0 4px;
}

/* "Try it for a week" trial callout under the tiers */
.trial {
  max-width: 880px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: 26px clamp(24px, 4vw, 38px);
  background: var(--bg-raised);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}
.trial__title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 4px;
}
.trial__copy { color: var(--muted); font-size: 15px; margin: 0; max-width: 52ch; }
.trial__action { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.trial__price { font-family: var(--serif); font-size: 24px; color: var(--gold); white-space: nowrap; }
.trial__price span { font-family: var(--sans); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }
@media (max-width: 560px) { .trial__action { width: 100%; justify-content: space-between; } }

/* =========================================================
   AS FEATURED ON - auto-scrolling logo marquee (real colors)
   ========================================================= */
.creds__label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 30px;
}
.creds-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* feather both edges so logos fade in/out instead of hard-clipping */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}
.creds-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  width: max-content;
  animation: credsScroll 38s linear infinite;
}
.creds-marquee:hover .creds-track { animation-play-state: paused; }
@keyframes credsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}
/* Uniform slot: every logo lives in the same box and scales to fit with
   object-fit, so source aspect ratio can't make one dominate the row. */
/* auto-width slot: each cred shrinks to its logo, and the symmetric
   padding sets an even gap between logos (left+right pad = the gap) */
.cred {
  flex: 0 0 auto;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(16px, 1.8vw, 24px);
}
.cred__logo {
  width: auto;
  height: auto;
  max-width: 132px;
  max-height: 72px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity .3s ease;
}
.cred:hover .cred__logo { opacity: 1; }
/* Per-logo balance - equalize perceived weight despite different aspect
   ratios and internal whitespace in the source art. */
.cred__logo--nhc  { max-height: 84px; }
.cred__logo--ntra { max-height: 60px; }
.cred__logo--itm  { max-height: 72px; }
.cred__logo--bcbc { max-height: 80px; }
.cred__logo--sa   { max-height: 88px; }
@media (prefers-reduced-motion: reduce) {
  .creds-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}
@media (max-width: 560px) {
  .cred { height: 82px; padding: 0 14px; }
  .cred__logo { max-height: 60px; }
  .cred__logo--nhc { max-height: 68px; }
  .cred__logo--ntra { max-height: 48px; }
  .cred__logo--itm { max-height: 60px; }
  .cred__logo--bcbc { max-height: 66px; }
  .cred__logo--sa { max-height: 72px; }
}

/* =========================================================
   FROM THE ROOM - testimonial grid
   ========================================================= */
.voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .voices { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; } }
.voice {
  margin: 0;
  padding: 32px 30px 28px;
  background: var(--bg-raised);
  border: 1px solid var(--line-soft);
  border-top: 2px solid var(--gold);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.voice blockquote {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
}
.voice blockquote::before { content: "\201C"; color: var(--gold); margin-right: 2px; }
.voice blockquote::after { content: "\201D"; color: var(--gold); margin-left: 1px; }
.voice__who {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* audio-testimonial card (Ken McMahan - held for the Steve Byk interview) */
.voice--audio { justify-content: flex-start; }
.voice__audio-title {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 10px;
}
.voice__audio-sub {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 22px;
}
.audio-embed {
  margin-top: auto;
  padding: 12px 14px;
  border: 1px solid rgba(212,175,111,0.45);
  border-radius: 6px;
  background: rgba(0,0,0,0.35);
}
.audio-embed__player {
  min-width: 0;
  width: 100%;
  height: 38px;
}
/* tint the native control toward the dark/gold palette where supported */
.audio-embed__player::-webkit-media-controls-panel { background: transparent; }

/* =========================================================
   EMAIL CAPTURE - quiet inline signup near the footer
   ========================================================= */
.signup__inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 56px);
  flex-wrap: wrap;
  padding: clamp(24px, 4vw, 34px) clamp(24px, 4vw, 38px);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--bg-raised);
}
.signup__lede { flex: 1 1 320px; }
.signup__lede .eyebrow { margin-bottom: 10px; }
.signup__copy { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; max-width: 48ch; }
.signup__form { display: flex; flex-direction: column; gap: 12px; flex: 1 1 320px; }
.signup__fields { display: grid; grid-template-columns: 1fr; gap: 12px; }
.signup__input {
  width: 100%;
  min-width: 0;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
}
.signup__input::placeholder { color: var(--muted-2); }
.signup__input:focus { outline: none; border-color: var(--gold); }
.signup__form .btn { width: 100%; justify-content: center; white-space: nowrap; }
.btn:disabled { opacity: 0.55; cursor: default; transform: none; }
/* inline error under the submit button */
.signup__error { margin: 2px 0 0; font-size: 13px; color: #e0796a; letter-spacing: 0.01em; }
/* success confirmation that replaces the form */
.signup__done { flex: 1 1 320px; }
.signup__done .eyebrow { margin-bottom: 10px; }
.signup__done-line { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.3; color: var(--ink); margin: 0; }
.signup__form[hidden], .signup__done[hidden], .signup__error[hidden] { display: none; }

/* =========================================================
   FAQ - quiet stacked accordion
   ========================================================= */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-top: 1px solid var(--line-soft);
  padding: 4px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 21px);
  color: var(--ink);
  transition: color .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
/* + / − indicator */
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  transition: transform .25s ease;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p {
  margin: 0;
  padding: 0 40px 26px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.faq__link { color: var(--gold); border-bottom: 1px solid var(--line); }
.faq__link:hover { border-color: var(--gold); }

/* =========================================================
   CLOSING CTA - full-bleed atmospheric moment
   ========================================================= */
.eyebrow--center { display: flex; align-items: center; justify-content: center; gap: 14px; }
.eyebrow--center::before,
.eyebrow--center::after { content: ""; width: 36px; height: 1px; background: var(--line); }

.closing-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(420px, 64vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #050403;
}
.closing-band__img {
  position: absolute;
  left: 0; right: 0; top: -12%;
  height: 124%;
  background-size: cover;
  background-position: center 46%;
  filter: saturate(0.82) contrast(1.05) brightness(0.62);
  will-change: transform;
  z-index: 0;
}
.closing-band::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(0deg, #050403 0%, rgba(5,4,3,0.5) 28%, rgba(5,4,3,0.42) 64%, #050403 100%),
    radial-gradient(120% 120% at 50% 50%, transparent 42%, rgba(3,3,4,0.7) 100%);
}
.closing-band__inner {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 7vw, 80px) var(--gutter);
  max-width: 760px;
}
.closing-band__inner .eyebrow { margin-bottom: 24px; text-shadow: 0 1px 16px rgba(0,0,0,0.5); }
.closing-band__inner h2 { margin-bottom: 38px; text-shadow: 0 2px 40px rgba(0,0,0,0.6); }

/* =========================================================
   LEGAL - readable prose column on the dark ground
   ========================================================= */
.legal { max-width: 760px; }
.legal__meta {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 36px;
}
.legal__intro p { color: var(--ink); }
.legal h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  margin: 52px 0 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; }
.legal h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--gold-soft);
  margin: 30px 0 10px;
}
.legal p { color: var(--muted); margin: 0 0 16px; font-size: 16px; }
.legal ul { margin: 0 0 18px; padding: 0; list-style: none; }
.legal li {
  color: var(--muted);
  font-size: 16px;
  position: relative;
  padding: 6px 0 6px 24px;
}
.legal li::before {
  content: "";
  position: absolute; left: 0; top: 16px;
  width: 12px; height: 1px;
  background: var(--gold);
  opacity: 0.8;
}
.legal a { color: var(--gold); border-bottom: 1px solid var(--line); }
.legal a:hover { color: var(--gold-soft); border-color: var(--gold-soft); }

/* =========================================================
   FEATURED TRACK - what's in / what's not two-column ledger
   ========================================================= */
.inout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 920px;
}
.inout__col {
  background: var(--bg-raised);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 36px);
}
.inout__col--in { border-color: var(--line); }
.inout__head {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.inout__col--in .inout__head { color: var(--gold); }
.inout__col--out .inout__head { color: var(--muted-2); }
.inout ul { list-style: none; padding: 0; margin: 0; }
.inout li {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
  padding: 12px 0 12px 28px;
  position: relative;
  border-top: 1px solid var(--line-soft);
}
.inout li:first-child { border-top: 0; }
.inout__col--in li::before {
  content: "";
  position: absolute; left: 0; top: 19px;
  width: 13px; height: 7px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
  transform-origin: center;
  top: 17px;
}
.inout__col--out li::before {
  content: "";
  position: absolute; left: 0; top: 22px;
  width: 13px; height: 1.5px;
  background: var(--muted-2);
}
@media (max-width: 680px) {
  .inout { grid-template-columns: 1fr; gap: 18px; }
}

/* small learn-more link inside a tier card, under the CTA */
.tier__learn {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--muted);
  border-bottom: 1px solid transparent;
}
.tier__learn:hover { color: var(--gold); }

/* =========================================================
   ABOUT : long-form prose column + magazine pull-quotes
   ========================================================= */
.prose { max-width: 680px; }
.prose p {
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.78;
  color: var(--ink);
  opacity: 0.92;
  margin: 0 0 1.4em;
}

/* full pull-quote: a serif moment set off from the prose by a gold rule */
.pullquote {
  margin: 38px 0;
  padding: 6px 0 6px 28px;
  border-left: 2px solid var(--gold);
}
.pullquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  opacity: 1;
  margin: 0;
}
.pullquote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
/* inline variant: tucked under a step's body copy, lighter weight */
.pullquote--inline {
  margin: 18px 0 0;
  padding-left: 22px;
}
.pullquote--inline p { font-size: clamp(17px, 1.9vw, 20px); }

/* =========================================================
   MEMBERS' ROOM : community screenshot placeholders + sell
   ========================================================= */
/* gold-bordered frame that holds a community screenshot. Until the real
   image lands, the file 404s, the img hides (onerror), and the label shows.
   When the file is dropped in, it loads and covers the label. */
.members-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(212,175,111,0.05), transparent 60%),
    var(--bg-raised);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.members-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.members-photo__label {
  position: relative;
  z-index: 0;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.members-photo__label::before {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: var(--line);
  margin: 0 auto 14px;
}
/* magazine caption under a screenshot */
.members-cap {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}
/* tall variant for the big atmospheric "a day inside" shot */
.members-photo--wide { aspect-ratio: 16 / 9; }

/* centered price + CTA in the closing join block */
.members-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 44px;
  color: var(--ink);
}
.members-price span {
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* simple bullet list of what's included / who's in */
.members-list { list-style: none; padding: 0; margin: 26px 0 0; max-width: 640px; }
.members-list li {
  position: relative;
  padding: 13px 0 13px 26px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 15.5px;
}
.members-list li:first-child { border-top: 0; }
.members-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 14px; height: 1px;
  background: var(--gold);
  opacity: 0.85;
}

/* portrait/square screenshot of the actual product: show the whole frame
   (not cropped), constrained and centered, with a gold border + soft shadow
   so it reads as a real screenshot. Used for duke-post + member-question. */
.members-photo--shot {
  aspect-ratio: auto;
  display: block;
  max-width: 440px;
  margin: 0 auto;
  background: transparent;
  border: 1px solid rgba(212, 175, 111, 0.32);
  border-radius: 12px;
  box-shadow: 0 26px 60px -38px rgba(0, 0, 0, 0.85);
}
.members-photo--shot img,
.members-photo--shot video {
  position: static;
  width: 100%;
  height: auto;
  display: block;
}
/* the Zoom session video sits in the same framed slot as the screenshots */
.members-video { background: #000; }
@media (max-width: 860px) {
  /* full column width on phones, same framed treatment */
  .members-photo--shot { max-width: 100%; }
}
/* landscape screenshot (the courses library): fill the column instead of the
   narrow portrait cap, keep the framed treatment, natural 16:9 with no crop */
.members-photo--landscape { max-width: 100%; }

/* =========================================================
   LIVE EVENTS - upcoming event cards + archive
   ========================================================= */
.events { display: grid; gap: 20px; max-width: 760px; }
.event-card {
  display: flex; flex-direction: column; gap: 12px;
  padding: 30px 32px;
  background: var(--bg-raised);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
}
.event-card__name { font-family: var(--serif); font-size: clamp(22px, 3vw, 28px); color: var(--ink); }
.event-card__meta { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.event-card__desc { color: var(--muted); max-width: 62ch; }
.event-card .btn { align-self: flex-start; margin-top: 8px; }
.events__empty { color: var(--muted-2); font-style: italic; }
.archive-note { color: var(--muted); max-width: 62ch; }

/* =========================================================
   ACCESSIBILITY: visible keyboard focus
   Keyboard users get a clear gold focus ring on every
   interactive element. Mouse/touch focus stays quiet
   (:focus-visible only), so the design is unchanged.
   ========================================================= */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
summary:focus-visible,
input:focus-visible,
.nav-toggle:focus-visible ~ .nav-burger {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
.signup__input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}

/* =========================================================
   COOKIE CONSENT BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(680px, calc(100% - 32px));
  background: rgba(10, 9, 8, 0.96);
  border: 1px solid rgba(212, 175, 111, 0.25);
  border-radius: 8px;
  padding: 16px 20px;
  z-index: 9999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #efe9d8;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner__copy { margin: 0; flex: 1 1 320px; }
.cookie-banner__copy a { color: #d4af6f; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btn {
  font: inherit;
  padding: 8px 18px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.cookie-banner__btn--decline {
  background: transparent;
  border-color: rgba(239, 233, 216, 0.3);
  color: #efe9d8;
}
.cookie-banner__btn--decline:hover { border-color: rgba(239, 233, 216, 0.6); }
.cookie-banner__btn--accept {
  background: #d4af6f;
  color: #0a0908;
  font-weight: 600;
}
.cookie-banner__btn--accept:hover { background: #c89e58; }
@media (max-width: 600px) {
  .cookie-banner { bottom: 12px; padding: 14px 16px; font-size: 13px; }
  .cookie-banner__inner { gap: 12px; }
  .cookie-banner__actions { width: 100%; justify-content: stretch; }
  .cookie-banner__btn { flex: 1; padding: 10px 14px; }
}
