/* ============================================================
   SECA WITH MARI — Coaching Landing Page
   Design system extracted from the SECA brand template
   ============================================================ */

:root {
  /* Brand palette */
  --cream:        #F3E9DA;
  --cream-2:      #EFE3D1;
  --cream-deep:   #E7D8C0;
  --ink:          #14110E;   /* deep charcoal/black */
  --ink-2:        #1E1A15;
  --ink-soft:     #2A2520;

  /* Gold (metallic, used as gradient where possible) */
  --gold:         #B98E54;
  --gold-light:   #E2C792;
  --gold-deep:    #9C7438;
  --gold-grad: linear-gradient(135deg, #D9B978 0%, #B98E54 45%, #E2C792 100%);

  /* Text */
  --text:         #2A2520;
  --text-soft:    #5C534764;
  --text-muted:   #6E6356;
  --on-dark:      #F3E9DA;
  --on-dark-soft: #C9BCA6;

  /* Layout */
  --maxw: 1180px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 18px 50px -20px rgba(20, 17, 14, 0.28);
  --shadow-card: 0 24px 60px -28px rgba(20, 17, 14, 0.45);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Montserrat", system-ui, -apple-system, sans-serif;
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
h1, h2, h3 { overflow-wrap: break-word; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

/* ----------------------------- Helpers ----------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--cream2 { background: var(--cream-2); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 18px;
  display: inline-block;
}
.section--dark .eyebrow { color: var(--gold-light); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.04; letter-spacing: -0.01em; }
h2.title { font-size: clamp(34px, 5.2vw, 60px); }
h3 { font-size: clamp(22px, 2.6vw, 30px); }

.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--text-muted); max-width: 56ch; }
.section--dark .lead { color: var(--on-dark-soft); }

.text-gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* Decorative gold hairline */
.hairline {
  width: 70px; height: 1.5px;
  background: var(--gold-grad);
  border: 0;
  margin: 22px auto 0;
}
.hairline--left { margin-left: 0; }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-grad);
  color: var(--ink);
  box-shadow: 0 14px 34px -12px rgba(185, 142, 84, 0.7);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(185, 142, 84, 0.85); }
.btn-dark { background: var(--ink); color: var(--on-dark); }
.btn-dark:hover { transform: translateY(-3px); background: var(--ink-2); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(20,17,14,0.25);
}
.section--dark .btn-ghost { color: var(--on-dark); border-color: rgba(243,233,218,0.3); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.section--dark .btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ----------------------------- Nav (floating pill) ----------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 22px 0;
}
.nav.scrolled {
  background: rgba(243, 233, 218, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(185,142,84,0.18), 0 12px 30px -24px rgba(20,17,14,.5);
  padding: 12px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 27px; letter-spacing: 0.16em; }
.brand__sub { font-family: var(--sans); font-size: 9.5px; letter-spacing: 0.55em; text-transform: uppercase; color: var(--gold-deep); margin-top: 5px; margin-left: 3px; }

/* When over the hero video: light logo + glass pill */
.nav--over:not(.scrolled) .brand__name { color: #fff; }
.nav--over:not(.scrolled) .brand__sub { color: var(--gold-light); }

.nav__pill {
  display: flex; align-items: center; gap: 30px;
  padding: 12px 30px; border-radius: 100px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 10px 30px -16px rgba(20,17,14,0.5);
  backdrop-filter: blur(8px);
  transition: background .35s ease, box-shadow .35s ease;
}
.nav.scrolled .nav__pill { background: transparent; box-shadow: none; padding: 0; }
.nav__pill a { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); transition: color .2s; white-space: nowrap; }
.nav__pill a:hover { color: var(--gold-deep); }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__cta .btn { padding: 12px 26px; }

.nav__mobile { display: none; }
.nav__toggle { display: none; width: 42px; height: 42px; border-radius: 50%; align-items: center; justify-content: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: .3s;
}
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after { position: absolute; top: 7px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* ----------------------------- Hero (full-bleed video) ----------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: clamp(120px, 16vw, 170px);
  padding-bottom: clamp(80px, 10vw, 140px);
  overflow: hidden;
  color: #fff;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  background: transparent;
}
/* animated brand gradient placeholder (visible until a video covers it) */
.hero__placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, #2a2018, #6a5230, #b98e54, #2a2520, #14110e);
  background-size: 320% 320%;
  animation: heroPan 18s ease-in-out infinite;
}
@keyframes heroPan { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,17,14,0.78) 0%, rgba(20,17,14,0.45) 38%, rgba(20,17,14,0.12) 70%, rgba(20,17,14,0.35) 100%),
    linear-gradient(0deg, rgba(20,17,14,0.55), rgba(20,17,14,0) 40%);
}
.hero__hint {
  position: absolute; right: 18px; bottom: 18px; z-index: 3;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); background: rgba(20,17,14,0.4);
  border: 1px dashed rgba(226,199,146,0.4); padding: 7px 12px; border-radius: 100px;
}
.has-hero-video .hero__hint { display: none; }

/* signature rounded curve, bottom-left */
.hero__curve {
  position: absolute; z-index: 2;
  left: -8%; bottom: -14%;
  width: clamp(260px, 34vw, 460px); aspect-ratio: 1;
  background: var(--cream);
  border-radius: 50%;
  box-shadow: -10px -10px 0 -2px rgba(185,142,84,0.45);
}

.hero__content { position: relative; z-index: 3; max-width: 760px; }
.hero__eyebrow {
  display: inline-block; font-weight: 600; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--sans); font-weight: 600; letter-spacing: -0.02em; line-height: 1.04;
  font-size: clamp(40px, 6.4vw, 82px); color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero h1 em { font-style: italic; font-family: var(--serif); font-weight: 600; }
.hero__sub { margin-top: 24px; font-size: clamp(16px, 1.5vw, 20px); color: rgba(255,255,255,0.86); max-width: 48ch; }
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* CTA with rotating seal badge */
.btn-seal { background: var(--gold-grad); color: var(--ink); padding-left: 10px; box-shadow: 0 14px 34px -12px rgba(185,142,84,0.7); }
.btn-seal:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(185,142,84,0.9); }
.btn-seal .seal { position: relative; width: 50px; height: 50px; flex: 0 0 auto; display: grid; place-items: center; }
.btn-seal .seal svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 9s linear infinite; }
.btn-seal .seal svg text { font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: 0.06em; fill: var(--ink); }
.btn-seal .seal__arrow { font-size: 16px; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .btn-seal .seal svg, .hero__placeholder { animation: none; } }

.btn-glass { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.45); backdrop-filter: blur(6px); }
.btn-glass:hover { transform: translateY(-3px); background: rgba(255,255,255,0.22); border-color: #fff; }

/* trust strip below hero */
.trust-strip { background: var(--cream); padding: clamp(34px, 5vw, 56px) 0; }
.trust {
  border-top: 1px solid rgba(185,142,84,0.28);
  border-bottom: 1px solid rgba(185,142,84,0.28);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust__item { text-align: center; padding: 26px 12px; border-right: 1px solid rgba(185,142,84,0.18); }
.trust__item:last-child { border-right: 0; }
.trust__item .n { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 42px); line-height: 1; }
.trust__item .t { margin-top: 8px; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }

/* ----------------------------- Video ----------------------------- */
.video__wrap { max-width: 920px; margin: 44px auto 0; }
.video {
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); background: var(--ink-2);
  border: 1px solid rgba(226,199,146,0.25);
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  color: var(--on-dark); cursor: pointer; background: var(--ink-2);
}
.video__thumb {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.video__placeholder::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,14,0.15), rgba(20,17,14,0.45));
  pointer-events: none;
}
.video__play {
  position: relative; z-index: 1;
  width: 86px; height: 86px; border-radius: 50%;
  background: var(--gold-grad); display: grid; place-items: center;
  box-shadow: 0 18px 40px -12px rgba(185,142,84,0.7);
  transition: transform .3s ease;
}
.video__placeholder:hover .video__play { transform: scale(1.08); }
.video__play svg { width: 30px; height: 30px; margin-left: 5px; fill: var(--ink); }
.video__placeholder .cap { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-soft); }

/* ----------------------------- About ----------------------------- */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; height: clamp(420px, 52vw, 580px); object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.about__media .img-ph { background: linear-gradient(160deg, var(--cream-deep), var(--ink-soft)); }
.about__badge {
  position: absolute; right: -16px; top: 30px;
  background: var(--cream); border: 1px solid rgba(185,142,84,0.4);
  border-radius: 14px; padding: 14px 18px; text-align: center;
  box-shadow: var(--shadow-soft);
}
.about__badge .num { font-family: var(--serif); font-size: 30px; color: var(--gold-deep); line-height: 1; }
.about__badge .lbl { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

.creds { margin-top: 30px; display: grid; gap: 14px; }
.cred { display: flex; gap: 14px; align-items: flex-start; }
.cred__ic {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--gold); display: grid; place-items: center; color: var(--gold-deep);
}
.cred__ic svg { width: 19px; height: 19px; }
.cred p { font-size: 15.5px; color: var(--text-muted); }
.cred p strong { color: var(--text); font-weight: 600; }
.about .signature { margin-top: 30px; font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--gold-deep); }

/* ----------------------------- Method / What you get ----------------------------- */
.method__head { max-width: 720px; }
.cards { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(185,142,84,0.25);
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.section--dark .card { background: rgba(255,255,255,0.04); border-color: rgba(226,199,146,0.18); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(185,142,84,0.55); }
.card__ic {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1.5px solid var(--gold); display: grid; place-items: center; color: var(--gold-deep);
  margin-bottom: 22px;
}
.section--dark .card__ic { color: var(--gold-light); }
.card__ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 23px; margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--text-muted); }
.section--dark .card p { color: var(--on-dark-soft); }
.card__num { font-family: var(--serif); font-size: 15px; color: var(--gold-deep); letter-spacing: 0.1em; display:block; margin-bottom: 14px; }
.section--dark .card__num { color: var(--gold-light); }

/* ----------------------------- Testimonials ----------------------------- */
.tcards { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(226,199,146,0.16);
  border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column;
}
.tcard .stars { color: var(--gold-light); letter-spacing: 3px; font-size: 16px; margin-bottom: 16px; }
.tcard .quote { font-family: var(--serif); font-size: 21px; line-height: 1.4; color: var(--on-dark); font-style: italic; }
.tcard .who { margin-top: auto; padding-top: 24px; display: flex; align-items: center; gap: 14px; }
.tcard .avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); flex: 0 0 auto; }
.tcard .who .name { font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--on-dark); }
.tcard .who .meta { font-size: 12px; letter-spacing: 0.08em; color: var(--on-dark-soft); text-transform: uppercase; }

/* ----------------------------- Before / After ----------------------------- */
.ba__grid { margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ba {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft);
  background: var(--ink); border: 1px solid rgba(185,142,84,0.2);
}
.ba__imgs { display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.ba__imgs > div { position: relative; aspect-ratio: 3/4; }
.ba__imgs img { width: 100%; height: 100%; object-fit: cover; }
.ba__imgs .img-ph { width:100%; height:100%; background: linear-gradient(160deg, #2a241d, #14110e); }
.ba__tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(20,17,14,0.7); color: var(--on-dark); padding: 5px 11px; border-radius: 100px;
  border: 1px solid rgba(226,199,146,0.3);
}
.ba__tag.after { left: auto; right: 12px; background: var(--gold-grad); color: var(--ink); border: 0; }
.ba__cap { padding: 18px 20px; color: var(--on-dark); }
.ba__cap .name { font-family: var(--serif); font-size: 20px; }
.ba__cap .res { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-top: 4px; }

/* ----------------------------- The Coaching (features + media) ----------------------------- */
.coaching__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.feat { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feat__item {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,0.6); border: 1px solid rgba(185,142,84,0.22);
  border-radius: var(--radius); padding: 18px 18px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.feat__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(185,142,84,0.5); }
.feat__ic { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--gold); display: grid; place-items: center; color: var(--gold-deep); }
.feat__ic svg { width: 19px; height: 19px; }
.feat__item p { font-size: 14px; color: var(--text-muted); line-height: 1.45; }
.feat__item p strong { color: var(--text); font-weight: 600; font-size: 15px; }
.coaching__media .coaching__img { width: 100%; height: clamp(420px, 52vw, 560px); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); background: linear-gradient(160deg, var(--cream-deep), var(--ink-soft)); }

/* ----------------------------- Marquee (right→left auto-scroll) ----------------------------- */
.marquee {
  margin-top: 52px; width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__track { display: flex; gap: 18px; width: max-content; animation: marquee 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* Client result cards */
.rcard {
  flex: 0 0 auto; width: clamp(220px, 24vw, 300px);
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  box-shadow: var(--shadow-card); border: 1px solid rgba(226,199,146,0.22);
}
.rcard .img-ph { width: 100%; aspect-ratio: 3/4; background: linear-gradient(160deg, #2a241d, #14110e); }
.rcard figcaption {
  position: absolute; left: 14px; top: 14px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(20,17,14,0.55); color: var(--on-dark); padding: 6px 12px; border-radius: 100px;
  border: 1px solid rgba(226,199,146,0.3); backdrop-filter: blur(4px);
}

/* ----------------------------- What my clients say (sticky heading) ----------------------------- */
.csay { position: relative; padding-block: 0; }
.csay__sticky {
  position: sticky; top: 0; height: 100svh;
  display: grid; place-items: center; z-index: 0; pointer-events: none;
}
.csay__big {
  font-family: var(--serif); font-weight: 600; text-align: center; line-height: 0.98;
  font-size: clamp(54px, 12vw, 168px); letter-spacing: -0.01em; color: var(--text);
  opacity: 0.92;
}
.csay__cards {
  position: relative; z-index: 1;
  margin-top: -100svh; padding-block: clamp(80px, 16vh, 200px);
  display: grid; gap: clamp(28px, 6vh, 64px);
}
.csay .tcard { width: min(480px, 100%); }
.csay .tcard {
  background: var(--cream); border: 1px solid rgba(185,142,84,0.3); color: var(--text);
  box-shadow: var(--shadow-card);
}
.csay .tcard .quote { color: var(--text); }
.csay .tcard .who .name { color: var(--text); }
.csay .tcard .who .meta { color: var(--text-muted); }
.csay .tcard .stars { color: var(--gold-deep); }
.csay .tcard:nth-child(even) { justify-self: end; }
.csay .tcard:nth-child(odd)  { justify-self: start; }

/* Client video testimonial cards (vertical / Reel-style) */
.csay .vcard {
  width: min(330px, 100%); aspect-ratio: 9 / 16;
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, #2a241d, #14110e);
  box-shadow: var(--shadow-card); border: 1px solid rgba(185,142,84,0.28);
  cursor: pointer; outline: none;
}
.csay .vcard:nth-child(odd)  { justify-self: start; }
.csay .vcard:nth-child(even) { justify-self: end; }
.vcard__media { position: absolute; inset: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.vcard__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 4;
  width: 72px; height: 72px; border-radius: 50%; background: var(--gold-grad);
  display: grid; place-items: center; box-shadow: 0 16px 38px -12px rgba(185,142,84,0.75);
  transition: transform .3s ease, width .3s ease, height .3s ease, top .3s ease, right .3s ease;
}
.csay .vcard:hover .vcard__play, .csay .vcard:focus-visible .vcard__play { transform: translate(-50%, -50%) scale(1.09); }
.vcard__play svg { width: 28px; height: 28px; color: var(--ink); fill: var(--ink); }
/* once sound is on, the button shrinks to a corner mute toggle */
.csay .vcard.sound-on .vcard__play { width: 42px; height: 42px; left: auto; right: 14px; top: 14px; transform: none; }
.csay .vcard.sound-on:hover .vcard__play { transform: scale(1.09); }
.vcard.sound-on .vcard__play svg { width: 20px; height: 20px; }
.vcard__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 44px 18px 16px; color: var(--on-dark);
  background: linear-gradient(0deg, rgba(20,17,14,0.82), transparent);
}
.vcard__cap .name { font-family: var(--serif); font-size: 20px; }
.vcard__cap .res { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-top: 2px; }
.vcard__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; z-index: 1; }

/* ----------------------------- Before / After (hover reveal) ----------------------------- */
.ba2 {
  position: relative; aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid rgba(185,142,84,0.2); cursor: pointer; outline: none;
}
.ba2__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.ba2__img.before { background: linear-gradient(160deg, #3a332a, #1c1812); z-index: 1; }
.ba2__img.after  { background: linear-gradient(160deg, #c8a86e, #8a6a38); z-index: 2; opacity: 0; transition: opacity .55s cubic-bezier(.2,.7,.2,1); }
.ba2:hover .ba2__img.after, .ba2:focus-visible .ba2__img.after { opacity: 1; }
.ba2__tag {
  position: absolute; top: 14px; z-index: 3; transition: opacity .4s ease;
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
}
.ba2__tag.tag-before { left: 14px; background: rgba(20,17,14,0.7); color: var(--on-dark); border: 1px solid rgba(226,199,146,0.3); }
.ba2__tag.tag-after  { left: 14px; background: var(--gold-grad); color: var(--ink); opacity: 0; }
.ba2:hover .tag-before, .ba2:focus-visible .tag-before { opacity: 0; }
.ba2:hover .tag-after,  .ba2:focus-visible .tag-after  { opacity: 1; }
.ba2__hint {
  position: absolute; right: 14px; top: 14px; z-index: 3; transition: opacity .4s ease;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark);
  background: rgba(20,17,14,0.5); padding: 5px 11px; border-radius: 100px; border: 1px dashed rgba(226,199,146,0.45);
}
.ba2:hover .ba2__hint, .ba2:focus-visible .ba2__hint { opacity: 0; }
.ba2__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 40px 20px 18px; color: var(--on-dark);
  background: linear-gradient(0deg, rgba(20,17,14,0.78), transparent);
}
.ba2__cap .name { font-family: var(--serif); font-size: 20px; }
.ba2__cap .res { font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-top: 2px; }

/* ----------------------------- Stat band + photo strip ----------------------------- */
.statband { padding-bottom: 0; background: radial-gradient(80% 120% at 50% 0%, rgba(185,142,84,0.16), transparent 60%), var(--cream); }
.statband__num { font-family: var(--serif); font-size: clamp(56px, 12vw, 150px); line-height: 0.95; }
.statband__sub {
  font-family: var(--serif); font-weight: 600; line-height: 1;
  font-size: clamp(34px, 7vw, 90px); margin-top: 6px;
  color: transparent; -webkit-text-stroke: 1.4px rgba(110,99,86,0.55);
}
.marquee--strip { margin-top: clamp(40px, 6vw, 72px); }
.marquee--strip .marquee__track { gap: 12px; animation-duration: 55s; }
.pstrip { flex: 0 0 auto; width: clamp(82px, 9vw, 120px); aspect-ratio: 1; border-radius: 14px; background: linear-gradient(160deg, #2a241d, #14110e); box-shadow: var(--shadow-soft); }

/* ----------------------------- FAQ ----------------------------- */
.faq { max-width: 820px; margin: 48px auto 0; }
.faq__item { border-bottom: 1px solid rgba(185,142,84,0.28); }
.faq__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; font-family: var(--serif); font-size: clamp(19px, 2.2vw, 24px); color: var(--text);
}
.faq__q .ic { position: relative; flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--gold); display: grid; place-items: center; color: var(--gold-deep); transition: .3s; }
.faq__q .ic::before { content: ""; width: 12px; height: 2px; background: currentColor; position: absolute; }
.faq__q .ic::after  { content: ""; width: 2px; height: 12px; background: currentColor; position: absolute; transition: .3s; }
.faq__item.open .faq__q .ic { background: var(--gold-grad); color: var(--ink); border-color: transparent; transform: rotate(180deg); }
.faq__item.open .faq__q .ic::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq__a p { padding: 0 4px 26px; color: var(--text-muted); font-size: 16px; max-width: 70ch; }

/* ----------------------------- Final CTA ----------------------------- */
.cta {
  background:
    radial-gradient(90% 120% at 80% 10%, rgba(185,142,84,0.28), transparent 60%),
    var(--ink);
  color: var(--on-dark);
}
.cta__inner { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.cta h2 { font-size: clamp(36px, 5vw, 62px); }
.cta .lead { margin-top: 22px; }
.cta__list { margin-top: 28px; display: grid; gap: 12px; }
.cta__list li { display: flex; gap: 12px; align-items: center; color: var(--on-dark-soft); font-size: 15.5px; }
.cta__list .tick { color: var(--gold-light); flex: 0 0 auto; }
#apply-bottom .cta__inner { grid-template-columns: 1fr; max-width: 720px; }

/* Compact apply form (between intro video and coach) */
#video { padding-bottom: clamp(28px, 4vw, 48px); }
.apply-early {
  padding-top: 0;
  padding-bottom: clamp(48px, 7vw, 88px);
  background: var(--cream-2);
  scroll-margin-top: 88px;
}
.apply-early__inner { max-width: 480px; }
.apply-early .title { font-size: clamp(26px, 4.2vw, 36px); }
.apply-early .lead { font-size: 15.5px; margin-top: 10px; margin-bottom: 0; max-width: 42ch; }
.form-card--compact { margin-top: 18px; padding: 14px 14px 10px; }
.form-card--compact .af__title { display: none; }
.form-card--compact .af__head { margin-bottom: 4px; }
.form-card--compact .af__field { margin-bottom: 7px; }
.form-card--compact .af__intro { margin-bottom: 8px; font-size: 12px; }

/* Lead form card */
.form-card {
  background: var(--cream); color: var(--text);
  border-radius: var(--radius-lg); padding: 16px 16px 12px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(226,199,146,0.4);
}
.form-card h3 { font-size: 22px; }
.form-card p.sub { color: var(--text-muted); font-size: 13px; margin-top: 4px; margin-bottom: 14px; }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 11px 13px; border-radius: 10px;
  border: 1px solid rgba(20,17,14,0.18); background: rgba(255,255,255,0.7);
  font-family: var(--sans); font-size: 14.5px; color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185,142,84,0.18); }
.form-card .btn { justify-content: center; margin-top: 4px; }
.form-card .af__next {
  width: auto; flex: 0 0 auto; margin-left: auto;
  min-height: 36px; padding: 8px 22px; font-size: 12px;
}
.form-card .fineprint { font-size: 11px; color: var(--text-muted); margin-top: 10px; text-align: center; }
.ghl-note {
  margin-top: 12px; font-size: 12px; color: var(--gold-deep);
  border: 1px dashed rgba(185,142,84,0.5); border-radius: 10px; padding: 8px 10px; text-align: center;
}
/* ---- Multi-step apply form (GHL mirror) ---- */
.applyform { display: flex; flex-direction: column; min-height: 0; }
.af__head { margin-bottom: 8px; }
.af__title { font-size: 20px; line-height: 1.15; margin-bottom: 8px; }
.af__sub { color: var(--text-muted); font-size: 13px; margin-top: 4px; margin-bottom: 10px; }
.af__progress { height: 3px; border-radius: 100px; background: rgba(20,17,14,0.10); overflow: hidden; }
.af__bar { display: block; height: 100%; width: 0; border-radius: 100px; background: var(--gold-grad); transition: width .45s cubic-bezier(.4,0,.2,1); }
.af__count { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); margin-top: 5px; margin-bottom: 2px; }

.af__stage { flex: 1; }
.af__q { animation: afIn .35s cubic-bezier(.2,.7,.2,1) both; }
@keyframes afIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.af__step-title {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep);
  margin: 0 0 10px;
}
.af__intro {
  font-family: var(--sans); font-size: 12.5px; color: var(--text-muted);
  margin: 0 0 12px; line-height: 1.4;
}
.af__field { margin-bottom: 9px; }
.af__field:last-child { margin-bottom: 0; }
.af__field-label {
  display: block; font-family: var(--sans); font-size: 12.5px; font-weight: 500;
  line-height: 1.3; color: var(--text); margin-bottom: 5px;
}
.af__req { color: #9b3d2f; }

.af__input {
  width: 100%; padding: 8px 11px; border-radius: 9px;
  border: 1px solid rgba(20,17,14,0.18); background: rgba(255,255,255,0.75);
  font-family: var(--sans); font-size: 14px; color: var(--text); line-height: 1.3;
  transition: border-color .2s, box-shadow .2s; resize: vertical; min-height: 0;
}
textarea.af__input { min-height: 38px !important; height: 38px !important; max-height: 120px; }
.af__input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185,142,84,0.18); }
.af__select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%), linear-gradient(135deg, var(--text-muted) 50%, transparent 50%); background-position: calc(100% - 16px) calc(50% - 3px), calc(100% - 10px) calc(50% - 3px); background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 32px; }

.af__options { display: grid; gap: 7px; }
.af__option {
  width: 100%; text-align: left; padding: 10px 12px; border-radius: 10px; cursor: pointer;
  border: 1px solid rgba(20,17,14,0.18); background: rgba(255,255,255,0.6);
  font-family: var(--sans); font-size: 13.5px; color: var(--text); line-height: 1.35;
  transition: border-color .18s, background .18s, transform .18s;
}
.af__option:hover { border-color: var(--gold); transform: translateX(2px); }
.af__option.selected { border-color: var(--gold); background: rgba(185,142,84,0.14); box-shadow: 0 0 0 2px rgba(185,142,84,0.25) inset; }

.af__error { color: #9b3d2f; font-size: 12px; margin-top: 8px; }

.af__nav { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 10px; }
.af__back { background: none; border: none; cursor: pointer; font-family: var(--sans); font-size: 12.5px; color: var(--text-muted); padding: 4px 2px; transition: color .2s; }
.af__back:hover { color: var(--gold-deep); }
.af__next { flex: 0 0 auto; justify-content: center; min-height: 36px; padding: 8px 22px; font-size: 12px; }
.af__next:disabled { opacity: 0.7; cursor: default; transform: none; }

.af__done { text-align: center; padding: 14px 4px; animation: afIn .5s both; }
.af__check {
  width: 48px; height: 48px; margin: 0 auto 12px; border-radius: 50%;
  display: grid; place-items: center; font-size: 22px; color: var(--ink);
  background: var(--gold-grad); box-shadow: 0 14px 34px -12px rgba(185,142,84,0.7);
}
.af__done h3 { font-size: 22px; margin-bottom: 6px; }
.af__done > p { color: var(--text-muted); font-size: 14px; max-width: 36ch; margin: 0 auto 14px; }
.af__wa { display: inline-flex; margin-top: 4px; }

.af__dq { text-align: left; }
.af__dq-body {
  font-size: 13.5px; line-height: 1.45; color: var(--text);
  background: rgba(255,255,255,0.55); border: 1px solid rgba(20,17,14,0.10);
  border-radius: 12px; padding: 14px 14px; margin-bottom: 12px;
}
.af__dq-body p { margin: 0 0 8px; color: var(--text); max-width: none; }
.af__dq-body p:last-child { margin-bottom: 0; }
.af__dq-body a { color: var(--gold-deep); text-decoration: underline; }
.af__restart { width: 100%; justify-content: center; }

/* ----------------------------- Footer ----------------------------- */
.footer { background: #0F0C0A; color: var(--on-dark-soft); padding: 64px 0 30px; }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; align-items: flex-start; }
.footer .brand__name { color: var(--on-dark); }
.footer__links { display: flex; gap: 30px; flex-wrap: wrap; }
.footer__links a { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; transition: color .2s; }
.footer__links a:hover { color: var(--gold-light); }
.footer__links a.ig-link { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-light); text-transform: none; letter-spacing: 0.02em; }
.footer__links a.ig-link svg { width: 16px; height: 16px; }
.footer__links a.ig-link:hover { color: #fff; }
.footer__bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(226,199,146,0.14); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 12.5px; }
.footer__bottom a:hover { color: var(--gold-light); }

/* ----------------------------- Legal pages ----------------------------- */
.legal-hero {
  padding: clamp(120px, 16vw, 170px) 0 clamp(40px, 6vw, 70px);
  background: radial-gradient(90% 120% at 80% 0%, rgba(185,142,84,0.18), transparent 60%), var(--cream-2);
  border-bottom: 1px solid rgba(185,142,84,0.22);
}
.legal-hero h1 { font-family: var(--serif); font-size: clamp(38px, 6vw, 66px); }
.legal-hero .eyebrow { margin-bottom: 14px; }
.legal-hero .updated { margin-top: 14px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.legal { max-width: 820px; margin: 0 auto; padding: clamp(40px, 6vw, 72px) 0 clamp(60px, 8vw, 110px); }
.legal h2 { font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); margin: 44px 0 12px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-family: var(--sans); font-weight: 600; font-size: 18px; margin: 24px 0 8px; color: var(--text); }
.legal p, .legal li { font-size: 16px; color: var(--text-muted); line-height: 1.75; }
.legal p { margin-bottom: 16px; }
.legal ul { list-style: disc; padding-left: 22px; margin: 0 0 18px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--gold-deep); text-decoration: underline; }
.legal strong { color: var(--text); font-weight: 600; }
.legal .note {
  background: rgba(185,142,84,0.08); border: 1px solid rgba(185,142,84,0.3);
  border-radius: var(--radius); padding: 18px 22px; margin: 0 0 30px; font-size: 14.5px;
}
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); }
.legal-back:hover { color: var(--gold); }

/* image placeholder utility */
.img-ph { display: grid; place-items: center; color: rgba(243,233,218,0.5); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; text-align: center; padding: 20px; }

/* ----------------------------- Reveal animation ----------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 980px) {
  .nav__pill, .nav__cta .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav--over:not(.scrolled) .nav__toggle span,
  .nav--over:not(.scrolled) .nav__toggle span::before,
  .nav--over:not(.scrolled) .nav__toggle span::after { background: #fff; }
  .nav__mobile {
    position: fixed; inset: 0; background: var(--ink); z-index: 99;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
    opacity: 0; pointer-events: none; transition: opacity .35s ease;
  }
  .hero h1 { font-size: clamp(36px, 8.4vw, 60px); }
  .hero h1 br { display: none; }
  body.menu-open .nav__mobile { opacity: 1; pointer-events: auto; }
  .nav__mobile a { color: var(--on-dark); font-family: var(--serif); font-size: 30px; }
  .nav__mobile .btn { margin-top: 14px; }

  .about__grid, .cta__inner, .coaching__grid { grid-template-columns: 1fr; }
  .cards, .tcards, .ba__grid { grid-template-columns: 1fr 1fr; }
  .about__badge {
    top: auto;
    right: auto;
    left: 14px;
    bottom: 14px;
  }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .trust { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(2) { border-right: 0; }
  .trust__item:nth-child(1), .trust__item:nth-child(2) { border-bottom: 1px solid rgba(185,142,84,0.18); }
  .cards, .tcards, .ba__grid { grid-template-columns: 1fr; }
  .feat { grid-template-columns: 1fr; }
  .about__badge { padding: 10px 14px; }
  .about__badge .num { font-size: 24px; }
  .hero__curve { left: -28%; bottom: -8%; width: 280px; }
  .csay__cards { padding-block: clamp(60px, 12vh, 120px); margin-inline: auto; }
  .csay .tcard { width: 100%; }
  .csay .tcard:nth-child(even),
  .csay .tcard:nth-child(odd) { justify-self: center; }
  .csay .vcard:nth-child(even),
  .csay .vcard:nth-child(odd) { justify-self: center; }
}
