/* Self-hosted variable fonts — removes the render-blocking Google Fonts
   stylesheet and the third-party connection entirely. One file per family. */
@font-face{font-family:'Inter';font-style:normal;font-weight:100 900;font-display:swap;
  src:url('assets/fonts/inter-var-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Oswald';font-style:normal;font-weight:200 700;font-display:swap;
  src:url('assets/fonts/oswald-var-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}

:root {
  --bg: #060606;
  --bg-2: #101010;
  --panel: #151515;
  --panel-2: #202020;
  --line: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: #c5c5c5;
  --ember: #ffffff;
  --ember-2: #f2f2f2;
  --steel: #ffffff;
  --gold: #ffffff;
  --white: #ffffff;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, #070707 0%, #111111 42%, #070707 100%);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 5vw, 54px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: background 200ms ease, padding 200ms ease;
}
.site-header.is-scrolled { background: rgba(5,5,5,0.94); padding-block: 10px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; font-family: Oswald, sans-serif; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.brand img { width: 54px; height: 54px; object-fit: cover; border: 1px solid var(--line); }
.nav { display: flex; justify-content: center; gap: 22px; color: #dddddd; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.nav a:hover, .footer a:hover, .ghost-link:hover { color: var(--white); }
.header-phone { color: #e8e8e8; font-weight: 800; white-space: nowrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  background: var(--ember);
  color: #050505;
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: 0 18px 38px rgba(255,255,255,.18);
  font-family: Oswald, sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn:hover { background: var(--ember-2); transform: translateY(-2px); box-shadow: 0 22px 44px rgba(255,255,255,.24); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: .82rem; }
.btn-large { min-height: 58px; padding: 0 30px; }
.btn-outline { background: transparent; box-shadow: none; border-color: rgba(255,255,255,.45); }
.btn-outline:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,.08); }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.page-hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 110px;
  text-align: center;
}

.page-hero-content p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
  color: #eeeeee;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}
.hero-media, .hero-media img, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img { object-fit: cover; filter: saturate(.78) contrast(1.06) brightness(.8); }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(5,5,5,.95), rgba(5,5,5,.76) 48%, rgba(5,5,5,.6)),
    linear-gradient(0deg, rgba(5,5,5,.92), rgba(5,5,5,.28) 46%),
    rgba(5,5,5,.22);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 96px;
  text-align: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; font-family: Oswald, sans-serif; line-height: .98; letter-spacing: 0; text-transform: uppercase; }
h1 { max-width: 1050px; margin-inline: auto; font-size: clamp(3.45rem, 8.2vw, 7.4rem); }
h2 { font-size: clamp(2.25rem, 4.7vw, 4.25rem); }
h3 { font-size: 1.35rem; }
.hero-copy { max-width: 730px; margin: 24px auto 0; color: #f2f2f2; font-size: clamp(1rem, 1.7vw, 1.24rem); }
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 34px; }
.ghost-link { color: #fff; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 5px; }
.trust-line { display: inline-flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 24px; color: #f4f4f4; }
.trust-line span, .review-stars, .google-stars { color: #ffffff; letter-spacing: .08em; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: 730px; margin: 28px auto 0; border: 1px solid var(--line); background: var(--line); }
.stat-row div { padding: 18px 14px; background: rgba(16,16,16,.78); }
.stat-row strong { display: block; font-family: Oswald, sans-serif; font-size: clamp(1.45rem, 3vw, 2.2rem); line-height: 1; color: var(--white); }
.stat-row span { display: block; margin-top: 6px; color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.section { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; padding: clamp(70px, 9vw, 118px) 0; }
.proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; width: 100%; max-width: none; padding: 0; border-block: 1px solid var(--line); background: var(--line); }
.proof-strip div { min-height: 118px; display: grid; align-content: center; padding: 24px clamp(18px, 4vw, 54px); background: #080808; }
.proof-strip span { color: var(--gold); font-family: Oswald, sans-serif; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .78rem; }
.proof-strip strong { margin-top: 6px; font-size: 1.05rem; }

.intro-copy { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 6vw, 86px); align-items: end; margin-bottom: 42px; }
.intro-copy p:last-child, .section-heading p, .coaching-copy p, .path-card p, .faq p, .lead-copy p { color: var(--muted); font-size: 1.05rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.steps article { display: grid; grid-template-columns: auto 1fr; gap: 18px; min-height: 210px; padding: 26px; background: linear-gradient(180deg, #202020, #121212); border: 1px solid var(--line); }
.steps span { color: var(--steel); font-family: Oswald, sans-serif; font-size: 2.3rem; line-height: 1; }
.steps p { color: var(--muted); margin-bottom: 0; }

.split-dark { width: 100%; max-width: none; padding-inline: max(18px, calc((100vw - var(--max)) / 2)); background: linear-gradient(180deg, #0a0a0a, #050505); border-block: 1px solid var(--line); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature { position: relative; min-height: 390px; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.feature-large { grid-column: span 2; grid-row: span 2; min-height: 796px; }
.feature img { width: 100%; height: 100%; object-fit: cover; opacity: .9; filter: contrast(1.04) brightness(1.04); transition: transform 500ms ease, opacity 500ms ease; }
.feature:hover img { transform: scale(1.035); opacity: 1; }
.feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.88), rgba(0,0,0,.08) 58%); }
.feature div { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 24px; }
.feature p { color: #eeeeee; margin-bottom: 0; }

.coaching { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 6vw, 84px); align-items: center; }
.coaching-copy p { max-width: 610px; }
.coaching-copy .btn { margin-top: 12px; }
.coach-card { position: relative; overflow: hidden; min-height: 660px; border: 1px solid var(--line); background: var(--panel); }
.coach-card img { width: 100%; height: 100%; object-fit: cover; opacity: .92; filter: contrast(1.04) brightness(1.04); }
.coach-card blockquote { position: absolute; left: 28px; right: 28px; bottom: 28px; margin: 0; padding: 28px; background: rgba(5,5,5,.82); border-left: 4px solid var(--white); font-family: Oswald, sans-serif; font-size: clamp(1.45rem, 3vw, 2.35rem); line-height: 1.08; text-transform: uppercase; }

.reviews { width: 100%; max-width: none; padding-inline: 0; overflow: hidden; }
.review-heading { width: min(760px, calc(100% - 36px)); }
.google-badge { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; padding: 10px 14px; border: 1px solid var(--line); background: #0d0d0d; }
.google-word b { color: #ffffff; }
.google-badge small { color: var(--muted); }
.review-marquee { border-block: 1px solid var(--line); overflow: hidden; background: #0b0b0b; }
.review-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.review-track span { padding: 16px 26px; color: #d8d8d8; font-family: Oswald, sans-serif; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.review-wall { width: min(var(--max), calc(100% - 36px)); margin: 42px auto 0; columns: 3 280px; column-gap: 16px; }
.review-card { display: inline-block; width: 100%; margin: 0 0 16px; padding: 24px; break-inside: avoid; background: linear-gradient(180deg, #202020, #111111); border: 1px solid var(--line); }
.review-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.review-avatar { display: inline-grid; place-items: center; width: 46px; height: 46px; background: #fff; color: #080808; font-weight: 900; }
.review-meta small { display: block; color: var(--muted); }
.review-card p { color: #e5e5e5; }
.review-card em { color: var(--muted); font-style: normal; font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.center-action { text-align: center; margin-top: 30px; }
.section-follow { margin-top: 42px; }
.service-grid { grid-template-columns: repeat(3, 1fr); }

.cta-band { position: relative; width: 100%; max-width: none; min-height: 520px; display: grid; place-items: center; padding: 90px 18px; overflow: hidden; border-block: 1px solid var(--line); }
.cta-band picture, .cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta-band img { object-fit: cover; filter: contrast(1.04) brightness(1.04); opacity: .72; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,5,.9), rgba(5,5,5,.52)); }
.cta-copy { position: relative; z-index: 1; max-width: 760px; text-align: center; }
.cta-copy p { color: #dddddd; font-size: 1.1rem; }

.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.path-card { padding: 30px; min-height: 292px; background: linear-gradient(180deg, #202020, #111111); border: 1px solid var(--line); }
.path-card span { color: var(--gold); font-family: Oswald, sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.path-card h3 { margin-top: 18px; }
.path-card a { display: inline-block; margin-top: 14px; color: var(--white); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; border-bottom: 1px solid var(--white); padding-bottom: 4px; }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 6vw, 80px); }
.faq-list { display: grid; gap: 12px; }
details { background: #101010; border: 1px solid var(--line); padding: 20px 22px; }
summary { cursor: pointer; font-family: Oswald, sans-serif; font-size: 1.35rem; text-transform: uppercase; }

.location { display: grid; grid-template-columns: .82fr 1.18fr; gap: 24px; align-items: stretch; }
.location-copy { padding: 34px; background: #101010; border: 1px solid var(--line); }
.contact-grid { display: grid; gap: 18px; margin: 30px 0; }
.contact-grid span { color: var(--gold); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.contact-grid strong { display: block; margin-top: 4px; font-size: 1.1rem; }
.location-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.map-frame { min-height: 520px; border: 1px solid var(--line); background: #111; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.9) contrast(.95); }

.footer { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 34px; padding: 54px clamp(18px, 5vw, 54px) 92px; border-top: 1px solid var(--line); background: #070707; color: var(--muted); }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); font-family: Oswald, sans-serif; font-size: 1.25rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-brand img { width: 42px; height: 42px; object-fit: cover; }
.footer h2 { font-size: 1.1rem; margin-bottom: 12px; }
.footer a { display: block; margin-bottom: 8px; }

.mobile-cta { display: none; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.lead-hero { min-height: 100vh; display: grid; grid-template-columns: 1fr minmax(360px, 500px); gap: clamp(28px, 5vw, 74px); align-items: center; padding: 130px clamp(18px, 5vw, 54px) 80px; position: relative; overflow: hidden; }
.lead-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,5,.88), rgba(5,5,5,.62)); z-index: 1; }
.lead-media, .lead-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.lead-media img { object-fit: cover; filter: contrast(1.04) brightness(1.04); }
.lead-copy, .lead-form { position: relative; z-index: 2; }
.lead-copy { max-width: 760px; }
.lead-copy h1 { margin: 0; }
.lead-form { display: grid; gap: 14px; padding: 28px; background: rgba(12,12,12,.9); border: 1px solid var(--line); backdrop-filter: blur(14px); }
.lead-form h2 { font-size: 2.1rem; }
.lead-form p { margin: 0; color: var(--muted); }
label { display: grid; gap: 7px; color: #dddddd; font-size: .8rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
input, select, textarea { width: 100%; border: 1px solid rgba(255,255,255,.18); background: #070707; color: var(--text); padding: 14px; font: inherit; outline: none; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--white); box-shadow: 0 0 0 1px rgba(255,255,255,.32); }
.lead-form small { color: var(--muted); }
.compact { padding-top: 80px; }

@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .nav, .header-phone { display: none; }
  .proof-strip, .steps, .path-grid, .service-grid, .location, .footer, .intro-copy, .faq, .coaching, .lead-hero { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-large { grid-column: span 2; min-height: 560px; }
  .lead-hero { padding-top: 120px; }
}

@media (max-width: 680px) {
  body { padding-bottom: 66px; }
  .brand span { display: none; }
  .brand img { width: 46px; height: 46px; }
  .site-header { padding-inline: 14px; }
  h1 {
    font-size: clamp(2.6rem, 12vw, 3.75rem);
    line-height: 1.03;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  h2 { font-size: clamp(2rem, 11vw, 3.2rem); }
  .eyebrow { font-size: .72rem; letter-spacing: .16em; line-height: 1.45; }
  .hero-content { text-align: left; padding-top: 80px; }
  .page-hero { min-height: 76vh; }
  .page-hero-content { text-align: left; padding-top: 92px; }
  .page-hero-content p:not(.eyebrow) { margin-inline: 0; }
  .page-hero-content h1 { max-width: 100%; font-size: clamp(2.05rem, 8.8vw, 2.65rem); line-height: 1.06; }
  .hero-content h1 { font-size: clamp(2.65rem, 12vw, 3.75rem); }
  .lead-copy h1 { font-size: clamp(2.55rem, 12vw, 3.8rem); }
  .hero-actions { justify-content: flex-start; gap: 16px; }
  .btn { max-width: 100%; text-align: center; font-size: .82rem; white-space: normal; }
  .btn-large { padding: 19px 24px; }
  .stat-row { grid-template-columns: 1fr; }
  .proof-strip { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 1; min-height: 470px; }
  .feature { min-height: 360px; }
  .coach-card { min-height: 520px; }
  .coach-card blockquote { left: 18px; right: 18px; bottom: 18px; padding: 20px; }
  .review-wall { columns: 1; }
  .map-frame { min-height: 390px; }
  .lead-form { padding: 20px; }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    background: #080808;
    border-top: 1px solid var(--line);
  }
  .mobile-cta a { display: grid; place-items: center; min-height: 62px; font-family: Oswald, sans-serif; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-right: 1px solid var(--line); }
  .mobile-cta a:first-child { background: var(--white); color: #050505; }
}

/* Lead form status + honeypot (Aug 10, 2026 — form rewired from mailto: to /api/lead) */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 0; font-size: .92rem; line-height: 1.45; }
.form-status:empty { display: none; }
.form-status[data-tone="ok"] { color: #7fe0a3; }
.form-status[data-tone="error"] { color: #ff9d8a; }
.lead-form button[disabled] { opacity: .6; cursor: progress; transform: none; }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 140px 24px 96px; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3rem); margin: 0 0 8px; }
.legal .updated { color: var(--muted); margin: 0 0 40px; font-size: .9rem; }
.legal h2 { font-size: 1.3rem; margin: 36px 0 10px; }
.legal p, .legal li { color: var(--muted); line-height: 1.7; }
.legal a { color: var(--white); }

/* Centered "How It Works" heading (Aug 10, 2026 — Giuseppe: centre it, drop the paragraph) */
.intro-copy-center { display: block; text-align: center; max-width: 780px; margin-inline: auto; }
.intro-copy-center .eyebrow { margin-bottom: 10px; }
.intro-copy-center h2 { margin: 0; }

/* "5.0 on Google" — the word Google links to the listing */
.google-link { color: var(--white); text-underline-offset: 3px; text-decoration-thickness: 1px; }
.google-link:hover { text-decoration-thickness: 2px; }

/* Meet the coaches (about page) */
.coach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 42px; }
.coach-tile { display: flex; flex-direction: column; background: linear-gradient(180deg, #1b1b1b, #101010); border: 1px solid var(--line); overflow: hidden; }
.coach-tile img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.coach-tile .coach-body { display: flex; flex-direction: column; gap: 10px; padding: 22px; }
.coach-tile h3 { margin: 0; font-size: 1.25rem; }
.coach-tile .coach-role { margin: 0; font-family: Oswald, sans-serif; text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; color: var(--muted); }
.coach-tile p { margin: 0; color: var(--muted); font-size: .97rem; line-height: 1.6; }
.coach-tile .coach-fact { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); font-size: .88rem; color: var(--muted); }

/* Heading + panel side by side (Where to Start, FAQ) — Aug 10, 2026 */
.split-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(28px, 6vw, 72px); align-items: start; }
.split-section .section-heading { text-align: left; position: sticky; top: 96px; }
.path-stack { display: grid; gap: 16px; }
.faq-reverse .faq-list { order: 1; }
.faq-reverse .section-heading { order: 2; }
.h2-tight { text-wrap: balance; max-width: 18ch; }

/* Location: header, then contact, then a full-width map */
.location-block { display: block; }
.location-block .map-frame { margin-top: 30px; height: clamp(360px, 52vh, 560px); }
/* min-height alone leaves the parent's computed height auto, so the iframe's
   height:100% resolved against auto and collapsed to its 150px default — that
   was the cut-off map. An explicit height on the frame fixes it. */
.location-block .map-frame iframe { display: block; height: 100%; }
.center-contact { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 24px; text-align: center; justify-items: center; margin: 6px auto 0; max-width: 900px; }

@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; }
  .split-section .section-heading { position: static; }
  .faq-reverse .faq-list { order: 2; }
  .faq-reverse .section-heading { order: 1; }
}

/* Locations page — Aug 10, 2026 */
/* Locations hero holds a designed graphic (logo + three labelled map pins).
   The frame matches the artwork's 21:9 so nothing is cropped, and there is no
   shade over it because no text sits on top. */
.hero-bare { min-height: 0; aspect-ratio: 2688 / 1152; }
.hero-bare .hero-media, .hero-bare .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bare .hero-media img { object-fit: contain; object-position: center; filter: none; }
.hero-bare .hero-shade { display: none; }
@media (max-width: 700px) { .hero-bare { aspect-ratio: 16 / 9; } }
.locations-grid { align-items: stretch; }
.location-card { display: flex; flex-direction: column; gap: 12px; }
.location-card .btn { margin-top: auto; align-self: flex-start; }
.location-card.is-primary { border-color: rgba(255,255,255,.5); background: linear-gradient(180deg, #232323, #121212); }

/* About — owner set apart from the trainers, square portraits (Aug 10, 2026) */
.coaches .coach-grid { gap: 34px; margin-top: 0; }
.coach-tile img, .owner-tile img { aspect-ratio: 1 / 1; object-fit: cover; }
.coach-tile .coach-body { gap: 12px; padding: 26px; }
.owner-tile { display: grid; grid-template-columns: minmax(240px, .8fr) 1.2fr; gap: clamp(24px, 5vw, 56px);
  align-items: center; margin: 48px 0 0; padding: 34px; background: linear-gradient(180deg, #1f1f1f, #101010); border: 1px solid var(--line); }
.owner-tile img { width: 100%; display: block; }
.owner-body { display: flex; flex-direction: column; gap: 14px; }
.owner-body h3 { margin: 0; font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.owner-body p { margin: 0; color: var(--muted); line-height: 1.7; }
.owner-body .coach-role { color: var(--gold); }
.coach-divider { margin: 64px 0 26px; text-align: center; font-family: Oswald, sans-serif; text-transform: uppercase;
  letter-spacing: .22em; font-size: .82rem; color: var(--muted); }
@media (max-width: 760px) { .owner-tile { grid-template-columns: 1fr; padding: 22px; } }

/* ── Hero → first section blend (Aug 10, 2026) ─────────────────────────────
   The bare locations hero used to end on a hard 1px rule. Now the artwork
   dissolves into the page background, and the section beneath rises into that
   fade as you scroll: scroll-linked where the browser supports a view()
   timeline, and the existing IntersectionObserver .reveal everywhere else. */
.hero-bare { border-bottom: 0; }
.hero-bare::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: clamp(90px, 18%, 220px);
  background: linear-gradient(180deg, rgba(6,6,6,0), var(--bg));
  pointer-events: none;
  z-index: 3;
}
.hero-bare + .section { position: relative; margin-top: clamp(-120px, -8vw, -40px); padding-top: clamp(60px, 9vw, 120px); z-index: 4; }

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    /* Hand this section over to the scroll timeline entirely — otherwise the
       observer's .reveal and the animation both drive opacity and fight. */
    .hero-bare + .section .reveal { opacity: 1; transform: none; transition: none; }
    .hero-bare + .section > * {
      animation: rise-in linear both;
      animation-timeline: view();
      animation-range: entry 5% cover 30%;
    }
  }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Solid CTA: pure white box, black label, no glow (locations page) */
.btn-solid { background: #fff; color: #000; border-color: #fff; box-shadow: none; }
.btn-solid:hover { background: #fff; color: #000; box-shadow: 0 14px 30px rgba(255,255,255,.22); }

/* `.path-card a` (0,1,1) out-specifies `.btn` (0,1,0), so a button inside a card
   inherited the card's link treatment: white label on a white box (invisible),
   plus an underline and inline-block that broke the centering. Scope it back. */
.path-card .btn,
.location-card .btn {
  display: inline-flex;
  color: #050505;
  border-bottom: 1px solid rgba(255,255,255,.86);
  padding: 0 24px;
  font-weight: 700;
  font-size: .9rem;
}
.path-card .btn-solid,
.location-card .btn-solid { color: #000; border-color: #fff; }
.path-card .btn-solid:hover,
.location-card .btn-solid:hover { color: #000; }

/* Below 980px the nav and phone are display:none, so the header's CTA gets
   auto-placed into the 1fr column and stretches across the bar. Pin it right. */
@media (max-width: 980px) {
  .site-header > .btn { justify-self: end; }
}

/* Honeypot without a negative offset — no chance of contributing to scroll width */
.hp { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
      clip-path: inset(50%); white-space: nowrap; border: 0; left: auto; }
