@font-face {
  font-family: "Red Hat Display";
  src: url("../assets/fonts/RedHatDisplay.woff2") format("woff2");
  font-weight: 100 900; font-display: swap;
}
@font-face {
  font-family: "Red Hat Text";
  src: url("../assets/fonts/RedHatText.woff2") format("woff2");
  font-weight: 100 900; font-display: swap;
}

:root {
  --navy: #203A4B;
  --navy-dark: #172D3D;
  --gold: #C3A369;
  --gold-soft: #D9C093;
  --gold-deep: #8E7042;
  --bone: #F1EEE7;
  --bone-alt: #E8E2D3;
  --tan: #E6DFD4;
  --ink: #1A1712;
  --ink-muted: rgba(26,23,18,0.62);
  --line: rgba(26,23,18,0.12);
  --white: #FFFFFF;
  --font-display: "Red Hat Display", Arial, sans-serif;
  --font-body: "Red Hat Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-pill: 999px;
  --radius-card: 20px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --container: 1160px;
  --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem; --sp-5: 1.25rem; --sp-6: 1.5rem;
  --sp-8: 2rem; --sp-12: 3rem; --sp-16: 4rem; --sp-20: 5rem; --sp-24: 6rem;
  --shadow-card: 0 1px 2px rgba(23,45,61,0.06), 0 12px 32px -12px rgba(23,45,61,0.16);
  --shadow-card-hover: 0 1px 2px rgba(23,45,61,0.08), 0 20px 40px -14px rgba(23,45,61,0.22);

  /* Motion tokens. The built-in CSS easings are too weak to read as intentional. */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --dur-1: 120ms; --dur-2: 200ms; --dur-3: 420ms; --dur-4: 620ms; --dur-5: 760ms;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, .reveal-group { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body { margin: 0; font-family: var(--font-body); background: var(--bone); color: var(--ink); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; position: relative; }
body::before {
  content: ""; position: fixed; inset: 0; z-index: 1000; pointer-events: none; opacity: 0.025; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; margin: 0; letter-spacing: -0.02em; color: var(--ink); line-height: 1.14; text-wrap: balance; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }

a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.eyebrow { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 700; display: inline-block; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; height: 3.1rem; padding: 0 1.7rem; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.96rem; border: 1.5px solid transparent; transition: transform 0.18s cubic-bezier(.2,.8,.2,1), background 0.2s ease, box-shadow 0.2s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 6px 18px -8px rgba(23,45,61,0.55); }
.btn-primary:hover { background: var(--navy-dark); box-shadow: 0 10px 24px -8px rgba(23,45,61,0.6); }
.btn-outline { background: transparent; color: var(--navy); border-color: rgba(26,23,18,0.18); }
.btn-outline:hover { border-color: var(--navy); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline-light:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.btn-sm { height: 2.6rem; padding: 0 1.2rem; font-size: 0.85rem; border-radius: var(--radius-sm); }

/* ---------- Nav ---------- */
.nav-sticky-wrap { position: static; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1.6rem clamp(1.25rem, 5vw, 3rem); max-width: 1400px; margin: 0 auto; background: transparent; }

/* Desktop: header sticks and settles onto a solid bone panel once you scroll.
   Mobile stays non-sticky and transparent over the hero. */
@media (min-width: 960px) {
  .nav-sticky-wrap {
    position: sticky; top: 0; z-index: 90;
    background: transparent;
    transition: background var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out);
  }
  .nav-sticky-wrap.is-stuck {
    background: #F7F4EE;
    box-shadow: 0 1px 0 rgba(26,23,18,0.07), 0 10px 28px -18px rgba(23,45,61,0.28);
  }
  .nav { transition: padding var(--dur-3) var(--ease-out); }
  .nav-sticky-wrap.is-stuck .nav { padding-top: 1.05rem; padding-bottom: 1.05rem; }

  /* On the solid panel the over-photo treatment must give way to ink-on-bone */
  .page-home .nav-sticky-wrap.is-stuck .nav-links a { color: var(--ink); text-shadow: none; }
  .page-home .nav-sticky-wrap.is-stuck .nav-links a.active { color: var(--navy); }
  .page-home .nav-sticky-wrap.is-stuck .lang-toggle button { color: rgba(26,23,18,0.42); }
  .page-home .nav-sticky-wrap.is-stuck .lang-toggle button:hover { color: rgba(26,23,18,0.72); }
  .page-home .nav-sticky-wrap.is-stuck .lang-toggle button.active { color: var(--navy); }
  .page-home .nav-sticky-wrap.is-stuck .lang-toggle button:not(:first-child) { border-left-color: rgba(26,23,18,0.16); }
  .page-home .nav-sticky-wrap.is-stuck .brand img { filter: none; }
  .page-home .nav-sticky-wrap.is-stuck .menu-btn { color: var(--navy); filter: none; }
}
.brand img { height: 42px; width: auto; }
.nav-links { display: none; align-items: center; gap: 2.25rem; font-size: 0.92rem; font-weight: 600; }
.nav-links a { position: relative; padding-bottom: 4px; transition: opacity 0.2s ease; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--gold); transition: right 0.25s cubic-bezier(.2,.8,.2,1); }
.nav-links a:hover { opacity: 0.7; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--navy); }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-right { display: flex; align-items: center; gap: 0.9rem; }
.lang-toggle { display: inline-flex; align-items: center; font-size: 0.86rem; font-weight: 800; letter-spacing: 0.02em; }
.lang-toggle button { border: none; background: none; padding: 0.2rem 0.5rem; color: rgba(26,23,18,0.4); position: relative; transition: color 0.2s ease; }
.lang-toggle button:first-child { padding-left: 0; }
.lang-toggle button:not(:first-child) { border-left: 1px solid rgba(26,23,18,0.16); }
.lang-toggle button:hover { color: rgba(26,23,18,0.7); }
.lang-toggle button.active { color: var(--navy); }
.lang-toggle button.active::after { content: ""; position: absolute; left: 0.5rem; right: 0.5rem; bottom: -3px; height: 2px; background: var(--gold); border-radius: 2px; }
.lang-toggle button:first-child.active::after { left: 0; }
/* Login: icon only, deliberately quiet so it never competes with the CTA */
.nav-login {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%;
  color: var(--ink); opacity: 0.62;
  transition: opacity var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out);
}
.nav-login svg { width: 21px; height: 21px; }
.nav-login:hover { opacity: 1; background: rgba(26,23,18,0.06); }
.nav-login:active { transform: scale(0.94); }
/* Over the hero photo it reads light, like the nav links */
.page-home .nav-login { color: #fff; opacity: 0.9; filter: drop-shadow(0 1px 8px rgba(0,0,0,0.4)); }
.page-home .nav-login:hover { opacity: 1; background: rgba(255,255,255,0.14); }
@media (min-width: 960px) {
  .page-home .nav-sticky-wrap.is-stuck .nav-login { color: var(--ink); opacity: 0.62; filter: none; }
  .page-home .nav-sticky-wrap.is-stuck .nav-login:hover { opacity: 1; background: rgba(26,23,18,0.06); }
}
/* Mobile menu gets it as a labelled link instead of a bare glyph */
.mobile-login {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--ink); opacity: 0.7; align-self: flex-start;
  transition: opacity var(--dur-2) var(--ease-out);
}
.mobile-login svg { width: 19px; height: 19px; flex-shrink: 0; }
.mobile-login:hover { opacity: 1; }
@media (min-width: 960px) { .mobile-login { display: none; } }

/* Bare navy stripes, no circle */
.menu-btn { display: inline-flex; background: none; border: none; padding: 0; width: 30px; height: 30px; align-items: center; justify-content: center; color: var(--navy); flex-shrink: 0; transition: opacity 0.2s ease; }
.menu-btn:hover { opacity: 0.65; }
.menu-btn svg { width: 26px; height: 26px; }
@media (min-width: 960px) { .menu-btn { display: none; } }

/* Mobile header: decluttered to just logo + menu trigger */
@media (max-width: 640px) {
  .nav { padding-top: 1.1rem; padding-bottom: 1.1rem; }
  /* Header stays logo + menu trigger; login lives inside the menu instead */
  .nav-right .lang-toggle, .nav-right .btn-sm, .nav-right .nav-login { display: none; }
  .nav-right { gap: 0.6rem; }
}

.mobile-menu {
  position: fixed; inset: 0; background: rgba(241,238,231,0.97); backdrop-filter: blur(24px) saturate(140%);
  color: var(--ink); z-index: 100; display: none; flex-direction: column; padding: 1.6rem 1.5rem 2rem; gap: 2.5rem; overflow-y: auto;
}
.mobile-menu.open { display: flex; animation: menuFade 0.25s ease; }
@keyframes menuFade { from { opacity: 0; } to { opacity: 1; } }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu-top img { height: 40px; width: auto; }
.mobile-menu-close { background: rgba(26,23,18,0.06); border: 1px solid rgba(26,23,18,0.1); color: var(--ink); width: 40px; height: 40px; border-radius: 50%; transition: background 0.2s ease, transform 0.2s ease; }
.mobile-menu-close:hover { background: rgba(26,23,18,0.1); transform: rotate(90deg); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.15rem; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.mobile-menu nav a { transition: color 0.2s ease, opacity 0.2s ease; }
.mobile-menu nav a:hover { color: var(--navy); opacity: 0.7; }
.mobile-menu .lang-toggle { align-self: flex-start; font-size: 0.95rem; }
.mobile-menu .btn-outline-light { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- Section rhythm ---------- */
.section { padding: var(--sp-24) 0; }
.section-tight { padding: var(--sp-16) 0; }
.hairline-top { border-top: 1px solid var(--line); }
.section-dark { background: var(--navy-dark); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head { max-width: 100%; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.75rem, 3.1vw, 2.5rem); margin-top: 0.85rem; text-wrap: nowrap; }
/* Headings hold one line on anything above phone width; wrap naturally below it */
@media (max-width: 720px) { .section-head h2 { text-wrap: balance; } }
.section-head p { margin-top: 0.9rem; color: var(--ink-muted); font-size: 1.05rem; max-width: 62ch; }
.section-head.center p { margin-left: auto; margin-right: auto; }
.section-dark .section-head p { color: rgba(255,255,255,0.7); }

/* ---------- Hero: full-bleed photo with transparent nav overlay (all breakpoints) ---------- */
/* Nav must sit above the hero photo. Scoped to below the desktop breakpoint so it
   cannot override the sticky rule declared earlier for >=960px. */
@media (max-width: 959px) { .nav-sticky-wrap { position: relative; z-index: 5; } }
@media (min-width: 960px) { .nav-sticky-wrap { z-index: 90; } }
[data-hero] { position: relative; overflow: visible; padding: 0; }

/* Photo and text share ONE grid cell, so the copy is genuinely centred inside the image */
.hero-stack { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; margin-top: -94px; }
@media (max-width: 640px) { .hero-stack { margin-top: -80px; } }
.hero-stack > .hero-photo-block,
.hero-stack > .hero-text { grid-area: 1 / 1; }

.hero-photo-block { position: relative; max-width: none; }
.hero-photo-accent { display: none; }
.hero-photo-block .frame {
  position: relative; z-index: 1; border-radius: 0; overflow: hidden;
  height: clamp(620px, 92vh, 1000px); background: var(--navy-dark);
}
@supports (height: 92dvh) {
  .hero-photo-block .frame { height: clamp(620px, 92dvh, 1000px); }
}
/* Source is a tall 979x1280 portrait: head ~22-55%, torso ~55-80%, lap/couch ~80-100%.
   Pushing the window down to 52% pulls the seated pose and the couch into frame
   rather than cropping tight to the head. */
/* Desktop/tablet use a landscape shot (1280x720) where he sits right of frame,
   so `cover` fills edge-to-edge with no crop compromise and the open wall on the
   left is free for the copy. Mobile keeps the portrait shot via <picture>. */
.hero-photo-block .frame picture { display: contents; }
.hero-photo-main { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% 42%; }
@media (max-width: 640px) { .hero-photo-main { object-position: 48% 30%; } }

/* Two layers, each with one job, so the fade reads logically:
   1. a dark veil that is strongest under the nav, even through the copy, then releases;
   2. the page colour taking over at the bottom as that veil lets go.
   Keeping them separate avoids the muddy navy-through-cream midtones a single gradient produces. */
.hero-photo-block::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: var(--hero-scrim);
}

/* Hero scrim (option C): brand-tinted navy veil, light at the nav, weighted left
   behind the copy, resolving into the page colour at the bottom. */
:root {
  --hero-scrim:
    linear-gradient(180deg, rgba(241,238,231,0) 76%, rgba(241,238,231,0.55) 91%, rgba(241,238,231,1) 100%),
    linear-gradient(90deg, rgba(32,58,75,0.55) 0%, rgba(32,58,75,0.28) 48%, rgba(32,58,75,0.05) 78%),
    linear-gradient(180deg, rgba(32,58,75,0.14) 0%, rgba(32,58,75,0.06) 30%, rgba(32,58,75,0) 100%);
}

/* Copy is vertically centred over the photo, offset down slightly to clear the nav */
.hero-text {
  position: relative; z-index: 3; align-self: center; justify-self: center;
  text-align: center; padding: 4.5rem 1.5rem 0; max-width: 780px; width: 100%;
}

/* Desktop/tablet: he sits right of frame, so the copy takes the open wall on the left */
@media (min-width: 641px) {
  .hero-text {
    justify-self: stretch; text-align: left; width: 100%;
    max-width: calc(var(--container) + 6rem); margin: 0 auto;
    padding: 4.5rem clamp(1.25rem, 4vw, 3rem) 0;
  }
  .hero-text > * { max-width: 32rem; margin-right: auto; }
  .hero-text .hero-cta-row { justify-content: flex-start; }
}

/* Mobile: portrait shot, his face sits upper-centre, so the copy drops below it */
@media (max-width: 640px) {
  .hero-text { align-self: end; padding-bottom: clamp(2rem, 7vh, 4rem); }
}
.hero-text .eyebrow { display: none; }
.hero-text h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); line-height: 1.08; letter-spacing: -0.03em; color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
.hero-sub { margin: 1.6rem auto 0; font-size: clamp(1.05rem, 1.3vw, 1.2rem); color: rgba(255,255,255,0.88); max-width: 46ch; line-height: 1.6; text-shadow: 0 1px 12px rgba(0,0,0,0.45); }
.hero-cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.25rem; }
.hero-trust { margin-top: 1.85rem; font-size: 0.92rem; color: var(--gold-soft); font-weight: 700; letter-spacing: 0.01em; text-shadow: 0 1px 10px rgba(0,0,0,0.5); }

/* Eyebrow duplicate becomes the client's cream pill badge, top-right of the photo itself */
.hero-eyebrow-mobile {
  display: inline-flex; position: absolute; top: 9.5rem; right: clamp(3.5rem, 12vw, 8rem); z-index: 4;
  color: #946E3A; background: rgba(148,110,58,0.16); border: 1px solid rgba(148,110,58,0.30);
  padding: 0.36rem 0.8rem; border-radius: var(--radius-pill); font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; backdrop-filter: blur(4px);
}
@media (max-width: 640px) { .hero-eyebrow-mobile { top: 8.5rem; right: clamp(2rem, 9vw, 4rem); font-size: 0.56rem; padding: 0.32rem 0.7rem; } }

/* hero entrance keyframes live in the motion system at the end of this file */

/* Nav sits transparently over the photo. The veil above guarantees contrast,
   so the logo and hamburger need no chip, border, or halo of their own. */
/* Hamburger stays bare navy stripes over the photo too, lifted by a soft shadow */
.page-home .menu-btn { color: var(--navy); filter: drop-shadow(0 1px 4px rgba(255,255,255,0.55)); }
.page-home .brand img { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.brand img { height: 58px; }
@media (max-width: 640px) { .brand img { height: 62px; } }
.page-home .nav-links a { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.page-home .nav-links a.active { color: var(--gold-soft); }
.page-home .lang-toggle button { color: rgba(255,255,255,0.6); }
.page-home .lang-toggle button:hover { color: rgba(255,255,255,0.9); }
.page-home .lang-toggle button.active { color: #fff; }
.page-home .lang-toggle button:not(:first-child) { border-left-color: rgba(255,255,255,0.3); }

/* ---------- Why it works: text + checklist left, matching-height quote panel right ---------- */
.why-split { display: grid; gap: var(--sp-8); }
@media (min-width: 860px) { .why-split { grid-template-columns: 1fr 1fr; align-items: stretch; } }

.why-col h2 { font-size: clamp(1.5rem, 2.3vw, 2.05rem); text-wrap: nowrap; }
@media (max-width: 860px) { .why-col h2 { text-wrap: balance; font-size: clamp(1.75rem, 3.1vw, 2.5rem); } }
.why-body { margin-top: 1.1rem; color: var(--ink-muted); font-size: 1.05rem; line-height: 1.6; max-width: 46ch; }

.why-checklist { display: flex; flex-direction: column; gap: 1.25rem; margin-top: var(--sp-6); }
.why-check { display: flex; align-items: flex-start; gap: 0.85rem; }
/* Bare gold check marks, no circle */
.why-check-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.why-check p { font-size: 1.02rem; color: var(--ink); line-height: 1.55; }

.quote-panel {
  background: var(--navy); color: #fff; border-radius: var(--radius-card);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.75rem, 4vw, 3rem);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 20px 44px -18px rgba(23,45,61,0.5); min-height: 320px;
}
.quote-panel blockquote {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.5; letter-spacing: -0.01em;
  margin: 0 auto; max-width: 30ch;
}
.quote-panel cite {
  display: block; margin-top: 1.75rem; padding-top: 1.35rem; font-style: normal;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold-soft); border-top: 1px solid rgba(217,192,147,0.28); max-width: 14rem; width: 100%;
}

/* ---------- Triptych: 3-card grid matching the client's real color scheme ---------- */
.shift-sequence { display: grid; gap: var(--sp-6); }
@media (min-width: 860px) { .shift-sequence { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.shift-block {
  border-radius: var(--radius-card); padding: var(--sp-12) var(--sp-8); text-align: center;
  display: flex; flex-direction: column; align-items: center;
  background: var(--white); box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
}
.shift-block:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.shift-block.dark { background: var(--navy); color: #fff; box-shadow: 0 20px 44px -18px rgba(23,45,61,0.55); }
.shift-block.dark h3 { color: #fff; }
.shift-block.dark p { color: rgba(255,255,255,0.72) !important; }
.shift-block.tan { background: var(--tan); color: var(--gold-deep); }
.shift-block.tan h3 { color: var(--gold-deep); }
.shift-block.tan p { color: rgba(142,112,66,0.8) !important; }

.shift-icon-wrap { display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-6); }
.shift-icon { width: 110px; height: 110px; }
.shift-icon.invert { filter: brightness(0) invert(1); }
.shift-icon.tan-icon { filter: brightness(0) saturate(100%) invert(46%) sepia(24%) saturate(908%) hue-rotate(347deg) brightness(90%) contrast(87%); }

.shift-block h3 { font-size: 1.35rem; margin-bottom: var(--sp-3); }
.shift-block p { font-size: 0.98rem; line-height: 1.6; }
.tri-banner { margin-top: var(--sp-6); padding: var(--sp-8); border-radius: var(--radius-card); background: var(--bone-alt); text-align: center; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--navy); width: 100%; }

/* ---------- Program outline: light, airy week grid + modal ---------- */
.section-program { background: var(--bone-alt); }
.week-grid { display: grid; gap: clamp(1.15rem, 1.7vw, 1.6rem); grid-template-columns: 1fr; }
@media (min-width: 700px) { .week-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .week-grid { grid-template-columns: repeat(3, 1fr); } }

.week-card {
  position: relative; background: var(--white); border-radius: var(--radius-card);
  padding: 2.25rem 2rem 2rem; display: flex; flex-direction: column;
  box-shadow:
    0 2px 4px rgba(23,45,61,0.04),
    0 10px 20px -10px rgba(23,45,61,0.14),
    0 28px 48px -24px rgba(23,45,61,0.26);
  transition: transform 0.35s cubic-bezier(.23,1,.32,1), box-shadow 0.35s cubic-bezier(.23,1,.32,1), background 0.3s ease;
}
.week-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 2px 4px rgba(23,45,61,0.08),
    0 18px 32px -12px rgba(23,45,61,0.3),
    0 46px 72px -28px rgba(23,45,61,0.45);
}
.week-card .num { font-family: var(--font-display); font-weight: 800; color: var(--gold-deep); font-size: 0.74rem; letter-spacing: 0.09em; text-transform: uppercase; transition: color 0.3s ease; }
.week-card h4 { color: var(--ink); font-size: 1.08rem; margin-top: 0.5rem; transition: color 0.3s ease; }
.week-card p { color: var(--ink-muted); font-size: 0.93rem; line-height: 1.55; margin-top: 0.5rem; flex-grow: 1; transition: color 0.3s ease; }
.week-card-read {
  align-self: flex-start; margin-top: 1.35rem; background: none; border: none; padding: 0;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.03em; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 6px; transition: color 0.25s ease;
}

/* Week 1 ships in the dark scheme. Hovering any other card adopts the same scheme
   and releases back to white on leave. Gold stays gold in both states. */
.week-card.is-active,
.week-card:hover { background: var(--navy); }
.week-card.is-active h4,
.week-card:hover h4 { color: #fff; }
.week-card.is-active p,
.week-card:hover p { color: rgba(255,255,255,0.72); }
.week-card.is-active .num,
.week-card:hover .num,
.week-card.is-active .week-card-read,
.week-card:hover .week-card-read { color: var(--gold-soft); }
.week-card.is-active {
  box-shadow:
    0 2px 4px rgba(23,45,61,0.1),
    0 18px 32px -12px rgba(23,45,61,0.32),
    0 46px 72px -28px rgba(23,45,61,0.42);
}
/* While another week is hovered, week 1 hands the dark scheme over and reverts to white */
.week-grid:has(.week-card:hover) .week-card.is-active:not(:hover) {
  background: var(--white);
  box-shadow:
    0 2px 4px rgba(23,45,61,0.04),
    0 10px 20px -10px rgba(23,45,61,0.14),
    0 28px 48px -24px rgba(23,45,61,0.26);
}
.week-grid:has(.week-card:hover) .week-card.is-active:not(:hover) h4 { color: var(--ink); }
.week-grid:has(.week-card:hover) .week-card.is-active:not(:hover) p { color: var(--ink-muted); }
.week-grid:has(.week-card:hover) .week-card.is-active:not(:hover) .num,
.week-grid:has(.week-card:hover) .week-card.is-active:not(:hover) .week-card-read { color: var(--gold-deep); }
.week-card-read svg { width: 13px; height: 13px; transition: transform 0.3s cubic-bezier(.23,1,.32,1); }
.week-card-read:hover svg { transform: translateX(4px); }

.week-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 1.25rem; }
.week-modal.open { display: flex; }
.week-modal-backdrop { position: absolute; inset: 0; background: rgba(23,30,38,0.6); backdrop-filter: blur(3px); animation: modalFade 0.25s ease; }
.week-modal-card {
  position: relative; z-index: 1; background: var(--bone); border-radius: var(--radius-card); max-width: 780px; width: 100%;
  max-height: 86vh; overflow-y: auto; padding: clamp(1.75rem, 4vw, 3rem); box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
  animation: modalPop 0.3s cubic-bezier(.2,.8,.2,1);
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop { from { opacity: 0; transform: translateY(16px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.week-modal-close {
  position: absolute; top: clamp(1rem, 3vw, 1.75rem); right: clamp(1rem, 3vw, 1.75rem); width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #fff; border: none; display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease;
}
.week-modal-close:hover { transform: rotate(90deg); }
.week-modal-body { display: grid; gap: var(--sp-8); }
@media (min-width: 640px) { .week-modal-body { grid-template-columns: 1.3fr 1fr; align-items: start; } }
.week-modal-text h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin-top: var(--sp-2); padding-right: 2.5rem; }
.week-modal-text h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; margin: var(--sp-5) 0 var(--sp-2); color: var(--navy); }
.week-modal-text p { color: var(--ink-muted); line-height: 1.65; margin-bottom: var(--sp-2); }
.week-modal-body img { border-radius: var(--radius-md); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
@media (max-width: 639px) { .week-modal-body img { order: -1; aspect-ratio: 16/9; } }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; gap: var(--sp-8); }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 1fr auto; align-items: stretch; } }

.price-card {
  position: relative; background: var(--white); border: 1px solid rgba(26,23,18,0.07); border-radius: var(--radius-card);
  padding: 2.75rem 2.25rem 2.5rem; display: flex; flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 1px 2px rgba(23,45,61,0.03), 0 10px 24px -14px rgba(23,45,61,0.14);
  transition: box-shadow 0.35s cubic-bezier(.23,1,.32,1), transform 0.35s cubic-bezier(.23,1,.32,1), border-color 0.35s ease;
}
/* Hover: lifts and floats, picked out by a hairline gold border. No top rule. */
.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow:
    0 2px 4px rgba(23,45,61,0.06),
    0 18px 32px -12px rgba(23,45,61,0.22),
    0 46px 72px -28px rgba(23,45,61,0.32);
}


.price-badge {
  position: absolute; top: -0.7rem; left: 2.25rem; display: inline-flex; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--navy-dark); background: var(--gold-soft); padding: 0.3rem 0.7rem; border-radius: var(--radius-pill); box-shadow: 0 4px 10px -4px rgba(23,45,61,0.4);
}
.price-name { font-size: 1.05rem; letter-spacing: -0.01em; }
.price-figure { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; font-variant-numeric: tabular-nums; margin-top: 0.85rem; line-height: 1; letter-spacing: -0.02em; }
.price-desc-text { font-size: 0.95rem; color: var(--ink-muted); line-height: 1.65; flex-grow: 1; margin: 1.5rem 0 0; }
.price-cta { margin-top: 2.25rem; }
/* Note sits below the middle card in its own grid row, so all three cards stay equal height */
.price-note { display: block; font-size: 0.8rem; text-align: center; color: var(--ink-muted); text-decoration: underline; margin-top: 1rem; transition: color 0.2s ease; }
@media (min-width: 900px) { .price-note { grid-column: 2; grid-row: 2; } }
.price-note:hover { color: var(--navy); }

.price-card.featured { background: var(--navy); border-color: rgba(255,255,255,0.08); color: #fff; box-shadow: 0 1px 2px rgba(23,45,61,0.2), 0 24px 44px -16px rgba(23,45,61,0.55); }
.price-card.featured:hover { box-shadow: 0 1px 2px rgba(23,45,61,0.25), 0 28px 50px -16px rgba(23,45,61,0.6); border-color: rgba(255,255,255,0.14); }
.price-card.featured .price-name { color: #fff; }
.price-card.featured .price-desc-text { color: rgba(255,255,255,0.7); }
.price-card.featured .price-figure { color: var(--gold-soft); }
.price-card.featured .price-note { color: rgba(255,255,255,0.55); }
.price-card.featured .price-note:hover { color: var(--gold-soft); }

.price-card.tan { background: var(--tan); border-color: rgba(142,112,66,0.16); box-shadow: 0 1px 2px rgba(142,112,66,0.08), 0 10px 24px -14px rgba(142,112,66,0.28); }
.price-card.tan:hover { box-shadow: 0 1px 2px rgba(142,112,66,0.1), 0 16px 32px -14px rgba(142,112,66,0.36); border-color: rgba(142,112,66,0.24); }
.price-card.tan .price-name, .price-card.tan .price-figure { color: var(--gold-deep); }
.price-card.tan .price-desc-text { color: rgba(142,112,66,0.75); }

/* ---------- Testimonials: one unified card system (video card included) ---------- */
.section-testi { background: #203A49; }
.section-testi .section-head h2 { color: #fff; }
.section-testi .section-head .eyebrow { color: var(--gold-soft); }

.testi-grid { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
@media (min-width: 760px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
/* Equal-size rows so every card on the grid matches height, not just within a row */
@media (min-width: 760px) { .testi-grid { align-items: stretch; grid-auto-rows: 1fr; } }

.testi-card {
  background: var(--white); border: 1px solid rgba(26,23,18,0.07); border-radius: var(--radius-card);
  padding: 2rem 1.85rem; display: flex; flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 1px 2px rgba(23,45,61,0.03), 0 12px 28px -18px rgba(23,45,61,0.18);
  transition: transform 0.3s cubic-bezier(.23,1,.32,1), box-shadow 0.3s cubic-bezier(.23,1,.32,1);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 1px 2px rgba(23,45,61,0.05), 0 20px 38px -18px rgba(23,45,61,0.26); }
.testi-card blockquote {
  font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; line-height: 1.5;
  color: var(--ink); margin: 0; flex-grow: 1; letter-spacing: -0.01em;
}
/* Whole card is the trigger; the label is a quiet affordance, not a button */
.testi-card.is-clickable { cursor: pointer; }
.testi-more {
  align-self: flex-start; margin-top: 1.35rem; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.03em; color: var(--gold-deep); position: relative; padding-bottom: 2px;
}
.testi-more::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: currentColor; transition: right 0.3s cubic-bezier(.23,1,.32,1);
}
.testi-card.is-clickable:hover .testi-more::after { right: 0; }

/* ---------- Written testimonial popup ---------- */
.testi-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 1.25rem; }
.testi-modal.open { display: flex; }
.testi-modal-backdrop { position: absolute; inset: 0; background: rgba(14,25,33,0.72); backdrop-filter: blur(4px); animation: modalFade 0.25s ease; }
/* Card is a fixed-height column: identity stays pinned, only the quote scrolls,
   so you never lose track of who is speaking halfway through a long write-up. */
.testi-modal-card {
  position: relative; z-index: 1; background: var(--bone); border-radius: var(--radius-card);
  width: min(560px, 100%); max-height: min(86vh, 40rem);
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5); animation: modalPop 0.3s cubic-bezier(.23,1,.32,1);
  --testi-pad: clamp(1.5rem, 3.6vw, 2.25rem);
}
.testi-modal-head {
  position: relative; z-index: 2;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: var(--testi-pad) var(--testi-pad) 1.15rem;
  border-bottom: 1px solid var(--line); flex-shrink: 0;
}
/* Mirror of the bottom fade, so scrolled text dissolves under the divider */
.testi-modal-head::after {
  content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 1.75rem;
  background: linear-gradient(180deg, var(--bone) 0%, rgba(241,238,231,0) 100%);
  pointer-events: none; opacity: 0; transition: opacity var(--dur-3) var(--ease-out);
}
.testi-modal-card.is-scrolled .testi-modal-head::after { opacity: 1; }
/* Close sits inside the card, on the header's baseline, deliberately quiet */
.testi-modal-close {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; margin: -4px -4px 0 0;
  background: transparent; color: var(--ink); border: none; opacity: 0.45;
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out);
}
.testi-modal-close svg { width: 17px; height: 17px; }
.testi-modal-close:hover { opacity: 1; background: rgba(26,23,18,0.06); }
.testi-modal-close:active { transform: scale(0.92); }
.testi-modal-close:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; opacity: 1; }

.testi-modal-body {
  overflow-y: auto; padding: 1.4rem var(--testi-pad) var(--testi-pad);
  scrollbar-width: thin; scrollbar-color: rgba(26,23,18,0.2) transparent;
}
.testi-modal-body::-webkit-scrollbar { width: 6px; }
.testi-modal-body::-webkit-scrollbar-thumb { background: rgba(26,23,18,0.18); border-radius: 3px; }
.testi-modal-body::-webkit-scrollbar-track { background: transparent; }

/* A fade at the lower edge signals there is more to read; it lifts at the end */
.testi-modal-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3.25rem;
  background: linear-gradient(180deg, rgba(241,238,231,0) 0%, rgba(241,238,231,0.92) 62%, var(--bone) 88%);
  pointer-events: none; opacity: 0; transition: opacity var(--dur-3) var(--ease-out);
}
.testi-modal-card.has-overflow::after { opacity: 1; }
.testi-modal-card.at-end::after { opacity: 0; }

.testi-modal-card blockquote { margin: 0; }
.testi-modal-card blockquote p {
  color: var(--ink-muted); line-height: 1.75; font-size: 1rem;
}
.testi-modal-card blockquote p + p { margin-top: 0.95rem; }
/* Identity sits at the top of the card, with the quote beneath it */
.testi-person { display: flex; align-items: center; gap: 0.8rem; }
.testi-card .testi-person { margin-bottom: 1.35rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.testi-avatar { width: 42px; height: 42px; border-radius: 12px; overflow: hidden; flex-shrink: 0; }
.testi-modal-head .testi-avatar { width: 50px; height: 50px; border-radius: 14px; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-weight: 700; font-size: 0.92rem; }
.testi-role { font-size: 0.82rem; color: var(--ink-muted); margin-top: 1px; }

/* Video card: same shell as the rest. The clip opens in a popup, it never sits inline. */
.testi-watch {
  align-self: flex-start; margin-top: 1.35rem; background: none; border: none; padding: 0;
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: inherit; font-size: 0.86rem; font-weight: 700; color: var(--gold-deep);
  transition: color 0.25s ease;
}
.testi-watch-icon {
  display: flex; align-items: center; justify-content: center; width: 30px; height: 30px;
  border-radius: 50%; background: var(--gold-soft); color: var(--navy-dark); flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(.23,1,.32,1);
}
.testi-watch-icon svg { width: 13px; height: 13px; margin-left: 2px; }
.testi-watch:hover { color: var(--navy); }
.testi-watch:hover .testi-watch-icon { transform: scale(1.1); }

/* ---------- Video popup ---------- */
.video-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 1.25rem; }
.video-modal.open { display: flex; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(14,25,33,0.72); backdrop-filter: blur(4px); animation: modalFade 0.25s ease; }
.video-modal-card {
  position: relative; z-index: 1; background: var(--bone); border-radius: var(--radius-card);
  padding: clamp(1rem, 2.5vw, 1.5rem); width: min(860px, 100%);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5); animation: modalPop 0.3s cubic-bezier(.23,1,.32,1);
}
.video-modal-close {
  position: absolute; top: -14px; right: -14px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #fff; border: none; display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease; z-index: 2;
}
.video-modal-close:hover { transform: rotate(90deg); }
/* The source clip is landscape (480x272), so the frame is 16:9 and contains it whole */
.video-modal-frame { border-radius: var(--radius-md); overflow: hidden; background: var(--navy-dark); aspect-ratio: 16/9; }
.video-modal-frame video { width: 100%; height: 100%; object-fit: contain; display: block; }
.video-modal-meta { margin-top: 0.9rem; text-align: center; }

/* Mobile: horizontal snap carousel */
@media (max-width: 759px) {
  .testi-grid {
    display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin: 0 calc(-1 * clamp(1.25rem, 4vw, 3rem)); padding: 0.5rem clamp(1.25rem, 4vw, 3rem) 1.25rem;
  }
  .testi-grid::-webkit-scrollbar { display: none; }
  .testi-card { flex: 0 0 82%; scroll-snap-align: center; }
}

/* ---------- Facilitator ---------- */
.facilitator-grid { display: grid; gap: var(--sp-12); align-items: center; }
@media (min-width: 900px) { .facilitator-grid { grid-template-columns: 0.85fr 1.15fr; } }
.facilitator-photo-frame { max-width: 320px; margin: 0 auto; border-radius: var(--radius-card); overflow: hidden; }
.facilitator-photo-frame img { width: 100%; aspect-ratio: 4/4.4; object-fit: cover; }
.facilitator-callout { margin-top: var(--sp-6); padding-top: var(--sp-6); border-top: 1px solid var(--line); }
.facilitator-callout p { font-weight: 700; font-family: var(--font-display); font-size: 1.1rem; }

/* ---------- Final CTA: full page width ---------- */
.final-cta { background: var(--navy); color: #fff; border-radius: 0; padding: clamp(3.5rem, 8vw, 6rem) 0; text-align: center; }
.final-cta h2 { color: #fff; font-size: clamp(1.5rem, 2.7vw, 2.2rem); max-width: none; margin: 0 auto; text-wrap: nowrap; }
@media (max-width: 860px) { .final-cta h2 { text-wrap: balance; max-width: 24ch; } }
.final-cta .hero-cta-row { margin-top: var(--sp-8); }

/* ---------- Footer ---------- */
footer { background: #16262E; color: #fff; padding: var(--sp-16) 0 var(--sp-8); }
.footer-grid { display: grid; gap: var(--sp-8); grid-template-columns: 1fr; text-align: center; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-col h5 { text-transform: uppercase; font-size: 0.76rem; letter-spacing: 0.08em; color: var(--gold-soft); margin-bottom: var(--sp-4); font-weight: 700; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.68); margin-bottom: var(--sp-2); font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { margin-top: var(--sp-16); padding-top: var(--sp-8); border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--sp-3); font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-wordmark { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: 0.04em; color: #fff; }

/* ---------- Legal pages ---------- */
.legal { padding: clamp(2.5rem, 6vw, 4.5rem) 0 var(--sp-24); }
.legal-inner { max-width: 760px; }
.legal h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-top: 0.75rem; letter-spacing: -0.03em; }
.legal-meta { margin-top: 1rem; color: var(--ink-muted); font-size: 1rem; }
.legal h2 { font-size: clamp(1.15rem, 1.9vw, 1.35rem); margin-top: 2.75rem; }
.legal p { margin-top: 0.9rem; color: var(--ink-muted); line-height: 1.75; }
.legal-list { margin: 0.9rem 0 0; padding-left: 1.1rem; color: var(--ink-muted); line-height: 1.75; }
.legal-list li { margin-top: 0.5rem; }
.legal-link { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal-link:hover { color: var(--navy); }
/* Only the active language block renders. Default to EN before JS runs. */
[data-lang-block] { display: none; }
[data-lang-block].is-active { display: block; }
html:not(.js) [data-lang-block="en"] { display: block; }

/* ---------- Page hero ---------- */
.page-hero { padding: var(--sp-16) 0 var(--sp-6); text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin-top: var(--sp-4); }
.page-hero p { max-width: 56ch; margin: var(--sp-4) auto 0; color: var(--ink-muted); font-size: 1.05rem; }

.center-text { text-align: center; }

/* ============================================================
   MOTION SYSTEM
   Only transform / opacity / filter are animated, so everything
   stays on the compositor. Transitions (not keyframes) are used for
   reveals so an interrupted scroll retargets instead of restarting.
   ============================================================ */

/* --- Scroll progress: thin gold rule that tracks reading position --- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 150;
  background: var(--gold); transform: scaleX(0); transform-origin: 0 50%;
  pointer-events: none; opacity: 0; transition: opacity var(--dur-2) var(--ease-out);
}
.scroll-progress.is-visible { opacity: 1; }

/* --- Reveal on scroll. Default rises; variants come from data-reveal --- */
html.js .reveal-group {
  opacity: 0;
  transform: translate3d(var(--rv-x, 0), var(--rv-y, 18px), 0) scale(var(--rv-s, 1));
  filter: blur(var(--rv-blur, 0));
  transition:
    opacity var(--dur-4) var(--ease-out),
    transform var(--dur-4) var(--ease-out),
    filter var(--dur-4) var(--ease-out);
}
html.js .reveal-group.in-view {
  opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0);
}
html.js [data-reveal="left"]  { --rv-x: -28px; --rv-y: 0; }
html.js [data-reveal="right"] { --rv-x: 28px;  --rv-y: 0; }
html.js [data-reveal="scale"] { --rv-y: 10px; --rv-s: 0.97; }
/* Blur-rise reads as the text settling into focus, and hides any sub-pixel jitter */
html.js [data-reveal="blur"]  { --rv-y: 14px; --rv-blur: 8px; }

/* A container that stages its children does not animate itself, or the two
   motions compound and the whole grid appears to drift. */
html.js .reveal-group[data-stagger] { opacity: 1; transform: none; filter: none; }

/* --- Staggered children. JS stamps --i on each child of [data-stagger] --- */
html.js [data-stagger] > * {
  opacity: 0; transform: translate3d(0, 18px, 0);
  transition:
    opacity var(--dur-3) var(--ease-out),
    transform var(--dur-3) var(--ease-out);
}
html.js [data-stagger].in-view > * {
  opacity: 1; transform: translate3d(0, 0, 0);
  transition-delay: calc(var(--i, 0) * var(--stagger, 65ms));
}
/* Long grids need a tighter step, or the last card lands a second late */
html.js .week-grid { --stagger: 34ms; }
html.js .testi-grid { --stagger: 50ms; }

/* --- Hero: photo wipes open, copy rises behind it --- */
@keyframes heroPhotoIn {
  from { clip-path: inset(14% 0 0 0); transform: scale(1.04); }
  to   { clip-path: inset(0 0 0 0);   transform: scale(1); }
}
html.js .hero-photo-block .frame { animation: heroPhotoIn 1.1s var(--ease-out) both; }
@keyframes heroIn { from { opacity: 0; transform: translate3d(0, 16px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
[data-hero-el] { animation: heroIn var(--dur-5) var(--ease-out) both; animation-delay: var(--hero-delay, 0s); }

/* --- Reduced motion: keep a short cross-fade, drop all travel --- */
@media (prefers-reduced-motion: reduce) {
  html.js .reveal-group,
  html.js [data-stagger] > * {
    transform: none !important; filter: none !important;
    transition: opacity 200ms linear !important;
  }
  html.js [data-stagger].in-view > * { transition-delay: 0ms !important; }
  html.js .hero-photo-block .frame,
  [data-hero-el] { animation: none !important; clip-path: none !important; }
  .scroll-progress { display: none; }
}


/* ============================================================
   PRP EXCLUSIVE: private mentorship page
   Navy-dominant inversion of the homepage palette. Cards use a
   nested outer-shell / inner-core enclosure so they read as
   machined objects rather than flat rectangles.
   ============================================================ */
.page-mentor { background: var(--navy-dark); color: rgba(255,255,255,0.78); }
.page-mentor h1, .page-mentor h2, .page-mentor h3, .page-mentor h4 { color: #fff; }
.page-mentor .nav-links a { color: rgba(255,255,255,0.82); }
.page-mentor .nav-links a.active { color: var(--gold-soft); }
.page-mentor .lang-toggle button { color: rgba(255,255,255,0.5); }
.page-mentor .lang-toggle button.active { color: #fff; }
.page-mentor .lang-toggle button:not(:first-child) { border-left-color: rgba(255,255,255,0.22); }
.page-mentor .nav-login { color: #fff; opacity: 0.75; }
.page-mentor .nav-login:hover { opacity: 1; background: rgba(255,255,255,0.12); }
.page-mentor .menu-btn { color: #fff; filter: none; }
/* The lockup is dark-on-light by design, so it goes monochrome white on navy */
.page-mentor .brand img { filter: brightness(0) invert(1); opacity: 0.94; }
@media (min-width: 960px) {
  .page-mentor .nav-sticky-wrap.is-stuck { background: rgba(23,45,61,0.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(255,255,255,0.08); }
}

.mx-section { padding: clamp(4.5rem, 11vw, 9rem) 0; }
.mx-pill {
  display: inline-flex; align-items: center; gap: 0.5rem; border-radius: var(--radius-pill);
  padding: 0.4rem 0.9rem; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-soft);
  background: rgba(195,163,105,0.12); border: 1px solid rgba(195,163,105,0.3);
}
.mx-lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); line-height: 1.72; color: rgba(255,255,255,0.72); max-width: 46ch; }

/* ---- Double-bezel enclosure: outer tray, inner plate ---- */
.mx-shell {
  background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 2rem; padding: 0.5rem;
}
.mx-core {
  background: linear-gradient(180deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.02) 100%);
  border-radius: calc(2rem - 0.5rem); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}

/* ---- Hero ---- */
.mx-hero { padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 9vw, 7rem); position: relative; overflow: hidden; }
.mx-hero::before {
  content: ""; position: absolute; top: -30%; right: -10%; width: 60vw; height: 60vw; pointer-events: none;
  background: radial-gradient(circle, rgba(195,163,105,0.13) 0%, rgba(195,163,105,0) 62%);
}
.mx-hero-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; position: relative; }
@media (min-width: 900px) { .mx-hero-grid { grid-template-columns: 1.15fr 0.85fr; } }
.mx-hero h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); line-height: 1.06; margin: 1.35rem 0 1.5rem; }
.mx-hero h1 em { font-style: normal; color: var(--gold-soft); }
.mx-portrait-shell { max-width: 25rem; margin-left: auto; }
.mx-portrait { border-radius: calc(2rem - 0.5rem); overflow: hidden; aspect-ratio: 4/4.5; }
.mx-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Price line ---- */
.mx-price-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.75rem; margin-bottom: 1.9rem; }
.mx-price { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 3.6vw, 2.7rem); color: #fff; letter-spacing: -0.02em; }
.mx-price-meta { font-size: 0.9rem; color: rgba(255,255,255,0.55); }

/* ---- CTA with nested trailing icon ---- */
.mx-cta {
  display: inline-flex; align-items: center; gap: 0.9rem; padding: 0.55rem 0.6rem 0.55rem 1.6rem;
  border-radius: var(--radius-pill); background: var(--gold); color: var(--navy-dark);
  font-family: var(--font-display); font-weight: 800; font-size: 0.98rem; border: none;
  transition: background var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out), box-shadow var(--dur-3) var(--ease-out);
  box-shadow: 0 10px 30px -12px rgba(195,163,105,0.6);
}
.mx-cta-icon {
  width: 2.3rem; height: 2.3rem; border-radius: 50%; background: rgba(23,45,61,0.14);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform var(--dur-3) var(--ease-out), background var(--dur-2) var(--ease-out);
}
.mx-cta-icon svg { width: 16px; height: 16px; }
.mx-cta:hover { background: var(--gold-soft); box-shadow: 0 16px 40px -14px rgba(195,163,105,0.75); }
.mx-cta:hover .mx-cta-icon { transform: translate(3px, -3px); background: rgba(23,45,61,0.22); }
.mx-cta:active { transform: scale(0.98); }
.mx-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.mx-cta-ghost { font-weight: 700; font-size: 0.94rem; color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.28); padding-bottom: 2px; transition: color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out); }
.mx-cta-ghost:hover { color: #fff; border-color: var(--gold-soft); }

/* ---- Fact strip ---- */
.mx-facts { display: grid; gap: 1px; background: rgba(255,255,255,0.1); border-radius: var(--radius-md); overflow: hidden; }
@media (min-width: 720px) { .mx-facts { grid-template-columns: repeat(3, 1fr); } }
.mx-fact { background: var(--navy-dark); padding: 1.6rem clamp(1.2rem, 2.4vw, 2rem); }
.mx-fact dt { font-family: var(--font-display); font-weight: 800; font-size: 1.28rem; color: var(--gold-soft); }
.mx-fact dd { margin: 0.35rem 0 0; font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* ---- Pillars: editorial split, alternating ---- */
.mx-pillar { display: grid; gap: clamp(2rem, 4.5vw, 3.75rem); align-items: center; }
@media (min-width: 900px) { .mx-pillar { grid-template-columns: 1fr 1fr; } }
.mx-pillar + .mx-pillar { margin-top: clamp(4rem, 9vw, 7.5rem); }
@media (min-width: 900px) { .mx-pillar.flip .mx-pillar-visual { order: -1; } }
.mx-pillar-num { font-family: var(--font-display); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.18em; color: rgba(195,163,105,0.75); }
.mx-pillar h2 { font-size: clamp(1.7rem, 3.2vw, 2.35rem); margin: 0.8rem 0 1.6rem; }
.mx-list { display: flex; flex-direction: column; gap: 1.15rem; margin-top: 1.7rem; }
.mx-list-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.mx-list-item svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 0.3rem; color: var(--gold); }
.mx-list-item p { font-size: 0.98rem; line-height: 1.65; color: rgba(255,255,255,0.7); }
.mx-list-item strong { color: #fff; font-weight: 700; }

.mx-visual-inner { border-radius: calc(2rem - 0.5rem); overflow: hidden; }
.mx-visual-inner img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.mx-glyph { display: grid; place-items: center; aspect-ratio: 4/3.2; }
.mx-glyph svg { width: 45%; max-width: 190px; height: auto; color: var(--gold); opacity: 0.9; }

/* Stylised member-area panel, standing in for a real product screenshot */
.mx-mock { aspect-ratio: 4/3.2; background: var(--bone); border-radius: calc(2rem - 0.5rem); overflow: hidden; display: flex; flex-direction: column; }
.mx-mock-bar { background: linear-gradient(100deg, var(--gold-deep), var(--gold)); padding: 0.85rem 1rem; display: flex; align-items: center; gap: 0.5rem; }
.mx-mock-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.55); }
.mx-mock-tabs { display: flex; gap: 0.9rem; padding: 0.7rem 1rem; border-bottom: 1px solid var(--line); font-size: 0.6rem; font-weight: 700; color: var(--ink-muted); overflow: hidden; }
.mx-mock-tabs span:first-child { color: var(--gold-deep); }
.mx-mock-body { flex: 1; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 0.75rem; padding: 0.85rem 1rem 1rem; }
.mx-mock-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 0.7rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem; }
.mx-mock-card img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.mx-mock-name { font-family: var(--font-display); font-weight: 800; font-size: 0.6rem; color: var(--ink); }
.mx-mock-role { font-size: 0.5rem; color: var(--ink-muted); }
.mx-mock-hero { border-radius: 8px; background: linear-gradient(135deg, var(--navy), var(--gold-deep)); display: flex; align-items: flex-end; padding: 0.7rem; }
.mx-mock-hero span { font-family: var(--font-display); font-weight: 800; font-size: 0.62rem; color: #fff; line-height: 1.25; }

/* ---- Closing offer panel ---- */
.mx-offer { text-align: center; }
.mx-offer h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); margin-bottom: 1.1rem; }
.mx-offer .mx-lead { margin: 0 auto 2.2rem; text-align: center; }
.mx-offer .mx-cta-row { justify-content: center; }
.mx-incl { display: grid; gap: 0.9rem; text-align: left; margin: 2.4rem auto 0; max-width: 34rem; }
.mx-incl div { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.95rem; color: rgba(255,255,255,0.72); }
.mx-incl svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 0.25rem; }

/* ============================================================
   Discovery call booking page
   Light and low-pressure by design: the calendar is the page,
   everything else exists only to remove hesitation around it.
   ============================================================ */
.bk-hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1.75rem, 4vw, 2.75rem); text-align: center; }
.bk-hero .mx-pill { color: var(--gold-deep); background: rgba(148,110,58,0.12); border-color: rgba(148,110,58,0.28); }
.bk-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin: 1.3rem auto 1.2rem; max-width: 18ch; }
.bk-lead { font-size: clamp(1.02rem, 1.7vw, 1.15rem); line-height: 1.7; color: var(--ink-muted); max-width: 44ch; margin: 0 auto; }

/* Calendar sits in the same nested enclosure the rest of the site uses */
.bk-shell {
  background: rgba(26,23,18,0.04); border: 1px solid rgba(26,23,18,0.09);
  border-radius: 2rem; padding: 0.5rem;
  box-shadow: 0 30px 60px -30px rgba(23,45,61,0.28);
}
.bk-frame { border-radius: calc(2rem - 0.5rem); overflow: hidden; background: #fff; }
.bk-frame iframe { width: 100%; height: 820px; border: 0; display: block; }
@media (max-width: 860px) { .bk-frame iframe { height: 740px; } }
@media (max-width: 520px) { .bk-frame iframe { height: 680px; } }

.bk-fallback { text-align: center; margin-top: 1.25rem; font-size: 0.92rem; color: var(--ink-muted); }
.bk-fallback a { color: var(--gold-deep); font-weight: 700; border-bottom: 1px solid rgba(148,110,58,0.35); padding-bottom: 1px; }
.bk-fallback a:hover { border-color: var(--gold-deep); }

.bk-notes { display: grid; gap: var(--sp-6); margin-top: clamp(3rem, 7vw, 5rem); }
@media (min-width: 760px) { .bk-notes { grid-template-columns: repeat(3, 1fr); } }
.bk-note { text-align: center; padding: 0 0.5rem; }
.bk-note-icon {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 1rem;
  display: grid; place-items: center; color: var(--gold-deep);
  background: rgba(148,110,58,0.1); border: 1px solid rgba(148,110,58,0.22);
}
.bk-note-icon svg { width: 20px; height: 20px; }
.bk-note h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.bk-note p { font-size: 0.94rem; line-height: 1.65; color: var(--ink-muted); }

/* ============================================================
   Checkout pages
   Order summary stays beside the payment form on desktop so
   people can see what they are buying while they fill it in.
   ============================================================ */
.co-hero { padding: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2.25rem); text-align: center; }
.co-hero .mx-pill { color: var(--gold-deep); background: rgba(148,110,58,0.12); border-color: rgba(148,110,58,0.28); }
.co-hero h1 { font-size: clamp(1.9rem, 4vw, 2.75rem); margin: 1.15rem auto 0; max-width: 20ch; }

.co-grid { display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); align-items: start; }
@media (min-width: 1000px) { .co-grid { grid-template-columns: 21rem 1fr; } }

/* Summary rail */
.co-summary { position: relative; }
@media (min-width: 1000px) { .co-summary { position: sticky; top: 6.5rem; } }
.co-card {
  background: var(--white); border: 1px solid rgba(26,23,18,0.09); border-radius: var(--radius-card);
  padding: clamp(1.5rem, 2.6vw, 1.9rem);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 12px 30px -20px rgba(23,45,61,0.22);
}
.co-card-name { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--ink); }
.co-card-price { font-family: var(--font-display); font-weight: 800; font-size: 2.15rem; color: var(--navy); letter-spacing: -0.02em; line-height: 1; margin-top: 0.6rem; }
.co-card-meta { font-size: 0.86rem; color: var(--ink-muted); margin-top: 0.4rem; }
.co-card-rule { height: 1px; background: var(--line); margin: 1.35rem 0; }
.co-card-label { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.9rem; }
.co-incl { display: flex; flex-direction: column; gap: 0.8rem; }
.co-incl div { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.92rem; line-height: 1.55; color: var(--ink-muted); }
.co-incl svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 0.22rem; color: var(--gold); }

.co-secure { display: flex; gap: 0.6rem; align-items: flex-start; margin-top: 1.35rem; font-size: 0.82rem; line-height: 1.55; color: var(--ink-muted); }
.co-secure svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 0.18rem; color: var(--gold-deep); }
.co-terms { margin-top: 1rem; font-size: 0.8rem; color: var(--ink-muted); line-height: 1.55; }
.co-terms a { color: var(--gold-deep); font-weight: 700; border-bottom: 1px solid rgba(148,110,58,0.35); }

/* Payment frame reuses the discovery enclosure */
.co-frame-shell {
  background: rgba(26,23,18,0.04); border: 1px solid rgba(26,23,18,0.09);
  border-radius: 2rem; padding: 0.5rem; box-shadow: 0 30px 60px -30px rgba(23,45,61,0.28);
}
.co-frame { border-radius: calc(2rem - 0.5rem); overflow: hidden; background: #fff; }
/* Generous fixed height: the checkout is cross-origin, so it cannot report its
   own size. Too short means a scrollbar inside a scrollbar, which is worse than
   a little empty space at the bottom. */
.co-frame iframe { width: 100%; height: 1250px; border: 0; display: block; }
@media (max-width: 860px) { .co-frame iframe { height: 1150px; } }
@media (max-width: 520px) { .co-frame iframe { height: 1080px; } }

/* Mentorship checkout keeps the dark, premium register of its sales page */
.page-checkout-mentor .co-card { background: rgba(255,255,255,0.045); border-color: rgba(255,255,255,0.1); box-shadow: inset 0 1px 0 rgba(255,255,255,0.12); }
.page-checkout-mentor .co-card-name { color: #fff; }
.page-checkout-mentor .co-card-price { color: var(--gold-soft); }
.page-checkout-mentor .co-card-meta,
.page-checkout-mentor .co-incl div,
.page-checkout-mentor .co-secure,
.page-checkout-mentor .co-terms { color: rgba(255,255,255,0.62); }
.page-checkout-mentor .co-card-rule { background: rgba(255,255,255,0.12); }
.page-checkout-mentor .co-card-label,
.page-checkout-mentor .co-secure svg { color: var(--gold-soft); }
.page-checkout-mentor .co-frame-shell { background: rgba(255,255,255,0.045); border-color: rgba(255,255,255,0.1); }
.page-checkout-mentor .co-hero .mx-pill { color: var(--gold-soft); background: rgba(195,163,105,0.12); border-color: rgba(195,163,105,0.3); }

/* ============================================================
   Audit fixes
   ============================================================ */
/* Keyboard users get past the nav without tabbing every link */
.skip-link {
  position: fixed; left: 0.75rem; top: 0.75rem; z-index: 200;
  transform: translateY(-160%); transition: transform var(--dur-2) var(--ease-out);
  background: var(--navy); color: #fff; padding: 0.7rem 1.1rem; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
}
.skip-link:focus { transform: translateY(0); }

/* A booking page does not need a nav button pointing at itself, and a checkout
   page should not offer a route away from the form. */
.page-booking .nav-right .btn-sm,
.page-booking .mobile-menu .btn-outline-light { display: none; }

/* 404 */
.nf { min-height: 58vh; display: grid; place-items: center; text-align: center; padding: clamp(4rem, 10vw, 8rem) 0; }
.nf-code { font-family: var(--font-display); font-weight: 800; font-size: clamp(4rem, 12vw, 8rem); line-height: 1; color: var(--gold); opacity: 0.35; letter-spacing: -0.03em; }
.nf h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 1rem 0 1rem; }
.nf p { color: var(--ink-muted); max-width: 42ch; margin: 0 auto 2rem; line-height: 1.7; }
.nf-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
