/* ============================================================
   Lusitanos Elite Club — Stylesheet
   Luxury dark · heraldic gold & crimson · Portuguese royal aura
   ============================================================ */

:root {
  /* Brand spec — Lusitanos_Funnel_Page_Build_Brief.md
     Strict 4-color palette. Every dark surface uses --bg (oxblood).
     Every cream surface uses --cream. No other reds, no other golds. */
  --bg:        #2a0a0e; /* oxblood — dominant dark bg */
  --bg-2:      #2a0a0e; /* alias to --bg — flattened, no oxblood variants */
  --bg-3:      #2a0a0e; /* alias to --bg — flattened, no oxblood variants */
  --cream:     #f1e8d4;
  --ink:       #f1e8d4; /* cream as ink-on-dark */
  --ink-soft:  rgba(241, 232, 212, 0.72);
  --ink-mute:  rgba(241, 232, 212, 0.5);
  --gold:      #b8924a; /* brief — borders / eyebrows / details */
  --gold-hi:   #d4b378; /* brief — bright gold for display text */
  --line:      rgba(184, 146, 74, 0.32);
  --line-soft: rgba(241, 232, 212, 0.10);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Lora", Georgia, "Times New Roman", serif;

  --radius: 6px;
  --radius-lg: 14px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --dur: .6s;
}

/* Legacy [data-theme="crimson"] selector kept as no-op so existing
   markup (<html data-theme="crimson">) still inherits :root. */
html[data-theme="crimson"] {}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: none; }

/* Custom Cursor */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.cursor.is-hover { width: 56px; height: 56px; background: rgba(184,146,74,.08); }
@media (hover: none) { .cursor, .cursor-dot { display: none; } body, button, a { cursor: auto; } }

/* During the preloader: hide the custom cursor + restore the
   default browser cursor. The custom cursor's rAF interpolation
   loop competes with the preloader's blur+drop-shadow animation
   for main-thread time, causing the pointer to feel choppy.
   Showing the default cursor for ~4s avoids the conflict. */
body.is-preloading,
body.is-preloading button,
body.is-preloading a { cursor: auto; }
body.is-preloading .cursor,
body.is-preloading .cursor-dot { display: none; }

/* Film grain overlay */
.grain { display: none; }

/* Selection */
::selection { background: var(--gold); color: var(--bg); }

/* Typography */
.h1, .h2, h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
  /* Balance headline lines so no single word ends up alone. */
  text-wrap: balance;
}
.h2 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 500; }
h3 { font-size: 1.3rem; font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 500; }
em { font-style: italic; color: var(--gold-hi); }

/* Prevent widow words on body paragraphs. */
p, .step__sub, .testi__meta h4, .faq__body, .founder__body p,
.unlock__body p, .quote__text, .section__lead, .hero__sub,
.tulum__sub, .tulum__list li, .tulum__incl li {
  text-wrap: pretty;
}

/* Step-block headlines also get balanced wrapping. */
.step__h, .step__label { text-wrap: balance; }

p { color: var(--ink-soft); font-size: 1.02rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: .6rem;
  position: relative;
}
.eyebrow::before { content: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section__head { margin-bottom: 1rem; max-width: 760px; }
.section__head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head .eyebrow { margin-bottom: .8rem; }
.section__lead { margin-top: 1.2rem; max-width: 620px; font-size: 1.1rem; }
.section__head.center .section__lead { margin-left: auto; margin-right: auto; }

/* ================ Preloader ================ */
.preloader {
  position: fixed; inset: 0;
  z-index: 9998;
  pointer-events: auto;
  background: transparent;
  overflow: hidden;
  contain: strict;
}
.preloader.is-done { pointer-events: none; }
.preloader__panel {
  position: absolute; left: 0; right: 0; height: 50%;
  background: var(--bg);
  transition: transform 1.3s cubic-bezier(.77, 0, .18, 1);
  will-change: transform;
}
.preloader__panel--top { top: 0; }
.preloader__panel--bottom { bottom: 0; }
.preloader.is-done .preloader__panel--top { transform: translateY(-100%); }
.preloader.is-done .preloader__panel--bottom { transform: translateY(100%); }

.preloader__stage {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.2rem;
  transition: opacity .6s ease-out;
}
.preloader.is-done .preloader__stage { opacity: 0; }

.preloader__burst {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 146, 74, 0.28) 0%, rgba(184, 146, 74, 0.08) 32%, rgba(184, 146, 74, 0) 65%);
  transform: scale(0);
  opacity: 0;
  animation: pre-burst 1.6s cubic-bezier(.2, .7, .2, 1) .35s forwards;
  pointer-events: none;
  will-change: transform, opacity;
}
@keyframes pre-burst {
  0% { transform: scale(0); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: scale(1.1); opacity: 0; }
}

.preloader__crest img {
  width: 120px;
  filter: drop-shadow(0 0 40px rgba(184, 146, 74, 0.5)) blur(14px);
  opacity: 0;
  transform: scale(1.6);
  animation: pre-crest 1s cubic-bezier(.2, .7, .2, 1) .1s forwards;
  will-change: filter, transform, opacity;
}
@keyframes pre-crest {
  0%   { opacity: 0; transform: scale(1.6); filter: drop-shadow(0 0 40px rgba(184, 146, 74, 0.5)) blur(14px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 24px rgba(184, 146, 74, 0.35)) blur(0); }
}

.preloader__word {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  letter-spacing: .28em;
  color: var(--gold-hi);
  text-transform: uppercase;
  display: flex;
  padding-left: .28em;
}
.preloader__word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: pre-letter .6s cubic-bezier(.2, .7, .2, 1) forwards;
  will-change: transform, opacity;
}
.preloader__word span:nth-child(1) { animation-delay: 0.75s; }
.preloader__word span:nth-child(2) { animation-delay: 0.82s; }
.preloader__word span:nth-child(3) { animation-delay: 0.89s; }
.preloader__word span:nth-child(4) { animation-delay: 0.96s; }
.preloader__word span:nth-child(5) { animation-delay: 1.03s; }
.preloader__word span:nth-child(6) { animation-delay: 1.10s; }
.preloader__word span:nth-child(7) { animation-delay: 1.17s; }
.preloader__word span:nth-child(8) { animation-delay: 1.24s; }
.preloader__word span:nth-child(9) { animation-delay: 1.31s; }
@keyframes pre-letter {
  to { opacity: 1; transform: translateY(0); }
}

.preloader__rule {
  display: flex; align-items: center; justify-content: center;
  width: min(420px, 60vw);
  height: 1px;
  gap: 10px;
}
.preloader__rule span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 146, 74, 0) 0%, rgba(184, 146, 74, 0.7) 50%, rgba(184, 146, 74, 0) 100%);
  transform: scaleX(0);
  opacity: 0;
  animation: pre-rule .9s cubic-bezier(.2, .7, .2, 1) 1.55s forwards;
  will-change: transform, opacity;
}
.preloader__rule span:first-child { transform-origin: right center; }
.preloader__rule span:last-child { transform-origin: left center; }
@keyframes pre-rule {
  to { transform: scaleX(1); opacity: 1; }
}

.preloader__tag {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0;
  transform: translateY(6px);
  animation: pre-tag .7s ease-out 1.9s forwards;
}
@keyframes pre-tag {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .preloader__burst,
  .preloader__crest img,
  .preloader__word span,
  .preloader__rule span,
  .preloader__tag { animation: none; opacity: 1; transform: none; filter: none; }
}

/* ================ Navigation ================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(42, 10, 14, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.nav__brand { display: flex; align-items: center; gap: .7rem; }
.nav__crest { width: 34px; height: 34px; }
.nav__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav__links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative;
  color: var(--ink-soft);
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .4s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .7rem 1.3rem;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.nav__cta svg { width: 14px; height: 14px; }
.nav__cta:hover { background: transparent; color: var(--gold); transform: translateY(-1px); }

.nav__toggle { display: none; width: 32px; height: 32px; position: relative; }
.nav__toggle span {
  position: absolute; left: 4px; right: 4px;
  height: 1.5px; background: var(--ink);
  transition: transform .35s var(--ease), top .35s var(--ease), opacity .25s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 10px; }
.nav__toggle span:nth-child(2) { top: 16px; }
.nav__toggle span:nth-child(3) { top: 22px; }
.nav__toggle.is-open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 1.2rem 0; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--ink);
}
.mobile-menu__cta {
  display: inline-block;
  margin-top: 1rem;
  padding: .8rem 2rem;
  background: var(--gold);
  color: var(--bg) !important;
  font-family: var(--sans) !important;
  font-size: 1rem !important;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ================ HERO ================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 0 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__backdrop {
  position: absolute; inset: 0; z-index: 0;
  background: var(--bg);
}
.hero__backdrop::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('assets/images/hero-bg.jpg?v=2');
  background-size: cover;
  background-position: center;
  opacity: 0.32;
}
.hero__vignette {
  position: absolute; inset: 0; z-index: 1;
  /* Solid oxblood scrim — fades photo at edges, keeps section color
     pure flat oxblood (no mix-blend-mode that would shift hue). */
  background: radial-gradient(ellipse at center, transparent 30%, rgba(42, 10, 14, 0.85) 80%, var(--bg) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
/* Hero eyebrow oval removed sitewide per client. Kept selector
   so the markup doesn't error; just hidden. */
.hero__eyebrow { display: none; }
.hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: .3; } }

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 7rem);
  /* Italic Cormorant has a tall descender on g/p/y. Need 1.1+ so
     the 'g' in 'High Performers' isn't clipped by the line box. */
  line-height: 1.1;
  padding-bottom: 0.12em;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em; /* room for italic descenders */
}
.hero__title .line:nth-child(2) span { color: var(--gold-hi); font-style: italic; font-weight: 300; }

.hero__sub {
  max-width: 560px;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 3rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; }

.hero__proof {
  display: flex; align-items: center;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: .75rem; }
.stat__value {
  display: inline-flex;
  align-items: baseline;
  gap: .15rem;
  font-family: var(--serif);
  color: var(--gold);
  line-height: 1;
}
.stat__num {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: -.01em;
}
.stat__plus,
.stat__prefix {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  opacity: .85;
}
.stat__prefix { margin-right: .05em; }
.stat__label {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.stat__sep { width: 1px; height: 56px; background: var(--line-soft); }

/* Urgency styling for 'Spots Left' stat */
.stat--urgent .stat__num,
.stat--urgent .stat__plus {
  color: var(--gold-hi);
  animation: stat-pulse 2.4s ease-in-out infinite;
}
.stat--urgent .stat__label {
  position: relative;
  color: var(--gold);
}
.stat--urgent .stat__label::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-hi);
  margin-right: 0.5rem;
  vertical-align: middle;
  box-shadow: 0 0 8px var(--gold-hi);
  animation: stat-pulse 2.4s ease-in-out infinite;
}
@keyframes stat-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.hero__scroll {
  position: absolute;
  right: 32px; bottom: 3rem;
  display: flex; flex-direction: column; align-items: center;
  gap: .8rem;
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  z-index: 3;
}
.hero__scroll-line { width: 1px; height: 50px; background: var(--line); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; top: -50%; left: 0;
  width: 1px; height: 50%;
  background: var(--gold);
  animation: scrollPulse 2s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { top: -50%; } 100% { top: 100%; }
}

.hero__marquee {
  position: absolute; bottom: 0; left: 0; right: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(42, 10, 14, 0.55);
  backdrop-filter: blur(8px);
  z-index: 3;
  overflow: hidden;
}
.marquee { padding: 1.1rem 0; }
.marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 120s linear infinite;
  will-change: transform;
}
.marquee__set {
  display: flex; align-items: center;
  gap: 2.75rem;
  padding-right: 2.75rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.marquee__set span { display: inline-block; }
.marquee__set span:nth-child(even) { opacity: .45; font-size: .7rem; letter-spacing: 0; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: 1rem 1.8rem;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.btn--primary { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-hi); transform: translateY(-2px); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(241,232,212,.22); }
.btn--ghost:hover { background: rgba(241,232,212,.06); border-color: var(--gold); color: var(--gold); }
.btn--lg { padding: 1.2rem 2.2rem; font-size: .88rem; }

/* ================ VSL ================ */
.vsl { padding: 1.4rem 0 0.8rem; position: relative; }
.vsl__frame {
  position: relative;
  max-width: 1040px;
  margin: 3rem auto 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: 0 40px 100px -40px rgba(184,146,74,.28), 0 0 0 1px rgba(184,146,74,.08) inset;
}
.vsl__shine {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184,146,74,.10), transparent 65%);
  border-radius: var(--radius-lg);
  pointer-events: none;
  opacity: 0;
  transition: opacity .8s var(--ease);
}
.vsl__frame:hover .vsl__shine { opacity: 1; }
.vsl__embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.vsl__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ================ ABOUT ================ */
.about { padding: 1.6rem 0; position: relative; background: var(--bg-2); }
.about::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .4;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
}
.about__img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.8);
  transition: transform .8s var(--ease);
}
.about__img--1 { top: 0; left: 0; width: 60%; height: 75%; z-index: 1; }
.about__img--2 { bottom: 0; right: 0; width: 55%; height: 55%; z-index: 2; border: 3px solid var(--bg-2); }
.about__img--3 { top: 30%; right: 10%; width: 38%; height: 35%; z-index: 3; border: 3px solid var(--bg-2); display: none; }
.about__media:hover .about__img--1 { transform: translate(-6px, -6px); }
.about__media:hover .about__img--2 { transform: translate(6px, 6px); }

.about__badge {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 90px; height: 90px;
  background: var(--bg);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 4;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.7);
}
.about__badge img { width: 58%; }

.about__body .eyebrow { margin-bottom: 1rem; }
.about__body .h2 { margin-bottom: 1.8rem; }
.about__body p { margin-bottom: 1.3rem; }
.about__signature {
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
  gap: .2rem;
}
.about__sig-name { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); font-style: italic; }
.about__sig-title { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); }

/* ================ PILLARS ================ */
.pillars { padding: 1.6rem 0; }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.pillar {
  padding: 3rem 2rem;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  transition: background .5s var(--ease);
  position: relative;
}
.pillar:last-child { border-right: 0; }
.pillar:hover { background: rgba(184,146,74,.03); }
.pillar:hover .pillar__num { color: var(--gold); }
.pillar__num {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: .3em;
  color: var(--ink-mute);
  margin-bottom: 2.5rem;
  transition: color .4s var(--ease);
}
.pillar h3 { margin-bottom: 1rem; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.pillar p { font-size: .95rem; color: var(--ink-soft); }

/* ================ EXPERIENCES ================ */
.experiences { padding: 1.6rem 0; background: var(--bg-2); position: relative; }
.exp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.exp-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--bg-3);
}
.exp-card--wide { grid-column: span 3; aspect-ratio: 21 / 9; }
/* When a card is alone on its final row, center it in the grid */
.exp-card--solo { grid-column: 2 / 3; }
.exp-card__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
  filter: grayscale(25%) brightness(.75);
}
.exp-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(42,10,14,.92) 100%);
  z-index: 1;
}
.exp-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.8rem;
  z-index: 2;
  display: flex; flex-direction: column; gap: .6rem;
}
.exp-card__tag {
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.exp-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  padding-right: 3rem;
  transition: color .3s var(--ease);
}
.exp-card__play {
  position: absolute;
  right: 1.5rem; bottom: 1.5rem;
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
  z-index: 3;
}
.exp-card__play svg { width: 14px; height: 14px; margin-left: 2px; }
.exp-card:hover .exp-card__media { transform: scale(1.06); filter: grayscale(0%) brightness(.9); }
.exp-card:hover .exp-card__play { background: var(--gold); color: var(--bg); transform: scale(1.08); }
.exp-card:hover h3 { color: var(--gold-hi); }

/* ================ QUOTE STRIP ================ */
.quote {
  padding: 1.6rem 0;
  background:
    radial-gradient(ellipse at center, rgba(42,10,14,.18), transparent 60%),
    var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote::before, .quote::after {
  content: ""; position: absolute; left: 5%; right: 5%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .4;
}
.quote::before { top: 0; } .quote::after { bottom: 0; }
.quote__mark {
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 0;
  color: var(--gold);
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.quote__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 880px;
  margin: 0 auto 1.6rem;
}
.quote__by { font-size: .78rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }

/* ================ MASTERMINDS HELD BY (carousel) ================ */
.carousel-sec {
  padding: 1.6rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.carousel-sec__head { text-align: center; margin-bottom: 3rem; }
.carousel-sec__head .h2 { margin-bottom: .8rem; }
.carousel-sec__sub {
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.marq {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marq + .marq { margin-top: 1.4rem; }

.marq__track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: marq-scroll var(--marq-duration, 60s) linear infinite;
  will-change: transform;
}
.marq--reverse .marq__track { animation-direction: reverse; }
/* Pause-on-hover only on devices that actually have a mouse.
   On phones the :hover state can stick after a tap (especially
   after returning from an external link), permanently freezing
   the marquee. Touch devices: never pause. */
@media (hover: hover) {
  .marq:hover .marq__track { animation-play-state: paused; }
}
.marq.is-paused .marq__track { animation-play-state: paused; }

@keyframes marq-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Split layout: photo area on top, text stack below. */
.guest {
  position: relative;
  flex: 0 0 auto;
  width: 300px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  cursor: pointer;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.guest:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
}
.guest__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  filter: grayscale(8%) brightness(.95);
  transition: transform 1s var(--ease), filter .5s var(--ease);
}
.guest__photo--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: .05em;
  filter: none;
}
a.guest { text-decoration: none; color: inherit; }
.guest:hover .guest__photo {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(1);
}
.guest__meta {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .12rem;
}
.guest__meta h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0;
}
.guest__handle {
  display: block;
  font-size: .8rem;
  color: var(--ink-mute);
  font-style: italic;
  margin-bottom: .6rem;
}
.guest__tag {
  display: block;
  font-size: .85rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .guest { width: 240px; }
  .carousel-sec { padding: 5rem 0 3rem; }
}

/* ================ TESTIMONIALS ================ */
.testimonials { padding: 1.6rem 0; }
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.testi {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.testi:hover { transform: translateY(-4px); border-color: var(--line); }
.testi__video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.testi__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.testi__meta { padding: 1.4rem 1.5rem 1.7rem; }
.testi__rev {
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}
.testi__meta h4 { font-family: var(--serif); font-size: 1.15rem; line-height: 1.3; font-weight: 500; }
.testi__more {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.testi__more .btn { min-width: 240px; justify-content: center; }
@media (max-width: 600px) {
  .testi__more { flex-direction: column; }
  .testi__more .btn { width: 100%; max-width: 320px; }
}

/* ================ GALLERY ================ */
.gallery { padding: 1.6rem 0; background: var(--bg); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  margin-bottom: 3rem;
}
.gal {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--bg-2);
  cursor: pointer;
  grid-row: span 1;
}
.gal--tall { grid-row: span 2; }
.gal--wide { grid-column: span 1; grid-row: span 2; }
.gal__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
  filter: grayscale(10%) brightness(.88);
}
.gal::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(42,10,14,.7) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.gal:hover .gal__img { transform: scale(1.07); filter: grayscale(0%) brightness(1); }
.gal:hover::after { opacity: 1; }
.gal__tag {
  position: absolute;
  left: 1rem; bottom: 1rem;
  z-index: 2;
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .4rem .8rem;
  background: rgba(42, 10, 14, 0.75);
  border: 1px solid var(--line);
  border-radius: 2px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gal:hover .gal__tag { opacity: 1; transform: translateY(0); }

.gallery__cta { text-align: center; }
.btn--pill { border-radius: 999px; padding: 1rem 2.4rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(42, 10, 14, 0.96);
  backdrop-filter: blur(10px);
  z-index: 200;
  padding: 4rem 2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__close {
  position: fixed;
  top: 1.6rem; right: 1.8rem;
  width: 48px; height: 48px;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--ink);
  background: rgba(42, 10, 14, 0.7);
  border: 1px solid var(--line);
  border-radius: 50%;
  z-index: 10;
  transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.lightbox__close:hover { color: var(--gold); border-color: var(--gold); transform: rotate(90deg); }
.lightbox__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* dense: backfill the holes left when a 2-col lb-wide tile wraps */
  grid-auto-flow: dense;
  gap: .8rem;
}
.lightbox__grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border: 1px solid var(--line-soft);
}
.lightbox__grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 40px -10px rgba(184, 146, 74, 0.4);
  border-color: var(--gold);
}
.lightbox__grid img.lb-wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

@media (max-width: 820px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gal--tall, .gal--wide { grid-row: span 2; }
  .lightbox__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gal, .gal--tall, .gal--wide { grid-row: span 1; grid-column: span 1; }
  .lightbox__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================ APPLY ================ */
.apply {
  padding: 1.6rem 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.apply__inner { text-align: center; max-width: 780px; margin: 0 auto; position: relative; }
.apply__glow { display: none; }
.apply .h2 { margin-bottom: 1.4rem; }
.apply p { font-size: 1.12rem; max-width: 560px; margin: 0 auto 2.4rem; }
.apply__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 4rem; }
.apply__criteria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
  padding-top: 2rem;
  text-align: left;
}
.apply__criteria > div {
  padding: 0 1.4rem;
  border-right: 1px solid var(--line-soft);
}
.apply__criteria > div:last-child { border-right: 0; }
.apply__k {
  display: block;
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.apply__criteria span:last-child { color: var(--ink-soft); font-size: .95rem; }

/* ================ FAQ ================ */
.faq { padding: 1.6rem 0; }
.faq__wrap { max-width: 860px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line-soft); }
.faq__item {
  border-bottom: 1px solid var(--line-soft);
  padding: 1.8rem 0;
  transition: padding .4s var(--ease);
}
.faq__item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold); }
.faq__icon {
  position: relative;
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px;
  background: var(--gold);
  transition: transform .35s var(--ease);
}
.faq__icon::after { transform: rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: rotate(0); }
.faq__body {
  color: var(--ink-soft);
  margin-top: 1rem;
  padding-right: 3rem;
  font-size: 1.02rem;
}
.faq__item[open] { padding-bottom: 2.4rem; }

/* ================ FINAL CTA ================ */
.final {
  padding: 1.6rem 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.final__crest { width: 90px; filter: drop-shadow(0 0 30px rgba(184,146,74,.45)); }
.final__h {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.02em;
}
.final__h em { color: var(--gold); }
.final__sub {
  margin-top: -1rem;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ================ FOOTER ================ */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: 5rem 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 4rem;
}
.footer__brand { display: flex; align-items: flex-start; gap: 1rem; }
.footer__brand img { width: 56px; }
.footer__name { font-family: var(--serif); font-size: 1.3rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .3rem; }
.footer__tag { font-size: .9rem; color: var(--ink-mute); max-width: 240px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.footer__col h5 {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
  font-weight: 500;
}
.footer__col a {
  display: block;
  color: var(--ink-soft);
  font-size: .94rem;
  padding: .35rem 0;
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.footer__col a:hover { color: var(--gold); padding-left: 6px; }
.footer__dm {
  display: block;
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.4;
  color: var(--gold-hi);
  max-width: 230px;
}
.footer__col a.footer__dm-link {
  display: inline-block;
  margin-top: .7rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: .02em;
  color: var(--gold);
}
.footer__col a.footer__dm-link:hover { color: var(--gold-hi); padding-left: 0; }
.footer__bar {
  border-top: 1px solid var(--line-soft);
  padding: 1.6rem 0;
  display: flex; justify-content: space-between;
  font-size: .78rem;
  color: var(--ink-mute);
  letter-spacing: .1em;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 32px; padding-right: 32px;
}

/* ================ Reveal animation ================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.hero__title .line.reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: .1s;
}
.hero__title .line.reveal.is-visible span { opacity: 1; transform: translateY(0); }
.hero__title .line:nth-child(2).reveal span { transition-delay: .3s; }

/* ================ INSIDE THE CLUB ================ */
.inside { padding: 1.6rem 0; background: var(--bg); position: relative; }
.inside__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}
.inside-card {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}
.inside-card:hover {
  border-color: var(--line);
  transform: translateY(-4px);
}
.inside-card__collage {
  display: grid;
  gap: 6px;
  aspect-ratio: 16 / 10;
  padding: 6px;
  background: var(--bg-3);
}
.inside-card__collage--two { grid-template-columns: 1fr 1fr; }
.inside-card__collage--four { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.inside-card__collage--split {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "a c" "b c";
}
.inside-card__collage--split > :nth-child(1) { grid-area: a; }
.inside-card__collage--split > :nth-child(2) { grid-area: b; }
.inside-card__collage--split > :nth-child(3) { grid-area: c; }
.inside-card__tile {
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  filter: grayscale(15%) brightness(.92);
  transition: filter .5s var(--ease), transform 1s var(--ease);
}
.inside-card:hover .inside-card__tile { filter: grayscale(0%) brightness(1); }
.inside-card__body { padding: 2rem 2.2rem 2.4rem; }
.inside-card__body h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: .9rem;
}
.inside-card__body p {
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.inside-card__more {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 146, 74, 0.35);
  padding-bottom: 2px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.inside-card__more:hover { color: var(--gold-hi); border-bottom-color: var(--gold-hi); }

/* ================ TULUM MASTERMIND (oxblood hero) ================ */
.tulum {
  position: relative;
  padding: 1.6rem 0;
  color: var(--ink);
  overflow: hidden;
  background: var(--bg);
}
.tulum__bg { display: none; }
.tulum__veil { display: none; }
.tulum__inner { position: relative; z-index: 2; }
.tulum__head { text-align: center; margin-bottom: 4rem; max-width: 780px; margin-left: auto; margin-right: auto; }
.tulum__head .h2 { color: var(--ink); }
.tulum__head .h2 em { color: var(--gold-hi); font-style: italic; }
.tulum__sub {
  margin-top: 1.2rem;
  color: rgba(241, 232, 212, 0.82);
  font-size: 1.1rem;
}
.eyebrow--gold { color: var(--gold-hi); }

.tulum__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 980px;
  margin: 0 auto;
}
.tulum__col h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold-hi);
  margin-bottom: 1.5rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(184, 146, 74, 0.3);
  padding-bottom: .8rem;
}
.tulum__list, .tulum__incl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.tulum__list li {
  color: rgba(241, 232, 212, 0.9);
  font-size: .98rem;
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}
.tulum__list li span {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-hi);
  font-size: 1rem;
  margin-bottom: 2px;
}
.tulum__incl li {
  color: rgba(241, 232, 212, 0.92);
  font-size: .98rem;
  line-height: 1.55;
  padding-left: 1.4rem;
  position: relative;
}
.tulum__incl li::before {
  content: "";
  position: absolute;
  left: 0; top: .6em;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.tulum__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  margin-top: 4rem;
}
.tulum__small {
  color: rgba(241, 232, 212, 0.6);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ================ MEMBER WINS MARQUEE ================ */
.wins {
  padding: 1.6rem 0;
  background: var(--bg-2);
  overflow: hidden;
}
.wins__marquee {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.wins__track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: wins-scroll var(--wins-dur, 80s) linear infinite;
}
@keyframes wins-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.wins__item {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.4rem 1.8rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg-3);
  flex: 0 0 auto;
  min-width: 280px;
}
.wins__num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold-hi);
  line-height: 1.1;
}
.wins__name {
  font-size: .85rem;
  color: var(--ink-mute);
  letter-spacing: .06em;
}

/* ================ HEAR FROM THE FOUNDER ================ */
.founder {
  padding: 1.6rem 0;
  background: var(--cream);
  color: var(--bg); /* oxblood text on cream — brief spec */
}
.founder__inner { max-width: 1100px; margin: 0 auto; }
.founder__eyebrow {
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: .4em; /* brief: 0.4em on cream eyebrows */
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0.78;
  margin-bottom: 4rem;
}
.founder__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}
.founder__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 20px 60px -20px rgba(42, 10, 14, 0.35);
}
.founder__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.founder__body {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding-top: 0.3rem;
}
.founder__body p {
  color: rgba(42, 10, 14, 0.82);
  font-size: 1.02rem;
  line-height: 1.7;
}
.founder__body p strong { color: var(--bg); font-weight: 600; }
.founder__sig {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.founder__name {
  font-weight: 600;
  color: var(--bg);
  font-size: 1rem;
  letter-spacing: .01em;
}
.founder__title {
  color: var(--bg);
  opacity: 0.6;
  font-size: .9rem;
  letter-spacing: .04em;
}

/* ================ UNLOCK (cream CTA) ================ */
.unlock {
  padding: 1.6rem 0;
  background: var(--cream);
  color: var(--bg);
  position: relative;
}
.unlock__inner {
  max-width: 880px;
  text-align: center;
}
.unlock__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: var(--bg);
  margin-bottom: 2.4rem;
  letter-spacing: -0.005em;
}
.unlock__body {
  max-width: 620px;
  margin: 0 auto 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.unlock__body p {
  color: rgba(42, 10, 14, 0.82);
  font-size: 1.02rem;
  line-height: 1.65;
}
.unlock__cta {
  display: inline-block;
  padding: 1.1rem 2.4rem;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: none;
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 0;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.unlock__cta:hover { background: var(--bg-2); color: var(--gold-hi); transform: translateY(-2px); }

/* ============================================================
   SECTION-CTA BAND
   A small centered Apply CTA dropped after each section.
   ============================================================ */
.section-cta {
  padding: 0.5rem 0 1rem;
  text-align: center;
  background: var(--bg);
}
.section-cta .btn { font-size: 0.85rem; }

/* ============================================================
   STEP BLOCK PATTERN
   Modeled after the perspective-funnel layout (5-minute close):
   - "Step N:" eyebrow label
   - Big bold display headline
   - Brief body line
   - Visual (image / video)
   ============================================================ */
.step {
  padding: 1.2rem 0 0.8rem;
  position: relative;
  background: var(--bg);
}
.step + .step { padding-top: 0.6rem; }
.step__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.step__label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.step__h {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-hi);
  font-size: clamp(2.6rem, 5.4vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
  letter-spacing: -0.005em;
}
.step__h em {
  color: var(--gold-hi);
  font-style: italic;
}
.step__sub {
  font-family: var(--sans);
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.step__visual {
  margin: 2rem auto 0;
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}
.step__visual img {
  width: 100%;
  height: auto;
  display: block;
}
.step__visual--video {
  aspect-ratio: 16 / 9;
  position: relative;
}
.step__visual--video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.step__visual--placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.2rem;
  background: var(--bg);
  border-style: dashed;
}
.step__cta {
  margin-top: 2rem;
}

/* FAQ-style Q&A list inside a step */
.step__faq {
  text-align: left;
  margin-top: 2rem;
}
.step__faq-item + .step__faq-item {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}
.step__faq-q {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-hi);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.step__faq-a {
  font-family: var(--sans);
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

/* Result/case-study card list inside a step */
.step__result + .step__result {
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--line-soft);
}
.step__result-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.step__result-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-hi);
  margin-bottom: 0.6rem;
}
.step__result-body {
  font-family: var(--sans);
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}

/* Member result screenshot grid (placeholders for now) */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.win-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.win-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(6%) brightness(.96);
  transition: transform 1s var(--ease), filter .5s var(--ease);
}
.win-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(1);
}
.win-card__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 2.4rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  background: linear-gradient(to top, rgba(15, 4, 6, 0.94) 0%, rgba(15, 4, 6, 0.72) 45%, rgba(15, 4, 6, 0) 100%);
}
.win-card__name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gold);
}
.win-card__stat {
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--ink);
}
@media (max-width: 720px) {
  .results-grid { grid-template-columns: 1fr; }
}

/* ================ Responsive ================ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about__body { order: 1; }
  .about__media { order: 2; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: 0; }
  .exp__grid { grid-template-columns: repeat(2, 1fr); }
  .exp-card--wide { grid-column: span 2; }
  .exp-card--solo { grid-column: 1 / -1; max-width: calc((100% - 1.2rem) / 2); margin-inline: auto; }
  .testi__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .inside__grid { grid-template-columns: 1fr; }
  .tulum__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: block; justify-self: end; }
  .hero { padding: 7rem 0 6rem; }
  /* Stats stay inline on mobile (no wrap), with smaller numbers
     so all three fit next to each other. */
  .hero__proof { gap: 0.9rem; flex-wrap: nowrap; justify-content: space-between; }
  .stat { flex: 1 1 0; min-width: 0; }
  .stat__value { flex-wrap: nowrap; }
  .stat__num { font-size: clamp(1.4rem, 7vw, 2rem); }
  .stat__plus,
  .stat__prefix { font-size: clamp(0.85rem, 4vw, 1.1rem); }
  .stat__label { font-size: 0.6rem; letter-spacing: 0.18em; }
  .stat__sep { display: none; }
  .hero__scroll { display: none; }
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar {
    border-right: 0;
    padding: 1.6rem 1.6rem;
  }
  .pillar__num { margin-bottom: 0.8rem; }
  .pillar h3 { margin-bottom: 0.4rem; }
  .exp__grid { grid-template-columns: 1fr; gap: 1rem; }
  .exp-card--wide { grid-column: span 1; aspect-ratio: 16 / 10; }
  .exp-card--solo { grid-column: 1; max-width: none; margin-inline: 0; }
  .testi__grid { grid-template-columns: 1fr; }
  /* Section padding now globally tight; mobile inherits the same. */
  .inside-card__body { padding: 1.5rem 1.6rem 1.8rem; }
  .inside-card__body h3 { font-size: 1.3rem; }
  .tulum__head { margin-bottom: 2.5rem; }
  .founder__grid { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
  .founder__portrait { max-width: 280px; margin: 0 auto; width: 100%; }
  .founder__eyebrow { margin-bottom: 2rem; }
  .wins__item { min-width: 220px; padding: 1.1rem 1.3rem; }
  .wins__num { font-size: 1.3rem; }
  .apply__criteria { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .apply__criteria > div { border-right: 0; border-bottom: 1px solid var(--line-soft); padding-bottom: 1.2rem; }
  .apply__criteria > div:last-child { border-bottom: 0; }
  .footer__cols { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bar { flex-direction: column; gap: .4rem; text-align: center; }
  .about__img--3 { display: none; }
}

/* Manual line break helper. Hidden on phones so long headlines
   wrap naturally; shown on desktop where the break is set on purpose. */
.br-desktop { display: none; }
@media (min-width: 601px) {
  .br-desktop { display: inline; }
}

/* Phone-only typography scaling + element trims */
@media (max-width: 600px) {
  .section__head .h2 { font-size: clamp(1.9rem, 7vw, 2.4rem); }
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .step__h { font-size: clamp(2rem, 7vw, 2.4rem); }
  /* Hero eyebrow pill cluttered the mobile hero — gone on phones */
  .hero__eyebrow { display: none; }
  /* Preloader tagline overflowed the viewport on phones (wide letter-spacing).
     Shrink + tighten + pad so it sits on one centered line. */
  .preloader__tag {
    font-size: clamp(.5rem, 2.6vw, .62rem);
    letter-spacing: .14em;
    padding: 0 18px;
    text-align: center;
    line-height: 1.6;
    max-width: 100%;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
