:root {
  /* ---------- Color ---------- */
  --bg: #fbfaf8;
  --bg-elevated: #f3f1ed;
  --bg-card: #ffffff;
  --ink: #0c0b0a;
  --text: #0c0b0a;
  --text-dim: #625d55;
  --text-faint: #9c968c;
  --border: rgba(12, 11, 10, 0.1);
  --border-strong: rgba(12, 11, 10, 0.32);
  --danger: #b8383e;
  --success: #2f8f5b;

  /* Deep, near-black surface used for the hero, CTA band, and dark accents */
  --deep: #0e0d0c;
  --deep-elevated: #18160f;
  --deep-border: rgba(255, 255, 255, 0.1);

  /* Warm gold — the single accent color, used sparingly and deliberately */
  --gold: #b8944f;
  --gold-bright: #d4b06a;
  --gold-dim: rgba(184, 148, 79, 0.35);

  --font-sans: "Cairo", "Tajawal", "Segoe UI", Tahoma, Arial, sans-serif;
  --font-display: "El Messiri", "Cairo", Georgia, serif;

  /* ---------- Spacing scale (8px base) ---------- */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* ---------- Type scale ---------- */
  --fs-xs: 0.8rem;
  --fs-sm: 0.9rem;
  --fs-base: 1.05rem;
  --fs-md: 1.2rem;
  --fs-lg: 1.6rem;
  --fs-xl: 2.1rem;
  --fs-2xl: 2.9rem;
  --fs-3xl: 3.8rem;

  /* ---------- Layout ---------- */
  --container: 1160px;
  --container-text: 720px;
  --container-narrow: 460px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--container-text);
  margin: 0 auto;
  padding: 0 var(--sp-5) var(--sp-10);
}

.wrap.narrow { max-width: var(--container-narrow); padding-top: var(--sp-8); }
.wrap.wide { max-width: var(--container); padding-top: var(--sp-8); }
.wrap.default-top { padding-top: var(--sp-9); }

/* ---------- Header ---------- */
header.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-5) var(--sp-7);
  border-bottom: 1px solid transparent;
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 20;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}
header.top.no-hero { background: rgba(251, 250, 248, 0.94); backdrop-filter: blur(10px); border-bottom-color: var(--border); }

/* Over the dark hero: fixed + transparent with light text, turns solid on scroll */
header.top.over-hero { position: fixed; left: 0; right: 0; }
header.top.over-hero:not(.is-scrolled) .brand,
header.top.over-hero:not(.is-scrolled) nav.top-nav a { color: rgba(255, 255, 255, 0.78); }
header.top.over-hero:not(.is-scrolled) nav.top-nav a:hover,
header.top.over-hero:not(.is-scrolled) nav.top-nav a.is-active { color: #fff; }
header.top.over-hero:not(.is-scrolled) .logo-mark { background: var(--gold); color: #16130a; }
header.top.over-hero:not(.is-scrolled) nav.top-nav a.cta-link { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
header.top.over-hero:not(.is-scrolled) nav.top-nav a.cta-link:hover { background: var(--gold); border-color: var(--gold); color: #16130a; }
header.top.over-hero:not(.is-scrolled) .nav-toggle span { background: #fff; }
header.top.is-scrolled {
  background: rgba(251, 250, 248, 0.94);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
}

.brand-group { display: flex; align-items: center; gap: var(--sp-3); text-decoration: none; }
.logo-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
header.top .brand, .brand-group .brand {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

nav.top-nav { display: flex; align-items: center; gap: var(--sp-7); }
nav.top-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
nav.top-nav a:hover, nav.top-nav a.is-active { color: var(--ink); }
nav.top-nav .nav-links { display: flex; gap: var(--sp-6); }
nav.top-nav .nav-links a { position: relative; }
nav.top-nav .nav-links a.is-active::after {
  content: ""; position: absolute; inset-inline: 0; bottom: -6px; height: 1px; background: var(--gold);
}
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: none; border: 0; cursor: pointer; padding: 0;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 19;
  background: var(--bg);
  padding: 110px var(--sp-5) var(--sp-7);
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a:not(.btn) {
  font-family: var(--font-display);
  font-size: 1.6rem; color: var(--ink); text-decoration: none;
  padding: var(--sp-3) 0; border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: var(--sp-6); }
body.menu-open header.top { background: var(--bg) !important; }
body.menu-open header.top .brand, body.menu-open header.top nav.top-nav a { color: var(--ink) !important; }
body.menu-open .nav-toggle span { background: var(--ink) !important; }
nav.top-nav a.cta-link {
  color: var(--ink);
  font-weight: 600;
  border: 1px solid var(--border-strong);
  padding: 10px 22px;
  border-radius: 2px;
}
nav.top-nav a.cta-link:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

@media (max-width: 860px) {
  nav.top-nav .nav-links { display: none; }
  nav.top-nav a.cta-link { display: none; }
  .nav-toggle { display: flex; }
  header.top { padding: var(--sp-4) var(--sp-5); }
}

#about, #curriculum, #testimonials, #faq { scroll-margin-top: 96px; }

/* ---------- Hero (full-height composition, video + headline) ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 78vh;
  background: var(--deep);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* Subtle film-grain texture on dark surfaces — the difference between a flat
   color fill and a surface that feels made of something. */
.hero::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #000;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(23, 21, 18, 0.92) 100%);
  pointer-events: none;
}
.hero-media iframe,
.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.hero-media.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media.placeholder p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  max-width: 40ch;
  text-align: center;
  margin: 0;
  padding: var(--sp-5);
  position: relative;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: var(--sp-9) var(--sp-7) var(--sp-8);
  text-align: center;
}
.hero-content .eyebrow { justify-content: center; color: var(--gold-bright); }
.hero-content .eyebrow::before { background: var(--gold); }
.hero-content h1 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-3xl);
  line-height: 1.18;
  max-width: 22ch;
  margin: 0 auto var(--sp-5);
}
.hero-content .hero-sub {
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--fs-md);
  max-width: 52ch;
  margin: 0 auto var(--sp-6);
  line-height: 1.75;
}
.hero-caption { text-align: center; }
.hero-caption .btn {
  max-width: 320px;
  margin: 0 auto;
  background: var(--gold);
  border-color: var(--gold);
  color: #16130a;
}
.hero-caption .btn:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.hero-caption .hero-proof {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: var(--sp-4) 0 0;
}

/* ---------- Proof strip ---------- */
.proof-strip {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.proof-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--sp-5) var(--sp-7);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-7);
}
.proof-item {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  color: var(--text-dim);
  font-size: 0.85rem;
  white-space: nowrap;
}
.proof-item strong { color: var(--ink); font-size: 1rem; font-weight: 700; }

/* ---------- Typography ---------- */
h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-2xl);
  line-height: 1.3;
  margin: 0 0 var(--sp-5);
  letter-spacing: -0.005em;
  color: var(--ink);
}
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-xl);
  line-height: 1.35;
  margin: var(--sp-8) 0 var(--sp-4);
  letter-spacing: -0.005em;
  color: var(--ink);
}
p.lede {
  color: var(--text-dim);
  font-size: var(--fs-base);
  line-height: 1.9;
  max-width: 58ch;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--text-faint);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  margin-bottom: var(--sp-5);
  font-weight: 600;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

hr.rule {
  border: none;
  height: 1px;
  margin: var(--sp-8) 0;
  background: var(--border);
}

.badge {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  padding: 6px 16px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-5);
  font-weight: 600;
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: var(--sp-7);
  margin-top: var(--sp-6);
  position: relative;
  box-shadow: 0 24px 48px -30px rgba(23, 21, 18, 0.16);
}
.card.gold-frame {
  border-top: 3px solid var(--gold);
}

.price-label {
  color: var(--text-faint);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3rem;
  margin: var(--sp-2) 0 var(--sp-3);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.price span {
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 400;
}

ul.features { list-style: none; padding: 0; margin: var(--sp-6) 0; }
ul.features li {
  padding-inline-start: 30px;
  padding-block: var(--sp-3);
  position: relative;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
}
ul.features li:first-child { border-top: none; }
ul.features li::before {
  content: "\2713";
  position: absolute;
  inset-inline-start: 0;
  top: var(--sp-3);
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--ink);
  color: #ffffff;
  font-weight: 600;
  padding: 17px 32px;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  width: 100%;
  text-align: center;
  transition: opacity 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: #322f2a; border-color: #322f2a; }
.btn:active { opacity: 0.85; transform: translateY(1px); }
.btn.secondary {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--ink);
}
.btn.secondary:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Forms ---------- */
form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  margin: var(--sp-5) 0 var(--sp-2);
}
form input {
  width: 100%;
  padding: var(--sp-4) var(--sp-4);
  border-radius: 0;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}
form input::placeholder { color: var(--text-faint); }
form input:focus { outline: none; border-color: var(--ink); }

.error {
  background: rgba(184, 56, 62, 0.06);
  border: 1px solid rgba(184, 56, 62, 0.3);
  color: #96262b;
  padding: var(--sp-4);
  margin-top: var(--sp-5);
  font-size: 0.9rem;
}

.success-box {
  background: rgba(47, 143, 91, 0.07);
  border: 1px solid rgba(47, 143, 91, 0.3);
  color: #1f6e42;
  padding: var(--sp-4);
  margin-top: var(--sp-5);
  font-size: 0.9rem;
}

.muted { color: var(--text-dim); font-size: 0.92rem; }

/* ---------- Table ---------- */
table { width: 100%; border-collapse: collapse; margin-top: var(--sp-5); font-size: 0.9rem; }
th, td { text-align: start; padding: var(--sp-4); border-bottom: 1px solid var(--border); }
th {
  color: var(--text-faint);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-pill {
  display: inline-block;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.status-paid { background: rgba(47, 143, 91, 0.1); color: var(--success); }
.status-pending { background: rgba(10, 10, 10, 0.08); color: var(--text-dim); }
.status-failed { background: rgba(184, 56, 62, 0.1); color: var(--danger); }

/* ---------- Video ---------- */
.video-embed {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
  margin: var(--sp-5) 0;
  border: 1px solid var(--border);
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

/* ---------- Trust / metrics grid ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-4);
  margin: 0;
}
.stat {
  padding: var(--sp-6) var(--sp-5);
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg-card);
}
.stat .num {
  font-size: 2rem;
  color: var(--ink);
  font-weight: 700;
  display: block;
  letter-spacing: -0.01em;
}
.stat .label {
  color: var(--text-faint);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  margin-top: var(--sp-2);
  display: block;
  line-height: 1.5;
}

/* ---------- Closing CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
  text-align: center;
  padding: var(--sp-9) var(--sp-5);
  margin: var(--sp-10) 0 0;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  color: #fff;
  margin: 0 0 var(--sp-3);
  font-size: var(--fs-lg);
}
.cta-band p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 46ch;
  margin: 0 auto var(--sp-6);
  font-size: 1rem;
  line-height: 1.8;
}
.cta-band .btn {
  max-width: 320px;
  margin: 0 auto;
  background: var(--gold);
  color: #16130a;
  border-color: var(--gold);
}
.cta-band .btn:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

/* ---------- Footer ---------- */
footer.site {
  text-align: center;
  color: var(--text-faint);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  margin-top: var(--sp-9);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}

/* =====================================================================
   MOTION
   Everything is visible by default. Only when main.js is running (it adds
   .js to <html> before first paint) do elements start hidden and animate in
   as they scroll into view. main.js tags elements with data-anim="…" and
   removes the tag once the entrance finishes, so hover effects stay snappy.
   ===================================================================== */
:root { --ease-out: cubic-bezier(0.16, 1, 0.3, 1); }

/* Page-load entrance (hero text) */
.fade-in { animation: fadeIn 1.1s var(--ease-out) both; }
.fade-in.d1 { animation-delay: 0.12s; }
.fade-in.d2 { animation-delay: 0.26s; }
.fade-in.d3 { animation-delay: 0.4s; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll entrances */
.js .reveal:not([data-anim]),
.js [data-anim] {
  opacity: 0;
  transform: translateY(56px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 1.1s var(--ease-out),
    clip-path 1.2s var(--ease-out);
  will-change: opacity, transform;
}
/* Headings: unveil upward from behind a mask */
.js [data-anim="heading"] { transform: translateY(28px); clip-path: inset(0 0 100% 0); }
/* Images: open from a clip while settling from a slight zoom */
.js [data-anim="image"] { opacity: 1; transform: scale(1.08); clip-path: inset(14% 0 14% 0); }
/* Large panels: rise and scale up */
.js [data-anim="scale"] { transform: translateY(60px) scale(0.94); }
/* Thin rules: draw across */
.js [data-anim="line"] { opacity: 1; transform: scaleX(0); transform-origin: right; }

.js [data-anim].is-visible {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
}

/* Pre-hide everything main.js will animate, from the very first paint, so
   nothing flashes visible and then disappears before its entrance.
   (Keep in sync with GROUPS / SINGLES in main.js. main.js marks anything it
   decides not to animate as .is-visible, which releases it.) */
.js .section-head > *:not(.is-visible),
.js .split-text > *:not(.is-visible),
.js .story-text > *:not(.is-visible),
.js .section .narrow-center > *:not(.is-visible),
.js .cta-band .narrow-center > *:not(.is-visible),
.js .grid-4 > *:not(.is-visible),
.js .grid-3 > *:not(.is-visible),
.js .tiers > *:not(.is-visible),
.js .deliverables > *:not(.is-visible),
.js .ecosystem > *:not(.is-visible),
.js .club-steps > *:not(.is-visible),
.js .reviews > *:not(.is-visible),
.js .stats-grid > *:not(.is-visible),
.js .platforms > *:not(.is-visible),
.js .dashboard:not(.is-visible),
.js .img-slot:not(.is-visible),
.js .center-cta:not(.is-visible),
.js .disclaimer:not(.is-visible),
.js .chip-row:not(.is-visible),
.js .chosen-tier:not(.is-visible),
.js .page-body > h1:not(.is-visible),
.js .page-body > .lede:not(.is-visible),
.js .page-body > .card:not(.is-visible),
.js .page-body > .eyebrow:not(.is-visible),
.js .legal > *:not(.is-visible),
.js .club-section .narrow-center > *:not(.is-visible),
.js .club-final .narrow-center > *:not(.is-visible),
.js .club-pillars > *:not(.is-visible),
.js .itinerary > *:not(.is-visible),
.js .evening-gallery > *:not(.is-visible),
.js .room-list > *:not(.is-visible),
.js .club-code > *:not(.is-visible),
.js .club-faq > *:not(.is-visible),
.js .membership-info > *:not(.is-visible),
.js .member-card-wrap:not(.is-visible) { opacity: 0; }

/* Dashboard sparklines draw in once the panel is visible */
.js .spark polyline { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.8s var(--ease-out) 0.5s; }
.js .dashboard.is-visible .spark polyline { stroke-dashoffset: 0; }

/* Hero: the media drifts slower than the page and the text lifts away (driven by main.js) */
.hero-media, .hero-content { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .fade-in { animation: none; }
  .js .reveal, .js [data-anim] {
    opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important;
  }
  .js .spark polyline { stroke-dashoffset: 0; transition: none; }
}

/* ---------- Hover lift ---------- */
.card, .stat, .testimonial-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.stat:hover, .testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px -24px rgba(23, 21, 18, 0.22);
  border-color: var(--border-strong);
}
.card.gold-frame:hover { transform: translateY(-3px); box-shadow: 0 26px 46px -26px rgba(23, 21, 18, 0.26); }

/* ---------- Icons ---------- */
.icon-check {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--ink);
}
.icon-check svg { width: 100%; height: 100%; }

/* ---------- Numbered badge (curriculum) ---------- */
.mod-badge {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
ol.curriculum li:hover .mod-badge { background: var(--gold); border-color: var(--gold); color: #16130a; }

/* ---------- Avatar initial ---------- */
.avatar-initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ---------- About / credibility section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-7);
  align-items: start;
  margin-top: var(--sp-2);
}
.photo-placeholder {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
  background: var(--bg-elevated);
}
.photo-placeholder p {
  color: var(--text-faint);
  font-size: 0.82rem;
  text-align: center;
  margin: 0;
  line-height: 1.7;
}
.edit-hint {
  display: block;
  color: var(--text-faint);
  font-size: 0.76rem;
  margin-top: var(--sp-3);
}

/* ---------- Curriculum ---------- */
ol.curriculum {
  list-style: none;
  padding: 0;
  margin: var(--sp-6) 0;
  counter-reset: mod;
}
ol.curriculum li {
  counter-increment: mod;
  display: flex;
  gap: var(--sp-5);
  align-items: center;
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--border);
}
ol.curriculum li:first-child { border-top: none; }
ol.curriculum li .mod-badge::before {
  content: counter(mod, decimal-leading-zero);
}
ol.curriculum li .mod-title { font-weight: 600; color: var(--ink); display: block; font-size: 1.02rem; }
ol.curriculum li .mod-desc { color: var(--text-dim); font-size: 0.92rem; margin-top: var(--sp-1); display: block; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--sp-5);
  margin: var(--sp-6) 0;
}
.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: var(--sp-6);
  position: relative;
  background: var(--bg-card);
}
.testimonial-card .quote {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0 0 var(--sp-5);
}
.testimonial-who {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.testimonial-card .who {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}
.testimonial-card .who .role {
  display: block;
  font-weight: 400;
  color: var(--text-faint);
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-top: 1px solid var(--border);
  padding: var(--sp-5) 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item .q {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin: 0 0 var(--sp-2);
}
.faq-item .a {
  color: var(--text-dim);
  font-size: 0.94rem;
  margin: 0;
  line-height: 1.8;
}

/* ---------- Positioning statement ---------- */
.statement {
  text-align: center;
  padding: var(--sp-5) 0 var(--sp-2);
}
.statement p {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.6;
  font-weight: 600;
  color: var(--ink);
  max-width: 32ch;
  margin: 0 auto;
  letter-spacing: -0.005em;
}
.statement p .dim { color: var(--text-faint); font-weight: 400; }

/* ---------- Achievement chips ---------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin: var(--sp-5) 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: var(--sp-2) var(--sp-4);
  font-size: 0.82rem;
  color: var(--text-dim);
  background: var(--bg-card);
}
.chip strong { color: var(--ink); font-weight: 700; }

/* ---------- Included / bonuses list ---------- */
ul.included { list-style: none; padding: 0; margin: var(--sp-6) 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 4px 28px; }
ul.included li {
  padding-inline-start: 30px;
  padding-block: var(--sp-3);
  position: relative;
  color: var(--text-dim);
  font-size: 0.95rem;
}
ul.included li::before {
  content: "\2713";
  position: absolute;
  inset-inline-start: 0;
  top: 13px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .hero-content h1 { font-size: var(--fs-2xl); }
}

@media (max-width: 680px) {
  .about-grid { grid-template-columns: 1fr; }
  .photo-placeholder { max-width: 280px; margin: 0 auto; }
  .hero { min-height: 88vh; }
  .hero-content { padding: var(--sp-7) var(--sp-5) var(--sp-6); }
}

@media (max-width: 560px) {
  h1 { font-size: 1.9rem; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content .hero-sub { font-size: 1rem; }
  .card { padding: var(--sp-5); }
  .stat { padding: var(--sp-5) var(--sp-4); }
  .statement p { font-size: 1.3rem; }
}

/* =====================================================================
   PAGE STRUCTURE — sections, containers, grids
   ===================================================================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-7); }
.narrow-center { max-width: 760px; text-align: center; }
.eyebrow.center { justify-content: center; }
.lede.center { margin-inline: auto; text-align: center; }

.section { padding: var(--sp-10) 0; position: relative; }
.section-tight { padding: var(--sp-8) 0 var(--sp-10); }
.section-elevated { background: var(--bg-elevated); }
.section-deep { background: var(--deep); color: #fff; overflow: hidden; }
.section-deep::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.section-deep > .container { position: relative; z-index: 1; }
.section-deep h2, .section-deep h3 { color: #fff; }
.section-deep .lede { color: rgba(255, 255, 255, 0.62); }
.section-deep .eyebrow { color: var(--gold-bright); }

.section-head { margin-bottom: var(--sp-7); max-width: 640px; }
.section-head h2 { margin-top: 0; }
.section-head .lede { margin: 0; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }

.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-9); align-items: center; }
.split-top { align-items: start; }
.split-text h2 { margin-top: 0; }
.split-text .lede + .lede { margin-top: var(--sp-4); }

.center-cta { text-align: center; margin-top: var(--sp-8); }
.btn.btn-inline { width: auto; min-width: 240px; }
.btn.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn.btn-outline-light:hover { background: var(--gold); border-color: var(--gold); color: #16130a; }
.btn.btn-secondary-dark { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn.btn-secondary-dark:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.edit-hint.on-dark { color: rgba(255, 255, 255, 0.35); }

/* Image placeholders — same aspect ratio and position the real image will take */
.img-slot {
  position: relative; width: 100%;
  background:
    linear-gradient(135deg, rgba(12, 11, 10, 0.03) 25%, transparent 25%, transparent 50%, rgba(12, 11, 10, 0.03) 50%, rgba(12, 11, 10, 0.03) 75%, transparent 75%) 0 0 / 14px 14px,
    var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.img-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.img-slot span { color: var(--text-faint); font-size: 0.78rem; letter-spacing: 0.04em; }
.section-elevated .img-slot { background-color: #ebe8e2; }
.ratio-4x5 { aspect-ratio: 4 / 5; }
.ratio-4x3 { aspect-ratio: 4 / 3; }
.ratio-16x10 { aspect-ratio: 16 / 10; }
.ratio-1x1 { aspect-ratio: 1 / 1; }

/* ---------- Home hero adjustments ---------- */
.hero { min-height: 100vh; }
.hero-media.placeholder { background: radial-gradient(ellipse at 50% 35%, #26221b 0%, var(--deep) 70%); }
.hero-content { padding-top: 160px; }
.hero-content h1 { font-size: 3.3rem; max-width: 20ch; }
.hero-video-hint {
  position: absolute; top: 28%; left: 50%; transform: translate(-50%, -50%); z-index: 1;
  color: rgba(255, 255, 255, 0.28); font-size: 0.8rem; border: 1px dashed rgba(255, 255, 255, 0.18);
  padding: var(--sp-2) var(--sp-4); white-space: nowrap;
}

/* ---------- Inner page hero ---------- */
.page-hero { padding: 180px 0 var(--sp-9); background: var(--bg); border-bottom: 1px solid var(--border); }
.page-hero-sm { padding: 150px 0 var(--sp-7); }
.page-hero h1 { font-size: 3.1rem; margin-bottom: var(--sp-4); }
.page-hero .lede { margin-bottom: var(--sp-6); }
.page-body { padding-top: 150px; }

/* ---------- Home §3 positioning ---------- */
.positioning {
  font-family: var(--font-display);
  font-size: 2.6rem; line-height: 1.35; font-weight: 600;
  color: var(--ink); margin: 0 0 var(--sp-5);
}

/* ---------- Home §4 program cards ---------- */
.program-card {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: var(--sp-6) var(--sp-5) var(--sp-5);
  text-decoration: none; color: inherit; min-height: 280px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.program-card:hover { transform: translateY(-4px); border-color: var(--gold-dim); box-shadow: 0 28px 50px -34px rgba(12, 11, 10, 0.3); }
.program-num { font-family: var(--font-display); color: var(--gold); font-size: 1.1rem; margin-bottom: var(--sp-6); }
.program-card h3 { font-family: var(--font-display); font-size: 1.35rem; margin: 0 0 var(--sp-3); color: var(--ink); }
.program-card p { color: var(--text-dim); font-size: 0.92rem; margin: 0 0 var(--sp-5); flex: 1; }
.program-link { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.program-card:hover .program-link { color: var(--gold); }

/* ---------- Home §5 results dashboard ---------- */
.dashboard {
  background: var(--deep-elevated); border: 1px solid var(--deep-border);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.7);
}
.dashboard-bar {
  display: flex; align-items: center; gap: 7px;
  padding: var(--sp-3) var(--sp-5); border-bottom: 1px solid var(--deep-border);
}
.dashboard-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); }
.dashboard-title { margin-inline-start: auto; color: rgba(255, 255, 255, 0.4); font-size: 0.78rem; }
.dashboard-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.metric {
  padding: var(--sp-6) var(--sp-5);
  border-inline-start: 1px solid var(--deep-border); border-top: 1px solid var(--deep-border);
  display: grid; grid-template-columns: 1fr auto; row-gap: var(--sp-2);
}
.metric:nth-child(3n + 1) { border-inline-start: 0; }
.metric:nth-child(-n + 3) { border-top: 0; }
.metric-label { grid-column: 1 / -1; color: rgba(255, 255, 255, 0.5); font-size: 0.82rem; }
.metric-value { font-family: var(--font-display); font-size: 2.1rem; color: #fff; line-height: 1.1; }
.metric-delta { align-self: end; color: #7fc49b; font-size: 0.85rem; font-weight: 600; }
.spark { grid-column: 1 / -1; width: 100%; height: 28px; margin-top: var(--sp-3); }
.spark polyline { fill: none; stroke: var(--gold); stroke-width: 1.5; vector-effect: non-scaling-stroke; }

/* ---------- Home §6 achievements ---------- */
.achievements { row-gap: var(--sp-6); }
.achievement { background: var(--bg-card); border: 1px solid var(--border); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.achievement:hover { transform: translateY(-3px); box-shadow: 0 24px 44px -30px rgba(12, 11, 10, 0.28); }
.achievement .img-slot { border: 0; border-bottom: 1px solid var(--border); }
.achievement-body { padding: var(--sp-5); }
.achievement-num { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--ink); line-height: 1.2; }
.achievement-label { display: block; color: var(--text-dim); font-size: 0.9rem; margin-top: var(--sp-1); }

/* ---------- Home §7 testimonials ---------- */
.testimonial {
  margin: 0; background: var(--bg-card); border: 1px solid var(--border);
  padding: var(--sp-6); display: flex; flex-direction: column;
}
.testimonial .avatar-slot { width: 64px; border-radius: 50%; margin-bottom: var(--sp-5); }
.testimonial .avatar-slot span { font-size: 0.62rem; }
.testimonial blockquote {
  margin: 0 0 var(--sp-5); flex: 1;
  font-size: 1.02rem; line-height: 1.85; color: var(--text);
}
.testimonial figcaption strong { display: block; color: var(--ink); font-size: 0.95rem; }
.testimonial figcaption span { color: var(--text-faint); font-size: 0.82rem; }
.disclaimer {
  margin: var(--sp-7) auto 0; max-width: 70ch; text-align: center;
  color: var(--text-faint); font-size: 0.78rem; line-height: 1.8;
}

/* ---------- Closing CTA band (full-width section) ---------- */
.cta-band { margin: 0; padding: var(--sp-10) 0; }
.cta-band h2 { font-size: 2.6rem; margin-bottom: var(--sp-4); }
.cta-band p { font-size: 1.05rem; }

/* ---------- About §2 origin + 6 stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--border); background: var(--bg-card); }
.stat-cell { padding: var(--sp-6) var(--sp-5); border-top: 1px solid var(--border); border-inline-start: 1px solid var(--border); }
.stat-cell:nth-child(odd) { border-inline-start: 0; }
.stat-cell:nth-child(-n + 2) { border-top: 0; }
.stat-cell .num { display: block; font-family: var(--font-display); font-size: 2.2rem; color: var(--ink); line-height: 1.2; }
.stat-cell .label { display: block; color: var(--text-faint); font-size: 0.85rem; margin-top: var(--sp-1); }

/* ---------- About §3 ecosystem (5 points) ---------- */
.ecosystem { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--border-strong); }
.ecosystem li {
  display: grid; grid-template-columns: 90px 1fr; gap: var(--sp-5);
  padding: var(--sp-6) 0; border-bottom: 1px solid var(--border);
}
.eco-num { font-family: var(--font-display); color: var(--gold); font-size: 1.5rem; }
.ecosystem h3 { font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 var(--sp-2); color: var(--ink); }
.ecosystem p { margin: 0; color: var(--text-dim); }

/* ---------- About §4 stories (image + text, alternating) ---------- */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-9); align-items: center; }
.story + .story { margin-top: var(--sp-9); }
.story-reverse .img-slot { order: 2; }
.story-text h3 { font-family: var(--font-display); font-size: 2rem; margin: 0 0 var(--sp-4); color: var(--ink); }
.story-text p { color: var(--text-dim); font-size: 1.05rem; line-height: 1.9; margin: 0; }

/* ---------- About §5 team ---------- */
.team-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin: var(--sp-4) 0 var(--sp-1); color: var(--ink); }
.team-role { display: block; color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: var(--sp-3); }
.team-card p { color: var(--text-dim); font-size: 0.9rem; margin: 0; }

/* ---------- About §6 platforms ---------- */
.platforms { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--deep-border); border: 1px solid var(--deep-border); }
.platforms span {
  background: var(--deep-elevated); color: rgba(255, 255, 255, 0.8);
  padding: var(--sp-7) var(--sp-5); text-align: center;
  font-family: var(--font-display); font-size: 1.25rem;
}

/* ---------- Program §3 deliverables (5) ---------- */
.deliverables { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 var(--sp-8); }
.deliverables li { display: flex; gap: var(--sp-4); padding: var(--sp-5) 0; border-top: 1px solid var(--border); }
.deliverables strong { display: block; color: var(--ink); font-size: 1.05rem; margin-bottom: 2px; }
.deliverables span { color: var(--text-dim); font-size: 0.92rem; }
.check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--gold); position: relative; margin-top: 3px;
}
.check::after {
  content: ""; position: absolute; left: 7px; top: 5px; width: 8px; height: 5px;
  border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(-45deg);
}

/* ---------- Program §4 system cards ---------- */
.system-card { border: 1px solid var(--border); background: var(--bg-card); padding: var(--sp-6) var(--sp-5); }
.system-icon {
  display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center;
  background: var(--deep); color: var(--gold); font-size: 1rem; margin-bottom: var(--sp-5);
}
.system-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin: 0 0 var(--sp-2); color: var(--ink); }
.system-card p { margin: 0; color: var(--text-dim); font-size: 0.92rem; }

/* ---------- Program §5 availability ---------- */
.status-badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: 0.82rem; font-weight: 600; padding: 6px 14px; margin-bottom: var(--sp-5);
  border: 1px solid;
}
.status-badge.open { color: #7fc49b; border-color: rgba(127, 196, 155, 0.35); }
.status-badge.closed { color: rgba(255, 255, 255, 0.6); border-color: rgba(255, 255, 255, 0.2); }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: #7fc49b; animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(127, 196, 155, 0.6); } 100% { box-shadow: 0 0 0 10px rgba(127, 196, 155, 0); } }
#availability h2 { margin-top: 0; font-size: 2.6rem; }
.price-display { font-family: var(--font-display); font-size: 3.4rem; color: var(--gold-bright); margin: var(--sp-2) 0 var(--sp-3); }
.price-display span { font-family: var(--font-sans); font-size: 1rem; color: rgba(255, 255, 255, 0.5); }
#availability .lede { margin-bottom: var(--sp-6); }
#availability .btn:not(.btn-outline-light) { background: var(--gold); border-color: var(--gold); color: #16130a; }
#availability .btn:not(.btn-outline-light):hover { background: var(--gold-bright); border-color: var(--gold-bright); }

/* ---------- Program §6 review wall ---------- */
.reviews { columns: 3; column-gap: var(--sp-5); }
.review {
  break-inside: avoid; margin-bottom: var(--sp-5);
  border: 1px solid var(--border); background: var(--bg-card); padding: var(--sp-5);
}
.js .reviews:not(.show-all) .review.is-extra { display: none; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: var(--sp-3); }
.review p { margin: 0 0 var(--sp-3); color: var(--text); }
.review-who { color: var(--text-faint); font-size: 0.82rem; font-weight: 600; }

/* ---------- Legal ---------- */
.legal { max-width: 760px; }
.legal h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); margin: var(--sp-7) 0 var(--sp-2); }
.legal p { color: var(--text-dim); line-height: 1.9; }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep); color: rgba(255, 255, 255, 0.6); padding: var(--sp-9) 0 var(--sp-6); border-top: 1px solid var(--deep-border); }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: var(--sp-8); padding-bottom: var(--sp-7); }
.site-footer .brand-group .brand { color: #fff; }
.site-footer .logo-mark { background: var(--gold); color: #16130a; }
.footer-brand p { margin: var(--sp-4) 0 0; font-size: 0.9rem; max-width: 36ch; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.footer-links h4 { color: #fff; font-size: 0.78rem; letter-spacing: 0.14em; font-weight: 600; margin: 0 0 var(--sp-4); }
.footer-links a { display: block; color: rgba(255, 255, 255, 0.6); text-decoration: none; font-size: 0.9rem; padding: 5px 0; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom { border-top: 1px solid var(--deep-border); padding-top: var(--sp-5); font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); }

/* =====================================================================
   RESPONSIVE — tablet then mobile (layouts re-flow, not just stack)
   ===================================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split, .story { gap: var(--sp-7); }
  .reviews { columns: 2; }
  .dashboard-grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(n) { border-inline-start: 1px solid var(--deep-border); border-top: 1px solid var(--deep-border); }
  .metric:nth-child(2n + 1) { border-inline-start: 0; }
  .metric:nth-child(-n + 2) { border-top: 0; }
}

@media (max-width: 760px) {
  .container { padding: 0 var(--sp-5); }
  .section { padding: var(--sp-9) 0; }
  .split, .story, .footer-inner { grid-template-columns: 1fr; }
  .split-media { order: -1; max-width: 420px; }
  .story-reverse .img-slot { order: 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .deliverables { grid-template-columns: 1fr; }
  .reviews { columns: 1; }
  .hero-content h1, .page-hero h1 { font-size: 2.2rem; }
  .positioning, .cta-band h2, #availability h2 { font-size: 1.9rem; }
  .ecosystem li { grid-template-columns: 56px 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 130px 0 var(--sp-8); }
  .page-body { padding-top: 120px; }
  .hero-video-hint { white-space: normal; text-align: center; width: 80%; }
}

@media (max-width: 480px) {
  /* Program + achievement cards become a horizontal swipe row instead of a tall stack */
  .grid-4 {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 78%;
    overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: var(--sp-3);
    margin-inline: calc(var(--sp-5) * -1); padding-inline: var(--sp-5);
  }
  .grid-4 > * { scroll-snap-align: start; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
  .metric { padding: var(--sp-5) var(--sp-4); }
  .metric-value { font-size: 1.6rem; }
  .btn.btn-inline { width: 100%; min-width: 0; }
}

/* =====================================================================
   REGISTER — three options
   ===================================================================== */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); align-items: stretch; }
.tier {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tier:hover { transform: translateY(-4px); box-shadow: 0 30px 56px -36px rgba(12, 11, 10, 0.3); }
.tier-tag { font-size: 0.74rem; letter-spacing: 0.12em; color: var(--gold); font-weight: 600; }
.tier-name { font-family: var(--font-display); font-size: 2rem; margin: var(--sp-2) 0 var(--sp-3); color: var(--ink); }
.tier-price { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); padding-bottom: var(--sp-5); border-bottom: 1px solid var(--border); }
.tier-summary { color: var(--text-dim); font-size: 0.95rem; line-height: 1.85; margin: var(--sp-5) 0; }
.tier-features { list-style: none; margin: 0 0 var(--sp-6); padding: 0; flex: 1; }
.tier-features li { position: relative; padding: var(--sp-2) 0; padding-inline-start: 26px; color: var(--text); font-size: 0.93rem; }
.tier-features li::before {
  content: ""; position: absolute; inset-inline-start: 2px; top: 15px;
  width: 9px; height: 5px; border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(-45deg);
}
.tier-note { display: block; text-align: center; color: var(--text-faint); font-size: 0.8rem; margin-top: var(--sp-3); }

/* CBI Club — the featured, dark card */
.tier-featured { background: var(--deep); border-color: var(--gold-dim); position: relative; overflow: hidden; }
.tier-featured::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.tier-featured > * { position: relative; }
.tier-featured .tier-name, .tier-featured .tier-price { color: #fff; }
.tier-featured .tier-tag { color: var(--gold-bright); }
.tier-featured .tier-price { border-bottom-color: var(--deep-border); }
.tier-featured .tier-summary { color: rgba(255, 255, 255, 0.62); }
.tier-featured .tier-features li { color: rgba(255, 255, 255, 0.85); }
.tier-featured .tier-note { color: rgba(255, 255, 255, 0.4); }
.tier-featured .btn, .btn.btn-gold { background: var(--gold); border-color: var(--gold); color: #16130a; }
.tier-featured .btn:hover, .btn.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

.club-steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.club-steps li { border-top: 1px solid var(--gold-dim); padding-top: var(--sp-5); }
.club-steps span { font-family: var(--font-display); color: var(--gold); font-size: 1.1rem; }
.club-steps h3 { font-family: var(--font-display); font-size: 1.35rem; margin: var(--sp-3) 0 var(--sp-2); }
.club-steps p { color: rgba(255, 255, 255, 0.6); margin: 0; font-size: 0.95rem; }

/* ---------- Form for the chosen option ---------- */
.back-link { display: inline-block; color: var(--text-dim); text-decoration: none; font-size: 0.88rem; margin-bottom: var(--sp-5); }
.back-link:hover { color: var(--ink); }
.chosen-tier {
  display: flex; align-items: baseline; gap: var(--sp-3); flex-wrap: wrap;
  border: 1px solid var(--border); background: var(--bg-card);
  padding: var(--sp-4) var(--sp-5); margin-bottom: var(--sp-6);
}
.chosen-tier strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }
.chosen-tier .chosen-price { margin-inline-start: auto; color: var(--text-dim); font-weight: 600; }
.chosen-tier.is-featured { background: var(--deep); border-color: var(--gold-dim); }
.chosen-tier.is-featured strong { color: #fff; }
.chosen-tier.is-featured .chosen-price { color: var(--gold-bright); }
form textarea {
  width: 100%; padding: var(--sp-4); border: 1px solid var(--border); border-radius: 0;
  background: var(--bg-elevated); color: var(--text); font-family: var(--font-sans); font-size: 1rem;
  resize: vertical; transition: border-color 0.2s ease;
}
form textarea:focus { outline: none; border-color: var(--ink); }

/* ---------- Admin ---------- */
.status-applied { background: rgba(184, 148, 79, 0.16); color: #8a6a2c; }
.status-approved { background: rgba(47, 143, 91, 0.1); color: var(--success); }
.status-rejected { background: rgba(10, 10, 10, 0.06); color: var(--text-faint); }
.admin .stats-row { margin-bottom: var(--sp-6); }
.admin-tabs { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-5); border-bottom: 1px solid var(--border); }
.admin-tabs a { padding: var(--sp-3) var(--sp-4); color: var(--text-dim); text-decoration: none; font-size: 0.9rem; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.admin-tabs a.is-active { color: var(--ink); border-bottom-color: var(--gold); font-weight: 600; }
.admin-row { display: flex; gap: var(--sp-5); justify-content: space-between; align-items: flex-start; padding: var(--sp-5) 0; border-bottom: 1px solid var(--border); }
.admin-row-main strong { font-size: 1.05rem; margin-inline-end: var(--sp-2); }
.admin-tier { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-inline-end: var(--sp-2); }
.admin-meta { display: flex; flex-wrap: wrap; gap: var(--sp-1) var(--sp-4); color: var(--text-dim); font-size: 0.85rem; margin-top: var(--sp-2); }
.admin-application { background: var(--bg-elevated); padding: var(--sp-3) var(--sp-4); margin-top: var(--sp-3); font-size: 0.9rem; }
.admin-application p { margin: 0 0 var(--sp-1); }
.admin-paylink { margin-top: var(--sp-3); font-size: 0.85rem; color: var(--text-dim); }
.admin-paylink input { width: 100%; max-width: 440px; margin-top: var(--sp-2); padding: var(--sp-2) var(--sp-3); border: 1px solid var(--border); background: #fff; direction: ltr; font-family: monospace; }
.admin-actions { display: flex; gap: var(--sp-2); flex-shrink: 0; }
.admin-actions .btn { width: auto; padding: 8px 18px; font-size: 0.85rem; }

@media (max-width: 1024px) {
  .tiers { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .club-steps { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .admin-row { flex-direction: column; }
}

/* =====================================================================
   CBI CLUB — private members' club theme
   ===================================================================== */
:root {
  --club-bg: #0b0a09;
  --club-elev: #12100d;
  --champagne: #ece3d2;
  --champagne-dim: rgba(236, 227, 210, 0.58);
  --champagne-faint: rgba(236, 227, 210, 0.32);
  --club-line: rgba(212, 176, 106, 0.22);
  --font-latin-serif: "Didot", "Bodoni 72", "Playfair Display", Georgia, "Times New Roman", serif;
}

/* ---------- Club tab in the main navigation ---------- */
nav.top-nav a.club-tab {
  display: inline-flex; align-items: center; gap: 8px;
  color: #8a6a2c; font-weight: 600; letter-spacing: 0.08em; font-size: 0.82rem;
  padding: 9px 16px; border: 1px solid var(--gold-dim);
  font-family: var(--font-latin-serif);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.club-tab-mark { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
nav.top-nav a.club-tab:hover, nav.top-nav a.club-tab.is-active { background: var(--deep); color: var(--gold-bright); border-color: var(--deep); }
header.top.over-hero:not(.is-scrolled) nav.top-nav a.club-tab { color: var(--gold-bright); border-color: rgba(212, 176, 106, 0.45); }
header.top.over-hero:not(.is-scrolled) nav.top-nav a.club-tab:hover { background: var(--gold); color: #16130a; border-color: var(--gold); }
.mobile-menu a.mobile-club { color: #8a6a2c !important; font-family: var(--font-latin-serif) !important; letter-spacing: 0.06em; }
@media (max-width: 860px) { nav.top-nav a.club-tab { display: none; } }

/* ---------- Page chrome in club theme ---------- */
body.theme-club { background: var(--club-bg); color: var(--champagne); }
.theme-club h1, .theme-club h2, .theme-club h3 { color: var(--champagne); }
.theme-club .lede, .theme-club .muted { color: var(--champagne-dim); }
.theme-club .eyebrow { color: var(--gold-bright); }
.theme-club header.top.no-hero,
.theme-club header.top.is-scrolled { background: rgba(11, 10, 9, 0.86); border-bottom-color: var(--club-line); }
.theme-club header.top .brand,
.theme-club header.top nav.top-nav a { color: var(--champagne-dim); }
.theme-club header.top nav.top-nav a:hover,
.theme-club header.top nav.top-nav a.is-active { color: var(--champagne); }
.theme-club header.top .logo-mark { background: var(--gold); color: #16130a; }
.theme-club header.top nav.top-nav a.cta-link { color: var(--champagne); border-color: var(--club-line); }
.theme-club header.top nav.top-nav a.cta-link:hover { background: var(--gold); border-color: var(--gold); color: #16130a; }
.theme-club header.top nav.top-nav a.club-tab { color: var(--gold-bright); border-color: rgba(212, 176, 106, 0.45); background: rgba(212, 176, 106, 0.06); }
.theme-club .nav-toggle span { background: var(--champagne); }
.theme-club .mobile-menu { background: var(--club-bg); }
.theme-club .mobile-menu a:not(.btn) { color: var(--champagne); border-bottom-color: var(--club-line); }
body.theme-club.menu-open header.top { background: var(--club-bg) !important; }
body.theme-club.menu-open header.top .brand, body.theme-club.menu-open header.top nav.top-nav a { color: var(--champagne) !important; }
body.theme-club.menu-open .nav-toggle span { background: var(--champagne) !important; }
.theme-club .site-footer { background: #080706; border-top-color: var(--club-line); }

/* Forms on club pages (application form, confirmation) */
.theme-club .card { background: var(--club-elev); border-color: var(--club-line); box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8); }
.theme-club .card.gold-frame { border-top-color: var(--gold); }
.theme-club form label { color: var(--champagne-faint); }
.theme-club form input, .theme-club form textarea { background: #0d0c0a; border-color: var(--club-line); color: var(--champagne); }
.theme-club form input:focus, .theme-club form textarea:focus { border-color: var(--gold); }
.theme-club form input::placeholder { color: var(--champagne-faint); }
.theme-club .btn:not(.btn-gold):not(.secondary) { background: var(--gold); border-color: var(--gold); color: #16130a; }
.theme-club .btn:not(.btn-gold):not(.secondary):hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.theme-club .back-link { color: var(--champagne-faint); }
.theme-club .back-link:hover { color: var(--champagne); }
.form-crest { width: 84px; margin: 0 0 var(--sp-5); }

/* ---------- Crest ---------- */
.crest { display: block; width: 100%; height: auto; overflow: visible; direction: ltr; unicode-bidi: isolate; }
.crest .crest-line { fill: none; stroke: var(--gold); stroke-width: 1.2; }
.crest .crest-line.thin { stroke-width: 0.6; opacity: 0.7; }
.crest .crest-ring-text {
  fill: var(--gold-bright); font-family: var(--font-latin-serif); font-size: 8.6px; letter-spacing: 2.4px; direction: ltr;
  transform-box: view-box; transform-origin: 100px 100px; animation: crestSpin 60s linear infinite;
}
.crest .crest-mono { fill: var(--champagne); font-family: var(--font-latin-serif); font-size: 34px; letter-spacing: 5px; }
.crest .crest-sub { fill: var(--gold-bright); font-family: var(--font-latin-serif); font-size: 10px; letter-spacing: 7px; }
@keyframes crestSpin { to { transform: rotate(-360deg); } }

/* ---------- Club page base ---------- */
.club { background: var(--club-bg); }
.club-section { padding: var(--sp-10) 0; position: relative; }
.club-section-alt { background: var(--club-elev); border-top: 1px solid var(--club-line); border-bottom: 1px solid var(--club-line); }
.club h2 { font-size: 2.6rem; line-height: 1.3; }
.club .section-head { max-width: 720px; }
.club .img-slot {
  background:
    linear-gradient(135deg, rgba(212, 176, 106, 0.04) 25%, transparent 25%, transparent 50%, rgba(212, 176, 106, 0.04) 50%, rgba(212, 176, 106, 0.04) 75%, transparent 75%) 0 0 / 16px 16px,
    #15130f;
  border-color: var(--club-line);
}
.club .img-slot span { color: var(--champagne-faint); }
.club-numeral { font-family: var(--font-latin-serif); color: var(--gold); font-size: 1.15rem; letter-spacing: 0.1em; }
.club-text-link {
  color: var(--champagne); text-decoration: none; font-size: 0.95rem;
  border-bottom: 1px solid var(--gold-dim); padding-bottom: 4px; transition: border-color 0.2s ease, color 0.2s ease;
}
.club-text-link:hover { color: var(--gold-bright); border-color: var(--gold-bright); }
.center-cta .club-text-link { margin-inline-start: var(--sp-6); }
.club .tier-features li { color: var(--champagne); }

/* ---------- 1. Hero ---------- */
.club-hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--club-bg); }
.club-hero-media { position: absolute; inset: 0; }
.club-hero-media .club-hero-img { position: absolute; inset: 0; height: 100%; border: 0; }
.club-hero-media .club-hero-img span { position: absolute; bottom: 28px; inset-inline-end: 32px; font-size: 0.72rem; }
.club-hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(11, 10, 9, 0.35) 0%, rgba(11, 10, 9, 0.88) 62%, var(--club-bg) 100%),
    linear-gradient(180deg, rgba(11, 10, 9, 0.6) 0%, transparent 30%, transparent 70%, var(--club-bg) 100%);
}
.club-hero-content { position: relative; z-index: 2; text-align: center; max-width: 820px; padding: 150px var(--sp-5) var(--sp-9); }
.crest-hero { width: 124px; margin: 0 auto var(--sp-6); }
.club-kicker { font-size: 0.8rem; letter-spacing: 0.3em; color: var(--gold-bright); margin-bottom: var(--sp-5); }
.club-hero h1 { font-size: 4.2rem; line-height: 1.2; margin: 0 0 var(--sp-5); color: var(--champagne); }
.club-hero h1 span { color: var(--gold-bright); }
.club-hero-content > p { color: var(--champagne-dim); font-size: 1.15rem; line-height: 1.9; max-width: 54ch; margin: 0 auto var(--sp-7); }
.club-hero-actions { display: flex; align-items: center; justify-content: center; gap: var(--sp-6); flex-wrap: wrap; }
.club-scroll-cue {
  position: absolute; bottom: 36px; left: 50%; width: 1px; height: 56px; z-index: 2;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: cue 2.4s var(--ease-out) infinite;
}
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Marquee ---------- */
.club-marquee { overflow: hidden; border-top: 1px solid var(--club-line); border-bottom: 1px solid var(--club-line); padding: 20px 0; background: var(--club-bg); }
.club-marquee-track { display: inline-flex; align-items: center; gap: 34px; white-space: nowrap; width: max-content; animation: marquee 48s linear infinite; }
.club-marquee span { font-family: var(--font-display); font-size: 1.05rem; color: var(--champagne-dim); letter-spacing: 0.04em; }
.club-marquee i { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); display: inline-block; }
@keyframes marquee { to { transform: translateX(50%); } }

/* ---------- 2. Manifesto ---------- */
.club-manifesto { text-wrap: balance; font-family: var(--font-display); font-size: 3rem; line-height: 1.4; color: var(--champagne); margin: 0 0 var(--sp-6); font-weight: 600; }
.club-manifesto span { display: block; color: var(--gold-bright); }

/* ---------- 3. Pillars ---------- */
.club-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.club-pillar { border-top: 1px solid var(--gold-dim); padding-top: var(--sp-6); }
.club-pillar h3 { font-family: var(--font-display); font-size: 1.6rem; margin: var(--sp-4) 0 var(--sp-3); }
.club-pillar p { color: var(--champagne-dim); margin: 0; line-height: 1.85; }

/* ---------- 4. Gatherings ---------- */
.itinerary { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
.trip { border: 1px solid var(--club-line); background: var(--club-elev); position: relative; transition: border-color 0.3s ease, transform 0.4s var(--ease-out); }
.trip:hover { transform: translateY(-4px); border-color: var(--gold-dim); }
.trip .img-slot { border: 0; border-bottom: 1px solid var(--club-line); }
.trip.is-next { border-color: var(--gold); }
.trip.is-next::before {
  content: "NEXT"; position: absolute; top: 14px; inset-inline-start: 14px; z-index: 1;
  font-family: var(--font-latin-serif); font-size: 0.7rem; letter-spacing: 0.3em;
  color: #16130a; background: var(--gold); padding: 4px 10px;
}
.trip-body { padding: var(--sp-5); display: flex; flex-direction: column; gap: 6px; }
.trip-num { font-family: var(--font-latin-serif); color: var(--gold); font-size: 1.4rem; }
.trip-label { color: var(--champagne-faint); font-size: 0.82rem; letter-spacing: 0.08em; }
.trip-dest { font-family: var(--font-display); font-size: 1.5rem; color: var(--champagne); filter: blur(7px); user-select: none; margin: 4px 0; }
.trip-lock { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-bright); font-size: 0.82rem; }
.lock-icon { position: relative; width: 11px; height: 9px; background: var(--gold); border-radius: 1px; margin-top: 5px; }
.lock-icon::before { content: ""; position: absolute; left: 2px; top: -6px; width: 5px; height: 6px; border: 1.5px solid var(--gold); border-bottom: 0; border-radius: 4px 4px 0 0; }

/* ---------- 5. The evening ---------- */
.evening { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-9); align-items: center; }
.evening-gallery { display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: 220px 220px; gap: var(--sp-3); }
.evening-gallery .g-tall { grid-row: 1 / 3; height: 100%; }
.evening-gallery .g-wide, .evening-gallery .g-small { height: 100%; }
.evening-list { list-style: none; padding: 0; margin: var(--sp-6) 0 0; }
.evening-list li { display: flex; align-items: center; gap: var(--sp-4); padding: var(--sp-3) 0; border-bottom: 1px solid var(--club-line); color: var(--champagne); }
.evening-list li::before { content: ""; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ---------- 6. Who's in the room ---------- */
.room-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--gold-dim); }
.room-list li { display: flex; justify-content: space-between; align-items: baseline; gap: var(--sp-5); padding: var(--sp-5) 0; border-bottom: 1px solid var(--club-line); }
.room-list strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--champagne); white-space: nowrap; }
.room-list span { color: var(--champagne-dim); text-align: end; font-size: 0.95rem; }
.seats { display: flex; align-items: baseline; gap: var(--sp-3); margin-top: var(--sp-6); }
.seats strong { font-family: var(--font-latin-serif); font-size: 3.2rem; color: var(--gold-bright); line-height: 1; }
.seats span { color: var(--champagne-dim); }

/* ---------- 7. House rules ---------- */
.club-code { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-5); }
.club-code li { border: 1px solid var(--club-line); padding: var(--sp-6) var(--sp-5); background: var(--club-bg); }
.club-code h3 { font-family: var(--font-display); font-size: 1.35rem; margin: var(--sp-4) 0 var(--sp-2); }
.club-code p { margin: 0; color: var(--champagne-dim); font-size: 0.92rem; line-height: 1.8; }

/* ---------- 8. Membership + card ---------- */
.membership { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-9); align-items: center; }
.member-card-wrap { perspective: 1200px; }
.member-card {
  position: relative; aspect-ratio: 1.586; border-radius: 18px; overflow: hidden;
  padding: 28px 30px; display: flex; flex-direction: column; justify-content: space-between;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212, 176, 106, 0.16), transparent 55%),
    linear-gradient(135deg, #1d1a15 0%, #0b0a08 55%, #17140f 100%);
  border: 1px solid rgba(212, 176, 106, 0.35);
  box-shadow: 0 60px 100px -40px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform-style: preserve-3d; transition: transform 0.5s var(--ease-out);
  direction: ltr;
}
.member-card::after {
  content: ""; position: absolute; inset: -50%; pointer-events: none;
  background: linear-gradient(115deg, transparent 40%, rgba(236, 227, 210, 0.09) 50%, transparent 60%);
  animation: sheen 6s ease-in-out infinite;
}
@keyframes sheen { 0%, 20% { transform: translateX(-40%); } 60%, 100% { transform: translateX(40%); } }
.member-card-top { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.mc-brand {
  font-family: var(--font-latin-serif); font-size: 1.15rem; letter-spacing: 0.34em;
  background: linear-gradient(180deg, #f2dca4 0%, #b8944f 55%, #e6c783 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mc-chip {
  width: 44px; height: 34px; border-radius: 6px;
  background: linear-gradient(135deg, #e6c783, #9c7a3c 60%, #d8b56e);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
  position: relative;
}
.mc-chip::before, .mc-chip::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: rgba(0, 0, 0, 0.25); }
.mc-chip::before { top: 11px; } .mc-chip::after { top: 22px; }
.mc-crest { position: absolute; right: 26px; top: 50%; transform: translateY(-50%); width: 104px; opacity: 0.28; }
.member-card-bottom {
  display: flex; justify-content: space-between; position: relative; z-index: 1;
  font-family: var(--font-latin-serif); font-size: 0.78rem; letter-spacing: 0.3em; color: var(--champagne-dim);
}
.membership-price { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-bright); margin: var(--sp-2) 0 var(--sp-5); padding-bottom: var(--sp-5); border-bottom: 1px solid var(--club-line); }
.membership-info .tier-features { margin-bottom: var(--sp-6); }
.membership-note { display: block; margin-top: var(--sp-4); color: var(--champagne-faint); font-size: 0.85rem; }

/* ---------- 9. Steps inside the club page ---------- */
.club .club-steps h3 { color: var(--champagne); }
.club .club-steps p { color: var(--champagne-dim); }

/* ---------- 10. FAQ ---------- */
.narrow-faq { max-width: 860px; }
.club-faq details { border-bottom: 1px solid var(--club-line); }
.club-faq details:first-child { border-top: 1px solid var(--gold-dim); }
.club-faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: var(--sp-5);
  padding: var(--sp-5) 0; font-family: var(--font-display); font-size: 1.3rem; color: var(--champagne);
}
.club-faq summary::-webkit-details-marker { display: none; }
.club-faq summary::after { content: "+"; color: var(--gold); font-family: var(--font-latin-serif); font-size: 1.6rem; line-height: 1; transition: transform 0.3s var(--ease-out); }
.club-faq details[open] summary::after { transform: rotate(45deg); }
.club-faq details p { margin: 0 0 var(--sp-5); color: var(--champagne-dim); line-height: 1.9; max-width: 70ch; }

/* ---------- 11. Final ---------- */
.club-final { padding: 160px 0; text-align: center; background: radial-gradient(ellipse at 50% 60%, rgba(184, 148, 79, 0.1), transparent 60%), var(--club-bg); border-top: 1px solid var(--club-line); }
.crest-final { width: 132px; margin: 0 auto var(--sp-7); }
.club-final h2 { font-size: 3.2rem; margin: 0 0 var(--sp-3); }
.club-final p { color: var(--champagne-dim); font-size: 1.15rem; margin: 0 0 var(--sp-7); }

/* ---------- Club responsive ---------- */
@media (max-width: 1024px) {
  .club-pillars, .itinerary { grid-template-columns: repeat(2, 1fr); }
  .club-code { grid-template-columns: repeat(2, 1fr); }
  .evening, .membership { grid-template-columns: 1fr; gap: var(--sp-8); }
  .member-card-wrap { max-width: 460px; margin: 0 auto; width: 100%; }
}
@media (max-width: 760px) {
  .club-section { padding: var(--sp-9) 0; }
  .club h2 { font-size: 1.9rem; }
  .club-hero h1 { font-size: 2.6rem; }
  .club-manifesto { font-size: 2rem; }
  .club-final h2 { font-size: 2.1rem; }
  .club-code { grid-template-columns: 1fr; }
  .room-list li { flex-direction: column; gap: 4px; }
  .room-list span { text-align: start; }
  .evening-gallery { grid-template-rows: 160px 160px; }
  .center-cta .club-text-link { display: inline-block; margin: var(--sp-5) 0 0; }
  .club-hero-actions .btn { width: 100%; }
}
@media (max-width: 480px) {
  .itinerary, .club-pillars {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 78%;
    overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: var(--sp-3);
    margin-inline: calc(var(--sp-5) * -1); padding-inline: var(--sp-5);
  }
  .itinerary > *, .club-pillars > * { scroll-snap-align: start; }
}
@media (prefers-reduced-motion: reduce) {
  .crest .crest-ring-text, .club-marquee-track, .member-card::after, .club-scroll-cue { animation: none; }
}

.club h2, .club-hero h1, .club-final h2, .positioning, .hero-content h1 { text-wrap: balance; }

/* ---------- Admin toolbar ---------- */
.admin-toolbar { display: flex; gap: var(--sp-3); align-items: center; flex-wrap: wrap; margin-bottom: var(--sp-4); }
.admin-search { display: flex; gap: var(--sp-2); align-items: center; flex: 1; min-width: 260px; }
.admin-search input { flex: 1; padding: 10px 14px; border: 1px solid var(--border); background: #fff; font-family: var(--font-sans); font-size: 0.95rem; }
.admin-search input:focus { outline: none; border-color: var(--ink); }
.admin-search .btn, .admin-export { width: auto; padding: 10px 20px; font-size: 0.88rem; }
.admin-clear { color: var(--text-dim); font-size: 0.85rem; }
.stat-revenue { background: var(--deep); border-color: var(--deep); }
.stat-revenue .num { color: var(--gold-bright); }
.stat-revenue .label { color: rgba(255, 255, 255, 0.55); }

/* ---------- Course page: the $100 offer, first thing on the tab ---------- */
.offer-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 20% 30%, rgba(184, 148, 79, 0.12), transparent 55%), var(--deep);
  color: #fff; padding: 150px 0 var(--sp-9);
}
.offer-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-8); align-items: center; }
.offer-text .eyebrow { color: var(--gold-bright); }
.offer-text h1 { color: #fff; font-size: 3.4rem; line-height: 1.25; margin: 0 0 var(--sp-5); }
.offer-text h1 span { color: var(--gold-bright); }
.offer-sub { color: rgba(255, 255, 255, 0.65); font-size: 1.15rem; line-height: 1.9; max-width: 46ch; margin: 0 0 var(--sp-7); }
.offer-actions { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.offer-note { color: rgba(255, 255, 255, 0.45); font-size: 0.88rem; }
.offer-card {
  position: relative; background: var(--bg-card); color: var(--ink);
  padding: var(--sp-7) var(--sp-6) var(--sp-6); border-top: 3px solid var(--gold);
  box-shadow: 0 50px 90px -40px rgba(0, 0, 0, 0.8);
}
.offer-badge {
  position: absolute; top: -14px; inset-inline-start: var(--sp-6);
  background: var(--gold); color: #16130a; font-size: 0.78rem; font-weight: 700; padding: 5px 14px;
}
.offer-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.offer-price { font-family: var(--font-display); font-size: 4rem; line-height: 1.1; color: var(--ink); margin-top: var(--sp-2); }
.offer-once { color: var(--text-faint); font-size: 0.9rem; padding-bottom: var(--sp-5); border-bottom: 1px solid var(--border); }
.offer-list { list-style: none; padding: 0; margin: var(--sp-5) 0 var(--sp-6); }
.offer-list li { position: relative; padding: 7px 0; padding-inline-start: 26px; font-size: 0.95rem; }
.offer-list li::before {
  content: ""; position: absolute; inset-inline-start: 2px; top: 15px;
  width: 9px; height: 5px; border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(-45deg);
}
@media (max-width: 900px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-text h1 { font-size: 2.4rem; }
  .offer-hero { padding: 120px 0 var(--sp-8); }
  .offer-actions .btn { width: 100%; }
}
