/* ============ DESIGN TOKENS ============ */
/* Colors extracted from the client's real, live identity (axis33physio.com,
   sampled 2026-08-27 — see brand-actual/README.md) rather than invented:
   navy #022A52 and mid-blue #1478C2, both already carrying the brand. */
:root {
  --primary: oklch(0.284 0.084 252.9);      /* real brand navy #022A52 */
  --primary-ink: oklch(1 0 0);
  --accent: oklch(0.558 0.142 247.8);       /* real brand mid-blue #1478C2 */
  --accent-ink: oklch(1 0 0);               /* verified 4.67:1 */
  --accent-on-dark: oklch(0.72 0.10 248);   /* lightened accent for small text on navy (5.9:1) */
  --bg: oklch(1 0 0);
  --surface: oklch(0.96 0.006 250);
  --ink: oklch(0.18 0.02 253);
  --muted: oklch(0.50 0.02 253);
  --border: oklch(0.18 0.02 253 / 0.12);

  --dark-bg: oklch(0.284 0.084 252.9);      /* the brand navy itself as panel ground */
  --dark-surface: oklch(0.22 0.05 253);
  --dark-ink: oklch(0.97 0.006 250);
  --dark-muted: oklch(0.72 0.02 250);
  --dark-border: oklch(0.97 0.006 250 / 0.16);

  /* Avenir is the client's real typeface (91% of live text nodes sampled).
     macOS ships Avenir Next system-wide, so this renders as the genuine
     face on Mac; production on other platforms needs a licensed webfont
     (Adobe Fonts Avenir kit) or a metric-safe substitute — flagged open,
     not decided here. */
  --font-display: 'Avenir Next', Avenir, 'Century Gothic', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', 'Roboto Mono', monospace;

  --container: 1320px;
  --pad: clamp(20px, 4vw, 56px);

  /* semantic z-index scale */
  --z-sticky: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-toast: 400;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0;
}
p { margin: 0; }
p.prose { max-width: 62ch; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.visually-hidden {
  position: absolute; 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; top: -100%; left: 12px; z-index: var(--z-modal);
  background: var(--primary); color: var(--primary-ink);
  padding: 12px 18px; border-radius: 4px; font-weight: 600; transition: top .2s var(--ease-out-expo);
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

/* ============ HEADER ============ */
header.site {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px; gap: 24px;
}
.wordmark {
  font-weight: 700; font-size: 1.35rem; letter-spacing: -0.03em;
  display: flex; align-items: center; gap: 8px;
}
.wordmark img { height: 26px; width: auto; display: block; }
.wordmark span.mark { color: var(--accent); }

nav.primary-nav { display: flex; align-items: center; gap: 32px; }
nav.primary-nav ul { list-style: none; display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; }
nav.primary-nav a.nav-link {
  font-size: 0.95rem; font-weight: 500; color: var(--ink);
  position: relative; padding: 4px 0;
}
nav.primary-nav a.nav-link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--primary); transition: right .25s var(--ease-out-expo);
}
nav.primary-nav a.nav-link:hover::after,
nav.primary-nav a.nav-link:focus-visible::after,
nav.primary-nav a.nav-link.is-current::after { right: 0; }
nav.primary-nav a.nav-link.is-current { color: var(--primary); }

.has-submenu { position: relative; }
.has-submenu > .nav-link { display: inline-flex; align-items: center; gap: 5px; }
.has-submenu > .nav-link::before {
  content: ''; width: 6px; height: 6px; margin-top: -2px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); transition: transform .2s var(--ease-out-expo);
}
.has-submenu:hover > .nav-link::before,
.has-submenu:focus-within > .nav-link::before { transform: rotate(-135deg); margin-top: 2px; }
.has-submenu .submenu {
  list-style: none; margin: 0; padding: 8px; display: none;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 220px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  box-shadow: 0 12px 32px -12px oklch(0% 0 0 / 0.18); z-index: var(--z-overlay);
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu { display: block; }
.submenu li + li { margin-top: 2px; }
.submenu a {
  display: block; padding: 9px 12px; border-radius: 5px; font-size: 0.9rem; color: var(--ink);
}
.submenu a:hover, .submenu a:focus-visible { background: var(--surface); color: var(--primary); }

.header-ctas { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 0.92rem; letter-spacing: -0.005em;
  padding: 12px 20px; border-radius: 3px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease-out-expo), background-color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--primary); color: var(--primary-ink); }
.btn-primary:hover { background: oklch(from var(--primary) calc(l - 0.03) c h); }
.btn-accent { background: var(--accent); color: var(--accent-ink); }
.btn-accent:hover { background: oklch(from var(--accent) calc(l - 0.04) c h); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--ink); }
.btn-outline-light { background: transparent; color: var(--dark-ink); border-color: var(--dark-border); }
.btn-outline-light:hover { border-color: var(--dark-ink); }
.btn-sm { padding: 12px 18px; font-size: 0.85rem; }

.nav-toggle { display: none; }

@media (max-width: 880px) {
  nav.primary-nav { position: static; }
  nav.primary-nav ul {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0; z-index: var(--z-overlay);
    flex-direction: column; gap: 0; margin: 0; padding: 8px var(--pad) 20px;
    background: var(--bg); border-bottom: 1px solid var(--border);
  }
  nav.primary-nav ul.is-open { display: flex; }
  nav.primary-nav a.nav-link { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .has-submenu > .nav-link { border-bottom: none; }
  .has-submenu > .nav-link::before { display: none; }
  .has-submenu .submenu {
    display: block; position: static; transform: none; box-shadow: none; border: none;
    background: none; padding: 0 0 10px 16px; min-width: 0;
  }
  .submenu a { padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; color: var(--muted); }
  .header-ctas { flex-wrap: wrap; justify-content: flex-end; row-gap: 8px; }
  .header-ctas .btn-sm { padding: 13px 16px; font-size: 0.82rem; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; background: none; border: 1px solid var(--border); border-radius: 3px;
    cursor: pointer; color: var(--ink);
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--dark-bg);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.12) brightness(0.62);
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, oklch(0.10 0.03 253 / 0.94) 0%, oklch(0.10 0.03 253 / 0.38) 46%, oklch(0.10 0.03 253 / 0.15) 68%, transparent 100%),
    linear-gradient(100deg, oklch(0.558 0.142 247.8 / 0.30) 0%, transparent 42%);
}
.hero-mark {
  position: absolute; top: clamp(-40px, -2vw, 0px); right: clamp(-30px, 2vw, 40px);
  font-size: clamp(9rem, 26vw, 22rem); font-weight: 700; letter-spacing: -0.05em;
  color: oklch(0.558 0.142 247.8 / 0.20);
  line-height: 0.8; z-index: 1; user-select: none; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  padding-top: 120px; padding-bottom: clamp(48px, 7vw, 96px);
}
.hero-heading {
  color: var(--dark-ink);
  font-size: clamp(2.6rem, 5.4vw + 0.5rem, 6rem);
  max-width: 15ch;
  margin-bottom: 26px;
}
.hero-heading em { font-style: normal; color: var(--accent-on-dark); }
.hero-sub {
  color: var(--dark-muted); font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 46ch; margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 40px; padding-top: 22px;
  border-top: 1px solid var(--dark-border);
}
.hero-stats span {
  font-size: 0.86rem; color: var(--dark-muted); position: relative; padding-left: 14px;
}
.hero-stats span::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--accent-on-dark);
}

/* Smaller inner-page hero variant — no full-bleed photo needed on every page */
.hero.hero-compact { min-height: unset; }
.hero.hero-compact .hero-content { padding-top: 76px; padding-bottom: clamp(56px, 8vw, 92px); }
.hero.hero-compact .hero-heading { max-width: 20ch; font-size: clamp(2.2rem, 4vw + 0.5rem, 4rem); }
.hero.hero-compact .hero-sub { max-width: 60ch; }

.hero-content, .hero-mark {
  opacity: 1; transform: none;
}
/* Reveal animations enhance an already-visible default: content is never hidden behind opacity:0,
   only nudged into place. If JS never runs (crawler, headless render, reduced motion), nothing is lost. */
html.js-ready .reveal { opacity: 1; transform: translateY(18px); transition: transform .8s var(--ease-out-expo); }
html.js-ready .reveal.in-view { transform: translateY(0); }
html.js-ready .reveal-side-l { opacity: 1; transform: translateX(-22px); transition: transform .9s var(--ease-out-expo); }
html.js-ready .reveal-side-l.in-view { transform: translateX(0); }
html.js-ready .reveal-side-r { opacity: 1; transform: translateX(22px); transition: transform .9s var(--ease-out-expo); }
html.js-ready .reveal-side-r.in-view { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  html.js-ready .reveal, html.js-ready .reveal-side-l, html.js-ready .reveal-side-r {
    transform: none !important; transition: none !important;
  }
}

/* ============ TWO TRACKS ============ */
.tracks { display: grid; grid-template-columns: 1.15fr 1fr; }
@media (max-width: 900px) { .tracks { grid-template-columns: 1fr; } }

.track { position: relative; padding: clamp(56px, 7vw, 100px) var(--pad); display: flex; flex-direction: column; min-height: 620px; }
.track-physio { background: var(--dark-bg); color: var(--dark-ink); }
.track-pilates { background: var(--surface); color: var(--ink); }

.track-kicker { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.02em; margin-bottom: 18px; }
.track-physio .track-kicker { color: var(--accent-on-dark); }
.track-pilates .track-kicker { color: color-mix(in oklab, var(--accent) 70%, var(--ink) 30%); }

/* Section wayfinding tag — one per module so a reader landing mid-scroll (or from a paid ad,
   jumping straight past the hero) always knows which part of the site they're in. Deliberately
   systemic, not decorative: text matches the nav label 1:1 wherever the module has a nav entry. */
.section-tag {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.02em; color: var(--muted);
  margin-bottom: 16px; display: block;
}
.section-tag.on-dark { color: var(--accent-on-dark); }

.track h2 { font-size: clamp(1.9rem, 2.6vw, 2.7rem); margin-bottom: 20px; max-width: 12ch; }

.track-media {
  position: relative; margin: 28px 0 30px; border-radius: 3px; overflow: hidden;
  aspect-ratio: 4 / 3; max-width: 420px;
}
.track-media img { width: 100%; height: 100%; object-fit: cover; }
.track-physio .track-media img { filter: grayscale(1) contrast(1.2) brightness(1.15); }
.track-physio .track-media::after {
  content: ''; position: absolute; inset: 0;
  background: var(--primary); mix-blend-mode: multiply; opacity: 0.94;
}

.track-list { list-style: none; margin: 0 0 34px; padding: 0; display: flex; flex-direction: column; gap: 12px; max-width: 44ch; }
.track-list li { display: flex; gap: 12px; font-size: 0.98rem; line-height: 1.55; }
.track-physio .track-list li { color: var(--dark-muted); }
.track-pilates .track-list li { color: var(--muted); }
.track-list li .num { font-family: var(--font-mono); font-size: 0.82rem; flex-shrink: 0; padding-top: 2px; }
.track-physio .track-list li .num { color: var(--accent-on-dark); }
.track-pilates .track-list li .num { color: color-mix(in oklab, var(--accent) 60%, var(--ink) 40%); }

.track-foot { margin-top: auto; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 20px; }
.track-price { font-family: var(--font-mono); font-size: 0.85rem; }
.track-physio .track-price { color: var(--dark-muted); }
.track-pilates .track-price { color: var(--muted); }
.track-price strong { font-size: 1rem; color: inherit; font-weight: 600; }

/* ============ HOW IT WORKS ============ */
.process { padding: clamp(64px, 8vw, 108px) 0; }
.process-title {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem); max-width: 22ch; margin-bottom: clamp(36px, 5vw, 56px);
}
.process-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px;
}
.process-list li { display: flex; flex-direction: column; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.process-num { font-family: var(--font-mono); font-size: 0.85rem; color: var(--accent); }
.process-list h3 { font-size: 1.15rem; margin-bottom: 8px; }
.process-list p { color: var(--muted); font-size: 0.96rem; }

/* ============ WHO THIS IS FOR ============ */
.qualify { background: var(--surface); padding: clamp(64px, 8vw, 108px) 0; }
.qualify-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px);
}
@media (max-width: 760px) { .qualify-grid { grid-template-columns: 1fr; } }
.qualify-col { display: flex; flex-direction: column; gap: 22px; }
.qualify-col:first-child { border-right: 1px solid var(--border); padding-right: clamp(0px, 6vw, 40px); }
@media (max-width: 760px) { .qualify-col:first-child { border-right: none; padding-right: 0; padding-bottom: 32px; border-bottom: 1px solid var(--border); } }
.qualify-col h3 { font-size: 1.3rem; }
.qualify-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.qualify-list li { color: var(--muted); font-size: 0.98rem; line-height: 1.55; padding-left: 18px; position: relative; }
.qualify-list li::before {
  content: ''; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.qualify-col .btn { align-self: flex-start; margin-top: 6px; }

/* ============ TESTIMONIALS ============ */
.quotes { background: var(--dark-bg); color: var(--dark-ink); padding: clamp(64px, 8vw, 108px) 0; }
.quotes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 64px); }
@media (max-width: 760px) { .quotes-grid { grid-template-columns: 1fr; } }
.quote { margin: 0; }
.quote p {
  font-size: clamp(1.15rem, 1.7vw, 1.4rem); line-height: 1.45; letter-spacing: -0.01em;
  margin-bottom: 18px; text-wrap: pretty;
}
.quote cite { font-style: normal; font-size: 0.86rem; color: var(--dark-muted); font-family: var(--font-mono); }

/* ============ TRUST BAND ============ */
.trust {
  padding: clamp(48px, 6vw, 72px) var(--pad);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center;
}
@media (max-width: 800px) { .trust { grid-template-columns: 1fr; } }
.trust-claim { font-size: clamp(1.3rem, 2.1vw, 1.7rem); letter-spacing: -0.02em; line-height: 1.35; max-width: 34ch; }
.trust-claim strong { color: var(--primary); font-weight: 700; }
.partners { display: flex; flex-direction: column; gap: 16px; }
.partners-label { font-family: var(--font-mono); font-size: 0.76rem; color: var(--muted); }
.partners-row { display: flex; flex-wrap: wrap; gap: 20px 32px; }
.partners-row span { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; color: var(--muted); }

/* ============ ABOUT TEASER ============ */
.about-teaser {
  display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: stretch;
}
@media (max-width: 900px) { .about-teaser { grid-template-columns: 1fr; } }
.about-media { position: relative; min-height: 380px; }
.about-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; filter: grayscale(0.35) contrast(1.05); }
.about-copy { padding: clamp(48px, 6vw, 88px) var(--pad); display: flex; flex-direction: column; justify-content: center; gap: 22px; background: var(--bg); }
.about-copy h1, .about-copy h2 { font-size: clamp(1.8rem, 2.6vw, 2.5rem); max-width: 14ch; }
.about-copy .btn { align-self: flex-start; }

/* ============ SERVICE CARDS (Physio / Pilates pillar pages) ============ */
.services { padding: clamp(56px, 7vw, 96px) 0; }
.services-grid {
  list-style: none; margin: clamp(28px, 4vw, 40px) 0 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
}
.service-card {
  flex: 1 1 260px; max-width: 320px;
  border: 1px solid var(--border); border-radius: 4px; padding: 22px 24px;
  display: flex; flex-direction: column; gap: 10px; background: var(--bg);
}
.service-card.is-empty { background: var(--surface); border-style: dashed; flex-basis: 100%; max-width: 100%; }
.service-card.is-empty h3 { font-size: 1rem; }
.service-card h3 { font-size: 1.2rem; }
.service-meta { font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 6px 14px; }
.service-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.service-price { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); font-family: var(--font-mono); font-size: 0.92rem; }
.service-price strong { font-size: 1.05rem; font-weight: 700; color: var(--primary); }
.service-note { font-size: 0.86rem; color: var(--muted); font-style: italic; }

.page-intro { padding: clamp(48px, 6vw, 80px) 0 clamp(24px, 4vw, 40px); }
.page-intro h1, .page-intro h2 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); max-width: 28ch; margin-bottom: 18px; }
.page-intro p.prose { color: var(--muted); font-size: 1.05rem; }

.mention-strip {
  background: var(--surface); padding: clamp(32px, 4vw, 48px) var(--pad); text-align: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.mention-strip p { max-width: 60ch; margin: 0 auto; color: var(--muted); font-size: 0.98rem; }
.mention-strip strong { color: var(--ink); }

/* ============ FAQ ============ */
.faq { padding: clamp(64px, 8vw, 108px) 0; }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 6vw, 72px); align-items: start; }
@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-intro h2 { font-size: clamp(1.7rem, 2.4vw, 2.2rem); max-width: 16ch; margin-bottom: 12px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); padding: 20px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; font-weight: 600; font-size: 1.02rem; list-style: none;
  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-mono); font-size: 1.2rem; color: var(--accent);
  flex-shrink: 0; transition: transform .25s var(--ease-out-expo);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); font-size: 0.96rem; margin-top: 14px; max-width: 60ch; }
@media (prefers-reduced-motion: reduce) { .faq-item summary::after { transition: none; } }

/* ============ BOOK CTA STRIP ============ */
.book-strip {
  background: var(--primary); color: var(--primary-ink);
  padding: clamp(48px, 6vw, 76px) var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.book-strip h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); max-width: 18ch; }
.book-strip .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.book-strip .btn-outline { border-color: color-mix(in oklab, var(--primary-ink) 40%, transparent); color: var(--primary-ink); }
.book-strip .btn-outline:hover { border-color: var(--primary-ink); }
.book-strip .btn-light { background: var(--primary-ink); color: var(--primary); }
.book-strip .btn-light:hover { background: color-mix(in oklab, var(--primary-ink) 88%, var(--primary) 12%); }

/* ============ FOOTER ============ */
footer.site {
  background: var(--dark-bg); color: var(--dark-muted);
  padding: clamp(56px, 6vw, 84px) var(--pad) 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid var(--dark-border);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .wordmark { color: var(--dark-ink); margin-bottom: 14px; }
.footer-brand p { max-width: 32ch; font-size: 0.92rem; }
.footer-col h3 { font-family: var(--font-mono); font-weight: 500; font-size: 0.78rem; color: var(--dark-ink); margin-bottom: 16px; letter-spacing: 0.01em; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col address { font-size: 0.92rem; font-style: normal; line-height: 1.6; }
.footer-col a:hover { color: var(--dark-ink); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; font-size: 0.82rem;
}

::selection { background: var(--primary); color: var(--primary-ink); }

/* ============ TRUST BAR ============ */
/* Added 2026-09-09: client asked for bilingual/insurance/Medicare/NDIS/WorkCover/CTP/parking to be
   "very visible" on Home and Contact specifically. A row of plain-language pills, not icon soup. */
.trust-bar {
  background: var(--dark-bg); color: var(--dark-ink);
  padding: clamp(28px, 4vw, 40px) var(--pad);
}
.trust-bar-row {
  max-width: var(--container); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 12px 14px; justify-content: center;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--dark-border); border-radius: 100px;
  padding: 9px 18px; font-size: 0.9rem; color: var(--dark-ink); white-space: nowrap;
}
.trust-pill strong { color: var(--accent-on-dark); font-weight: 600; }
.trust-bar.on-light { background: var(--surface); color: var(--ink); }
.trust-bar.on-light .trust-pill { border-color: var(--border); color: var(--ink); }
.trust-bar.on-light .trust-pill strong { color: var(--primary); }

/* ============ SERVICE EXPLAINER ============ */
/* Added 2026-09-09: the client wants every named service to answer what it is / who it's for / what
   it treats / what happens in the session / how it helps / what to expect — not a name and a price.
   Replaces .service-card for the 15 services named in the brief; .service-card stays for short
   overview grids (Home, Pricing). */
.service-explainer {
  border: 1px solid var(--border); border-radius: 16px; background: var(--bg);
  padding: clamp(28px, 4vw, 40px); margin-bottom: 28px;
}
.service-explainer-head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 12px 24px;
  padding-bottom: 20px; margin-bottom: 22px; border-bottom: 1px solid var(--border);
}
.service-explainer-head h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin: 0; }
.service-explainer-meta { font-family: var(--font-mono); font-size: 0.88rem; color: var(--muted); text-align: right; }
.service-explainer-meta strong { color: var(--primary); font-size: 1rem; }
.service-explainer-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 32px;
}
@media (max-width: 700px) { .service-explainer-grid { grid-template-columns: 1fr; } }
.service-explainer-grid dt {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.service-explainer-grid dd { margin: 0; color: var(--muted); font-size: 0.96rem; line-height: 1.55; }
.service-explainer-note {
  margin-top: 22px; padding-top: 18px; border-top: 1px dashed var(--border);
  font-size: 0.88rem; color: var(--muted); font-style: italic;
}
.service-explainer-foot {
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border);
  display: flex; justify-content: flex-end;
}

/* ============ PHOTO BLOCK (real studio photography) ============ */
.photo-block { border-radius: 16px; overflow: hidden; }
.photo-block img { width: 100%; height: 100%; object-fit: cover; display: block; }

.map-embed {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--border);
  min-height: 420px; height: 100%;
}
.map-embed iframe { display: block; min-height: 420px; }
.photo-caption { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); margin-top: 10px; }

/* ============ LAUNCH BANNER (Cardio-Strength 33) ============ */
.launch-banner {
  background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--primary-ink);
  border-radius: 16px; padding: clamp(28px, 4vw, 44px); margin: clamp(48px, 6vw, 80px) var(--pad);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  max-width: calc(var(--container) - 2 * var(--pad)); margin-left: auto; margin-right: auto;
}
.launch-banner-tag { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.85; }
.launch-banner h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); margin: 6px 0 8px; max-width: 22ch; }
.launch-banner p { margin: 0; opacity: 0.92; max-width: 48ch; }
.launch-banner-price { font-family: var(--font-mono); font-size: 1.8rem; font-weight: 700; white-space: nowrap; }
.launch-banner-price span { display: block; font-size: 0.7rem; font-weight: 400; opacity: 0.8; letter-spacing: 0.03em; text-transform: uppercase; }

/* ============ BILINGUAL BADGE ============ */
.lang-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem;
  border: 1px solid var(--dark-border); border-radius: 100px; padding: 7px 16px; color: var(--dark-muted);
}
.lang-badge strong { color: var(--dark-ink); }

/* ============ COMING SOON NOTICE (Group Classes packages) ============ */
.coming-soon {
  border: 1px dashed var(--border); border-radius: 16px; padding: clamp(24px, 3vw, 32px);
  background: var(--surface); text-align: center;
}
.coming-soon h4 { margin: 0 0 8px; font-size: 1.1rem; }
.coming-soon p { margin: 0; color: var(--muted); font-size: 0.95rem; max-width: 52ch; margin: 0 auto; }
