/* =================================================================
   ARKHAM BJJ — styles.css
   Premium black / charcoal / cream with muted gold accent.
   Mobile-first. Edit the design tokens below to re-skin the site.
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  --ink:        #0a0a0b;   /* near-black */
  --charcoal:   #16161a;
  --charcoal-2: #202026;
  --cream:      #f4f1ea;   /* off-white page bg */
  --cream-2:    #ece7dc;
  --paper:      #ffffff;
  --line:       rgba(0,0,0,.12);
  --line-light: rgba(255,255,255,.16);

  --gold:       #c5a05a;   /* muted gold — accents on dark */
  --gold-deep:  #a9853f;
  --gold-ink:   #7a5f27;   /* darker gold — text on light bg (AA contrast) */
  --red:        #9c3026;   /* sparing secondary accent */

  --text:       #1a1a1c;
  --text-soft:  #4d4d54;   /* darkened for contrast on cream */
  --text-inv:   #f5f2eb;
  --text-inv-soft: rgba(245,242,235,.80); /* raised opacity for contrast */

  --maxw: 1180px;
  --radius: 16px;
  --radius-lg: 22px;

  --shadow: 0 24px 60px -20px rgba(0,0,0,.35);
  --shadow-sm: 0 10px 30px -12px rgba(0,0,0,.28);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Accessibility helpers ---------- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--gold); color: var(--ink); font-weight: 800; padding: 12px 20px; border-radius: 0 0 12px 12px;
  letter-spacing: .04em; transition: top .25s var(--ease);
}
.skip-link:focus { top: 0; }

/* Visible keyboard focus on every interactive element */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container--narrow { max-width: 820px; }
.section { padding: 92px 0; position: relative; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: .74rem; letter-spacing: .3em; text-transform: uppercase;
  font-weight: 700; color: var(--gold); margin-bottom: 16px;
}
.eyebrow--dark { color: var(--gold-ink); }   /* AA contrast on cream */

.section__head { max-width: 660px; margin-bottom: 54px; }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: .98; letter-spacing: .01em; text-transform: uppercase;
  color: var(--ink);
}
.section__title--light { color: var(--text-inv); }
.section__sub { margin-top: 16px; font-size: 1.05rem; color: var(--text-soft); }
.section__sub--light { color: var(--text-inv-soft); }

/* ---------- Elegant image placeholders (look intentional even un-swapped) ---------- */
.ph {
  position: relative;
  background:
    radial-gradient(120% 120% at 30% 10%, #2c2c33 0%, #18181c 55%, #101013 100%);
  overflow: hidden;
}
.ph::before {  /* subtle enso-style ring + camera dot motif */
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(197,160,90,.18), transparent 38%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 2px, transparent 2px 9px);
  opacity: .9;
}
.ph__label {
  position: absolute; left: 0; right: 0; bottom: 14px; text-align: center;
  font-size: .64rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(245,242,235,.45); padding: 0 12px; pointer-events: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 800; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 100px;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 28px -10px rgba(197,160,90,.7); }
.btn--gold:hover { background: #d4b16a; transform: translateY(-2px); }
.btn--ghost { border: 1.5px solid var(--line-light); color: var(--text-inv); }
.btn--ghost:hover { background: rgba(255,255,255,.10); transform: translateY(-2px); }
/* ghost button placed on a dark section */
.btn--ghost-light { border: 1.5px solid var(--line-light); color: var(--text-inv); }
.btn--ghost-light:hover { background: rgba(255,255,255,.08); }
.btn--block { width: 100%; }

/* =================================================================
   NAVIGATION
   ================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s, padding .35s;
  padding: 20px 0;
  background: rgba(10,10,11,.75);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: 11px; color: var(--text-inv); }
.nav__logo-mark { height: 42px; width: auto; display: block; }
.nav__wordmark { display: flex; flex-direction: column; justify-content: center; line-height: 1; }
.nav__wordmark-name {
  font-family: var(--font-body); font-weight: 600; font-size: 1.16rem; line-height: 1;
  letter-spacing: .4em; text-transform: uppercase; color: var(--text-inv);
}
.nav__wordmark-sub {
  font-family: var(--font-body); font-size: .54rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold);
  margin-top: 5px;
}

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  color: var(--text-inv); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  position: relative; transition: color .2s;
}
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--gold); transition: width .25s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--gold); color: var(--ink) !important; padding: 11px 22px; border-radius: 100px;
  transition: transform .2s, background .2s;
}
.nav__cta:hover { background: #d4b16a; transform: translateY(-2px); }

/* scrolled state (toggled via JS) */
.nav.is-scrolled {
  background: rgba(10,10,11,.94);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-light); padding: 11px 0;
}

/* hamburger */
.nav__toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 6px; align-items: center; justify-content: center; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text-inv); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =================================================================
   1. HERO
   ================================================================= */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; color: var(--text-inv); }
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background-color: var(--ink);
  background-image: url('assets/gallery/2026-01-23RGANorthAtlanta-57.jpg');
  background-position: center 35%;
  background-size: cover;
  background-repeat: no-repeat;
}
/* atmospheric texture so the hero never looks flat/cheap, even without a photo */
.hero__texture {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 1px, transparent 1px 8px),
    radial-gradient(70% 55% at 50% 120%, rgba(197,160,90,.22), transparent 60%);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.30) 40%, rgba(10,10,11,.88) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 120px 22px 96px; width: 100%; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7.4rem);
  line-height: .92; letter-spacing: .01em; text-transform: uppercase; margin-bottom: 22px;
}
.hero__lede { max-width: 560px; font-size: 1.15rem; color: var(--text-inv-soft); margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero__note { font-size: .85rem; letter-spacing: .04em; color: var(--text-inv-soft); }

.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: var(--gold); border-radius: 4px; transform: translateX(-50%); animation: scrolldot 1.6s var(--ease) infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 30%{opacity:1} 100%{opacity:0;transform:translate(-50%,14px)} }

/* =================================================================
   2. TRUST BAR
   ================================================================= */
.trust { background: var(--ink); color: var(--text-inv); }
.trust__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 44px 22px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.trust__item { display: flex; align-items: center; gap: 16px; }
.trust__num { font-family: var(--font-display); font-size: 2rem; line-height: .95; color: var(--gold); text-transform: uppercase; flex: none; }
.trust__label { font-size: .84rem; letter-spacing: .02em; color: var(--text-inv-soft); line-height: 1.4; }

/* =================================================================
   3. PROGRAMS
   ================================================================= */
.programs { background: var(--cream); }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.program-card {
  background: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.program-card__media { aspect-ratio: 4/3; }
.program-card__body { padding: 26px 24px 28px; }
.program-card__body h3 { font-family: var(--font-display); font-size: 1.7rem; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 10px; }
.program-card__body p { color: var(--text-soft); font-size: .98rem; margin-bottom: 16px; }
.program-card__list { display: grid; gap: 8px; margin-bottom: 20px; }
.program-card__list li { position: relative; padding-left: 22px; font-size: .92rem; color: var(--text); }
.program-card__list li::before { content: ''; position: absolute; left: 0; top: .55em; width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); }
.program-card__link { font-weight: 800; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-ink); transition: color .2s; }
.program-card__link:hover { color: var(--ink); }

/* =================================================================
   3b. PRICING
   ================================================================= */
.pricing { background: var(--ink); color: var(--text-inv); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--charcoal); border: 1px solid var(--line-light); border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(197,160,90,.45); }
.price-card--feature {
  background: linear-gradient(180deg, #232329, #18181c);
  border-color: rgba(197,160,90,.55);
  box-shadow: 0 30px 70px -30px rgba(197,160,90,.35);
}
.price-card__flag {
  display: inline-block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 800;
  color: var(--gold); margin-bottom: 16px;
}
.price-card__flag--feature { color: var(--ink); background: var(--gold); padding: 5px 12px; border-radius: 100px; align-self: flex-start; }
.price-card__name { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 12px; line-height: 1.05; }
.price-card__amount { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--text-inv); margin-bottom: 14px; }
.price-card__amount span { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--text-inv-soft); margin-left: 4px; }
.price-card__desc { color: var(--text-inv-soft); font-size: .95rem; margin-bottom: 20px; }
.price-card__perks { display: grid; gap: 9px; margin-bottom: 26px; flex: 1; }
.price-card__perks li { position: relative; padding-left: 24px; font-size: .92rem; color: var(--text-inv); }
.price-card__perks li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 800; }

/* savings strip */
.savings {
  margin-top: 30px; background: var(--charcoal-2); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 24px 28px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center;
}
.savings__item { display: flex; align-items: center; gap: 16px; }
.savings__badge {
  flex: none; width: 58px; height: 58px; border-radius: 50%; background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; letter-spacing: .02em;
}
.savings__badge--alt { background: transparent; border: 2px solid var(--gold); color: var(--gold); font-size: .9rem; }
.savings__item strong { display: block; font-size: .96rem; letter-spacing: .01em; }
.savings__item p { font-size: .88rem; color: var(--text-inv-soft); }
.savings__divider { width: 1px; height: 48px; background: var(--line-light); }

/* =================================================================
   4. SCHEDULE
   ================================================================= */
.schedule { background: var(--cream-2); }
.schedule__wrap { border-radius: var(--radius-lg); }
.schedule__table { width: 100%; border-collapse: collapse; background: var(--paper); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.schedule__table thead th {
  background: var(--ink); color: var(--text-inv); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em;
  font-weight: 400; font-size: 1rem; padding: 18px 16px; text-align: left;
}
.schedule__table tbody th { background: var(--cream); font-family: var(--font-display); font-size: 1.1rem; text-transform: uppercase; padding: 16px; text-align: left; color: var(--ink); }
.schedule__table td { padding: 14px 16px; border-top: 1px solid var(--line); vertical-align: top; }
.schedule__table td small { display: block; color: var(--text-soft); font-size: .78rem; margin-top: 3px; }
.schedule__table td.is-empty { color: rgba(0,0,0,.25); }
.cls { display: inline-block; font-weight: 800; font-size: .9rem; padding: 4px 10px; border-radius: 8px; }
.cls--bjj  { background: rgba(169,133,63,.16); color: var(--gold-ink); }
.cls--nogi { background: rgba(26,26,28,.08); color: var(--ink); }
.cls--judo { background: rgba(156,48,38,.12); color: var(--red); }
.cls--kids { background: rgba(44,99,76,.14); color: #1f5a44; }
.cls--open { background: rgba(45,55,110,.12); color: #313e8c; }

.schedule__wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.schedule__legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 20px; justify-content: center; }
.schedule__legend li { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--text-soft); }
.dot { width: 11px; height: 11px; border-radius: 3px; }
.dot--bjj{background:var(--gold)} .dot--nogi{background:#1a1a1c} .dot--judo{background:var(--red)} .dot--kids{background:#1f5a44} .dot--open{background:#313e8c}
.schedule__note {
  margin-top: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 20px; font-size: .84rem; color: var(--text-soft); text-align: center;
}
.schedule__note strong { color: var(--gold-ink); }
.schedule__swipe { display: none; text-align: center; font-size: .8rem; color: var(--text-soft); margin-top: 12px; }

/* =================================================================
   5. COACHES
   ================================================================= */
.coaches { background: var(--charcoal); color: var(--text-inv); }
.coach-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.coach { display: grid; grid-template-columns: 220px 1fr; gap: 26px; align-items: start; background: var(--charcoal-2); border: 1px solid var(--line-light); border-radius: var(--radius-lg); padding: 22px; }
.coach__photo { aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.coach__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .5s var(--ease); }
.coach:hover .coach__photo img { transform: scale(1.04); }
.coach__rank { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.coach__name { font-family: var(--font-display); font-size: 1.9rem; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 12px; }
.coach__bio { font-size: .95rem; color: var(--text-inv-soft); }

/* =================================================================
   MAT BANNER  (full-bleed action shot divider)
   ================================================================= */
.mat-banner { position: relative; height: 460px; overflow: hidden; }
.mat-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; filter: brightness(.72); transition: transform 8s linear; }
.mat-banner:hover img { transform: scale(1.03); }
.mat-banner__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(180deg, rgba(10,10,11,.25) 0%, rgba(10,10,11,.55) 100%);
  color: var(--text-inv); padding: 0 22px;
}
.mat-banner__quote {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase; letter-spacing: .06em; line-height: 1.0;
  text-shadow: 0 4px 24px rgba(0,0,0,.6);
}
.mat-banner__quote em { font-style: normal; color: var(--gold); }
@media (max-width: 760px) { .mat-banner { height: 300px; } }

/* =================================================================
   6. FIRST CLASS
   ================================================================= */
.first-class { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; list-style: none; padding: 0; margin: 0; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; transition: transform .3s var(--ease); }
.step:hover { transform: translateY(-5px); }
.step__num { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); display: block; margin-bottom: 10px; line-height: 1; }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; letter-spacing: .01em; }
.step p { font-size: .92rem; color: var(--text-soft); }
.first-class__bring { margin-top: 30px; background: var(--ink); color: var(--text-inv); padding: 24px 28px; border-radius: var(--radius); font-size: 1rem; }
.first-class__bring strong { color: var(--gold); }

/* =================================================================
   7. TESTIMONIALS
   ================================================================= */
.gallery { background: var(--ink); color: var(--text-inv); position: relative; }
.gallery__controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 20px;
}
.gallery__control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--text-inv);
  border: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.gallery__control-btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.gallery__slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  margin-top: 30px;
  padding-bottom: 20px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.gallery__slider::-webkit-scrollbar {
  height: 8px;
}
.gallery__slider::-webkit-scrollbar-track {
  background: var(--charcoal-2);
  border-radius: 4px;
}
.gallery__slider::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}
.gallery__item {
  position: relative;
  flex: 0 0 80%;
  max-width: 400px;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-light);
  background: var(--charcoal);
  transition: transform .35s var(--ease), box-shadow .35s;
  cursor: pointer;
  scroll-snap-align: center;
}
@media (min-width: 768px) {
  .gallery__item {
    flex: 0 0 45%;
  }
}
@media (min-width: 1024px) {
  .gallery__item {
    flex: 0 0 30%;
  }
}
.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery__item:hover img {
  transform: scale(1.05);
}
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,11,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gallery__item:hover .gallery__overlay {
  opacity: 1;
}
.gallery__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  transform: scale(.8);
  transition: transform .3s var(--ease);
}
.gallery__item:hover .gallery__icon {
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,10,11,.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.lightbox.is-active {
  opacity: 1;
  pointer-events: all;
}
.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  transform: scale(.95);
  transition: transform .35s var(--ease);
}
.lightbox.is-active .lightbox__content {
  transform: scale(1);
}
.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.8);
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--text-inv-soft);
  font-size: 2.8rem;
  transition: color .2s, transform .2s;
  z-index: 210;
}
.lightbox__close:hover {
  color: var(--gold);
  transform: scale(1.05);
}
.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-inv-soft);
  font-size: 2.5rem;
  padding: 20px;
  transition: color .2s, transform .2s;
  z-index: 210;
}
.lightbox__prev:hover, .lightbox__next:hover {
  color: var(--gold);
}
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

@media (max-width: 760px) {
  .lightbox__prev, .lightbox__next {
    padding: 10px;
    font-size: 1.8rem;
  }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__close { top: 12px; right: 12px; font-size: 2.2rem; }
}

/* =================================================================
   8. FAQ
   ================================================================= */
.faq { background: var(--cream); }
.faq__list { display: grid; gap: 14px; }
.faq__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 22px 24px; font-weight: 700; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-ink); transition: transform .3s var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding: 0 24px 22px; color: var(--text-soft); }
.faq__answer p { max-width: 62ch; }

/* =================================================================
   9. CONTACT
   ================================================================= */
.contact { background: var(--charcoal); color: var(--text-inv); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact__lede { color: var(--text-inv-soft); margin: 16px 0 26px; font-size: 1.05rem; }
.contact__details { display: grid; gap: 14px; margin-bottom: 26px; }
.contact__details li { display: flex; align-items: center; gap: 14px; font-size: 1rem; }
.contact__details a:hover { color: var(--gold); }
.contact__icon { color: var(--gold); font-size: 1.2rem; width: 24px; text-align: center; }
.contact__detail-note { display: inline-block; margin-top: 2px; font-size: .8rem; color: var(--gold); letter-spacing: .04em; }
.contact__map { aspect-ratio: 16/8; border-radius: var(--radius); border: 1px solid var(--line-light); overflow: hidden; }
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.2) contrast(.95); }

.contact__form { background: var(--cream); color: var(--text); padding: 34px 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact__form-title { font-family: var(--font-display); font-size: 1.7rem; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 6px; }
.contact__form-intro { font-size: .82rem; color: var(--text-soft); margin-bottom: 20px; }
.req { color: var(--red); font-weight: 800; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 7px; }
.field .optional { text-transform: none; letter-spacing: 0; font-weight: 500; color: #8a8a90; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px; background: var(--paper);
  font-family: inherit; font-size: .98rem; color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(197,160,90,.22);
}
.field textarea { resize: vertical; }
.contact__form-note { margin-top: 14px; font-size: .92rem; text-align: center; min-height: 1.2em; }
.contact__form-note.is-success { color: #1f5a44; font-weight: 700; }
.contact__form-note.is-error { color: var(--red); font-weight: 700; }

/* =================================================================
   10. FOOTER
   ================================================================= */
.footer { background: var(--ink); color: var(--text-inv); padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 36px; padding-bottom: 48px; }
.footer__brandmark { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer__logo-mark { height: 58px; width: auto; display: block; }
.footer__wordmark { display: flex; flex-direction: column; line-height: 1; }
.footer__wordmark-name { font-family: var(--font-body); font-weight: 600; font-size: 1.5rem; line-height: 1; letter-spacing: .4em; text-transform: uppercase; color: var(--text-inv); }
.footer__wordmark-sub { font-family: var(--font-body); font-size: .62rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.footer__tag { font-size: .78rem; letter-spacing: .24em; color: var(--gold); margin: 14px 0 18px; }
.footer__addr { color: var(--text-inv-soft); font-size: .92rem; }
.footer__col h4 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer__col a, .footer__col p { display: block; color: var(--text-inv-soft); font-size: .94rem; margin-bottom: 10px; transition: color .2s; }
.footer__col a:hover { color: var(--text-inv); }
.footer__social { display: flex; gap: 14px; margin-top: 12px; }
.footer__social a { margin-bottom: 0; display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid var(--line-light); border-radius: 50%; color: var(--text-inv-soft); transition: color .2s, border-color .2s, transform .2s; }
.footer__social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.footer__bar {
  border-top: 1px solid var(--line-light); padding: 22px; max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.footer__bar p { font-size: .85rem; color: var(--text-inv-soft); }
.footer__top { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }

/* =================================================================
   STICKY MOBILE CTA  (shown only on small screens)
   ================================================================= */
.mobile-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  display: none; text-align: center;
  background: var(--gold); color: var(--ink);
  font-weight: 800; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 16px; border-radius: 100px; box-shadow: 0 14px 34px -10px rgba(0,0,0,.6);
  transition: transform .3s var(--ease), opacity .3s;
}
.mobile-cta.is-hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }

/* =================================================================
   SCROLL REVEAL ANIMATION
   ================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span { animation: none; }
  html { scroll-behavior: auto; }
  .mobile-cta { transition: none; }
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
  .program-grid, .price-grid, .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card--feature { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .coach-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }

  /* mobile nav */
  .nav__links {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    width: min(82vw, 320px); height: 100vh; height: 100dvh;
    background: #0b0b0d;
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 18px; padding: 96px 36px 40px; overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -30px 0 60px -20px rgba(0,0,0,.6); z-index: 105;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.05rem; }
  .nav__cta { align-self: stretch; text-align: center; }
  .nav__toggle { display: flex; z-index: 110; }

  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 24px 18px; }
  .program-grid, .price-grid, .quote-grid, .steps { grid-template-columns: 1fr; }
  .price-card--feature { grid-column: span 1; }

  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .field-row { grid-template-columns: 1fr; }

  /* stack hero CTAs full-width so they aren't cramped */
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }

  /* show sticky mobile CTA */
  .mobile-cta { display: block; }

  /* ----- RESPONSIVE SCHEDULE: compact, swipeable table (keeps height short) ----- */
  .schedule__wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
  .schedule__table { min-width: 640px; box-shadow: none; }
  .schedule__table thead th { padding: 12px 10px; font-size: .82rem; }
  .schedule__table tbody th { font-size: .92rem; padding: 12px 10px; white-space: nowrap; }
  .schedule__table td { padding: 10px; }
  .schedule__table .cls { font-size: .72rem; padding: 3px 7px; }
  .schedule__table td small { font-size: .66rem; }
  .schedule__swipe { display: block; }

  /* ----- stack coach cards: portrait photo on top, bio below ----- */
  .coach { grid-template-columns: 1fr; gap: 16px; }
  .coach__photo { width: 100%; max-width: 260px; margin: 0 auto; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 460px) {
  body { font-size: 16px; }
  .footer__inner { grid-template-columns: 1fr; }
  .savings { flex-direction: column; align-items: flex-start; gap: 18px; }
  .savings__divider { display: none; }
  .nav__wordmark { font-size: 1.15rem; letter-spacing: .16em; }
  .trust__num { font-size: 1.7rem; }
}