/* =====================================================
   CENTRE COURT TENNIS — shared site styles
   Theme: Synthetic grass court · fresh, grounded, energetic
   ===================================================== */

:root {
  --c-red: #16723b;
  --c-red-deep: #0b4f2a;
  --c-blue: #c2dc45;
  --c-blue-deep: #92a827;
  --c-ink: #102019;
  --c-ink-soft: #2f4639;
  --c-paper: #ffffff;
  --c-cream: #f4f8ee;
  --c-sand: #e9f0df;
  --c-line: rgba(16, 32, 25, 0.14);
  --c-mute: #637166;

  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius-md: 26px;
  --radius-lg: 36px;
  --radius-xl: 48px;
  --radius-2xl: 64px;

  --shadow-soft: 0 10px 30px -12px rgba(16, 32, 25, 0.2);
  --shadow-pop: 0 24px 60px -20px rgba(22, 114, 59, 0.5);
  --shadow-blue: 0 24px 60px -20px rgba(194, 220, 69, 0.42);

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
*::selection { background: var(--c-red); color: #fff; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.6rem + 0.4vw, 1.0625rem);
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.4rem, 1.4rem + 4.6vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 1rem + 0.8vw, 1.6rem); }
h4 { font-size: clamp(1.05rem, 0.9rem + 0.4vw, 1.2rem); font-weight: 600; }

p { margin: 0 0 1em; max-width: 70ch; }
a { color: inherit; }

img, svg, video, iframe { max-width: 100%; display: block; }

button, input, textarea, select {
  font: inherit; color: inherit;
}

/* ---------- accessibility ---------- */
.skip-link {
  position: absolute;
  left: 12px; top: -100px;
  background: var(--c-ink); color: #fff;
  padding: 12px 18px; border-radius: 8px;
  z-index: 1000; font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--c-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- layout helpers ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: clamp(56px, 8vw, 120px) 0;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--c-red);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px;
  background: currentColor; border-radius: 2px;
}

/* ---------- header / nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 247, 240, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--c-line);
}

/* light treatment while the header floats over the dark hero (home, at top) */
.site-header.over-hero:not(.is-scrolled) .brand-logo { content: url(logo-hero.png); }
.site-header.over-hero:not(.is-scrolled) .nav-primary a { color: #fff; }
.site-header.over-hero:not(.is-scrolled) .nav-primary a:hover,
.site-header.over-hero:not(.is-scrolled) .nav-primary a:focus-visible {
  background: rgba(255, 255, 255, 0.18); color: #fff;
}
.site-header.over-hero:not(.is-scrolled) .nav-cta {
  background: #fff; color: var(--c-ink);
}
.site-header.over-hero:not(.is-scrolled) .nav-cta:hover,
.site-header.over-hero:not(.is-scrolled) .nav-cta:focus-visible {
  background: var(--c-red); color: #fff;
}
.site-header.over-hero:not(.is-scrolled) .menu-toggle {
  background: rgba(255, 255, 255, 0.16); color: #fff;
}
/* faint top shade so light nav text reads over bright spots in the hero photo */
.site-header.over-hero:not(.is-scrolled)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(2, 13, 7, 0.5), rgba(2, 13, 7, 0));
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  width: 100%;
  max-width: none;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--c-ink);
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; letter-spacing: -0.01em;
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-red);
  position: relative;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px -6px rgba(22, 114, 59, .55);
}
.brand-mark::before, .brand-mark::after {
  content: ""; position: absolute;
  background: rgba(255,255,255,.92);
}
.brand-mark::before {
  width: 80%; height: 2px; left: 10%; top: 50%;
  transform: rotate(38deg); border-radius: 2px;
}
.brand-mark::after {
  width: 80%; height: 2px; left: 10%; top: 50%;
  transform: rotate(-38deg); border-radius: 2px;
}
.brand-text small {
  display: block; font-weight: 500;
  font-size: .72rem; color: var(--c-mute);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-top: 2px;
}

.nav-primary { display: none; }
.nav-primary ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 4px; align-items: center;
}
.nav-primary a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  color: var(--c-ink);
  transition: background .2s, color .2s;
  font-size: .98rem;
}
.nav-primary a:hover,
.nav-primary a:focus-visible {
  background: var(--c-ink); color: #fff;
}
.nav-primary a[aria-current="page"] {
  background: var(--c-red); color: #fff;
}

.nav-cta {
  display: none;
  align-items: center; gap: 10px;
  min-height: 48px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--c-ink); color: #fff;
  text-decoration: none; font-weight: 600;
  font-size: .95rem;
  transition: transform .15s, background .2s;
}
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--c-red); transform: translateY(-1px);
}
.nav-cta svg { width: 16px; height: 16px; }

.wilson-sponsor {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 7px 13px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.wilson-sponsor:hover,
.wilson-sponsor:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}
.wilson-sponsor img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: block;
  flex: 0 0 auto;
}
.wilson-sponsor span {
  display: grid;
  gap: 1px;
  line-height: 1.05;
  white-space: nowrap;
}
.wilson-sponsor strong {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.wilson-sponsor small {
  font-size: .72rem;
  color: rgba(255, 255, 255, 0.82);
}

.menu-toggle {
  appearance: none; border: 0;
  background: var(--c-ink); color: #fff;
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}
.menu-toggle svg { width: 22px; height: 22px; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}
@media (max-width: 767px) {
  .nav-bar { gap: 10px; }
  .nav-actions { gap: 10px; }
  .brand-logo { height: 40px; }
  .wilson-sponsor {
    min-height: 44px;
    padding: 6px 11px 6px 6px;
    gap: 8px;
  }
  .wilson-sponsor img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }
  .wilson-sponsor strong {
    font-size: .62rem;
  }
  .wilson-sponsor small {
    display: none;
  }
}
@media (max-width: 420px) {
  .wilson-sponsor {
    padding-right: 6px;
  }
  .wilson-sponsor span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

.mobile-drawer {
  position: fixed; inset: 0;
  background: var(--c-ink);
  color: #fff;
  z-index: 60;
  padding: 28px var(--gutter) 40px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-drawer[data-open="true"] { transform: translateX(0); }
.mobile-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 36px;
}
.mobile-drawer .brand { color: #fff; }
.mobile-drawer .brand-text small { color: rgba(255,255,255,.6); }
.mobile-drawer-close {
  appearance: none; border: 0;
  background: rgba(255,255,255,.1); color: #fff;
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; cursor: pointer;
}
.mobile-drawer nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-drawer nav a {
  display: block; padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.6rem;
  text-decoration: none; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-drawer nav a[aria-current="page"] { color: var(--c-red); }
.drawer-sponsor {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
}
.drawer-sponsor img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: block;
}
.drawer-sponsor span {
  display: grid;
  gap: 4px;
  line-height: 1.15;
}
.drawer-sponsor strong {
  font-size: .94rem;
}
.drawer-sponsor small {
  color: rgba(255, 255, 255, 0.72);
}
.mobile-drawer .drawer-cta {
  margin-top: auto;
  background: var(--c-red); color: #fff;
  padding: 18px 22px; border-radius: 20px;
  text-decoration: none; font-weight: 600;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  text-decoration: none; font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
  border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--c-red); color: #fff; box-shadow: var(--shadow-pop); }
.btn-primary:hover, .btn-primary:focus-visible { transform: translateY(-2px); background: var(--c-red-deep); }
.btn-ink { background: var(--c-ink); color: #fff; }
.btn-ink:hover, .btn-ink:focus-visible { background: var(--c-red); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--c-ink);
  border: 2px solid var(--c-ink);
  padding: 14px 24px;
}
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--c-ink); color: #fff; }
.btn-blue { background: var(--c-blue); color: var(--c-ink); box-shadow: var(--shadow-blue); }
.btn-blue:hover, .btn-blue:focus-visible { background: var(--c-blue-deep); color: var(--c-ink); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- generic card ---------- */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--c-line);
}

/* ---------- trust strip ---------- */
.trust-strip {
  background: var(--c-ink); color: #fff;
  padding: 18px 0;
  overflow: hidden;
}
.trust-strip-track {
  display: flex; gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: 0.04em;
  padding: 0 var(--gutter);
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: .78rem;
}
.trust-chip svg {
  width: 18px; height: 18px;
  color: var(--c-red);
}

/* ---------- HERO (home) ---------- */
/* ===================== CINEMATIC NIGHT-MATCH HERO ===================== */
/* persistent cinematic 3D court — fixed behind the whole page */
.scene-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #000;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
}
.hero-canvas {
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}
.hero-canvas.is-visible,
.scene-stage.is-3d-ready .hero-canvas { opacity: 1; }

/* Mobile / touch / reduced-motion / no-WebGL: swap the live Three.js court for a
   lightweight static still (set by the inline loader at the bottom of each page). */
.scene-static .hero-canvas { display: none; }
.scene-static .time-of-day-control { display: none !important; }
.scene-static .scene-stage {
  background-color: #06140d;            /* WORLD_DARK — hides any crop edge, no flash */
  background-image: url(scene-still-home.webp);   /* default = home / 404 */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body[data-scene="about"].scene-static     .scene-stage { background-image: url(scene-still-about.webp); }
body[data-scene="coaching"].scene-static  .scene-stage { background-image: url(scene-still-coaching.webp); }
body[data-scene="contact"].scene-static   .scene-stage { background-image: url(scene-still-contact.webp); }
body[data-scene="locations"].scene-static .scene-stage { background-image: url(scene-still-locations.webp); }

.time-of-day-control {
  position: fixed;
  display: none;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 45;
  transform: translateX(-50%);
  grid-template-columns: auto minmax(180px, 280px) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 14, 9, 0.68);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 40px -22px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.time-of-day-control input {
  width: 100%;
  accent-color: #d7ef5f;
}
body:not(.home-immersive) .time-of-day-control {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: flex-end;
}

/* readability scrim — darken bottom + left where the copy sits */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: transparent;
}

/* content */
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: clamp(110px, 17vh, 210px);
  padding-bottom: clamp(84px, 14vh, 150px);
}
.hero-content { max-width: 640px; color: #fff; }
.hero .eyebrow { color: #d7ef5f; }
.hero .eyebrow::before { background: #c2dc45; }
.hero-content h1 {
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 2px 34px rgba(0,0,0,.5);
}
.hero-content h1 .hl {
  color: #fff;
  position: relative;
  display: inline-block;
}
.hero-content h1 .hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -.06em;
  height: .14em;
  background: linear-gradient(90deg, #78b843, #d7ef5f);
  border-radius: 99px;
  transform: rotate(-1.5deg);
  box-shadow: 0 0 22px rgba(194,220,69,.72);
}
.hero-lead {
  font-size: clamp(1.05rem, .9rem + .6vw, 1.22rem);
  color: rgba(233,238,250,.84);
  max-width: 50ch;
  margin-bottom: 30px;
  text-shadow: 0 1px 18px rgba(0,0,0,.55);
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 30px;
  margin-top: 38px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-meta-item .num {
  font-family: var(--font-display);
  font-weight: 700; font-size: 2rem;
  color: #fff; display: block; line-height: 1;
}
.hero-meta-item .lbl {
  font-size: .78rem; text-transform: uppercase;
  letter-spacing: .14em; color: rgba(233,238,250,.6);
  margin-top: 7px; display: block;
}
.hero-meta-rates .num,
.hero-meta-rates .lbl {
  text-transform: none;
  letter-spacing: .01em;
}
.hero-meta-rates .num {
  font-size: 1.4rem;
  line-height: 1.1;
}
.hero-meta-rates .lbl {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

/* dark-theme button variant inside the hero */
.hero .btn-ghost {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.34);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero .btn-ghost:hover,
.hero .btn-ghost:focus-visible { background: rgba(255,255,255,.16); border-color: #fff; }

/* scroll cue */
.hero-scroll-cue {
  position: absolute;
  left: clamp(20px, 4vw, 56px); bottom: clamp(20px, 4vh, 40px);
  z-index: 3;
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(233,238,250,.7);
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  pointer-events: none;
}
.hero-scroll-cue i {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px; position: relative; display: inline-block;
}
.hero-scroll-cue i::after {
  content: ""; position: absolute;
  left: 50%; top: 6px; width: 3px; height: 7px; margin-left: -1.5px;
  border-radius: 2px; background: #fff;
  animation: scroll-cue 1.8s ease-in-out infinite;
}
@keyframes scroll-cue {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(15px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-canvas { transition: none; }
  .hero-scroll-cue i::after { animation: none; }
}

/* ---------- TICKER (event bar) ---------- */
.ticker {
  background: var(--c-red);
  color: #fff;
  overflow: hidden;
  border-block: 3px solid var(--c-ink);
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 56px;
  align-items: center;
  padding: 14px 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.ticker-item .ball {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-blue);
  color: var(--c-ink);
  flex-shrink: 0;
  display: grid; place-items: center;
  font-size: .65rem; font-weight: 700;
  border: 2px solid #fff;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; flex-wrap: wrap; width: auto; padding: 14px var(--gutter); }
}

/* ---------- ABOUT section ---------- */
.about {
  background: var(--c-cream);
}
.about-grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.about-art {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-art img { width: 100%; height: 100%; object-fit: cover; }

.about-art-frame {
  position: relative;
  display: grid; gap: 14px;
  grid-template-columns: 1.4fr 1fr;
}
.about-art-frame .tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.about-art-frame .tile-tall { grid-row: span 2; aspect-ratio: 3/4; }
.about-art-frame .tile-sq { aspect-ratio: 1/1; }
.about-art-frame .tile img { width: 100%; height: 100%; object-fit: cover; }
.about-art-stat {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--c-red); color: #fff;
  padding: 14px 18px;
  border-radius: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  box-shadow: var(--shadow-pop);
  z-index: 2;
}
.about-art-stat .big { font-size: 1.6rem; display: block; line-height: 1; }

.about-content h2 .hl {
  background: linear-gradient(180deg, transparent 60%, rgba(194,220,69,.34) 60%);
}
.about-bullets {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; gap: 14px;
}
.about-bullets li {
  display: flex; gap: 14px;
  align-items: flex-start;
  font-weight: 500;
}
.about-bullets li::before {
  content: ""; width: 24px; height: 24px;
  flex-shrink: 0;
  background: var(--c-blue);
  border-radius: 8px;
  display: grid; place-items: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102019' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  background-size: 14px;
  margin-top: 3px;
}

/* ---------- COACH FEATURE ---------- */
.coach-feature {
  background: var(--c-paper);
}
.coach-feature-grid {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.coach-feature-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}
.coach-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}
.coach-feature-content {
  max-width: 680px;
}
.coach-feature-content h2 {
  margin-bottom: 14px;
}
.coach-feature-lead {
  font-size: clamp(1.1rem, 1rem + .45vw, 1.35rem);
  color: var(--c-ink);
  font-weight: 700;
}
.coach-feature-content .btn {
  margin-top: 10px;
}
.player-feature-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 24px 0 18px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.player-feature-card img {
  width: 104px;
  height: 104px;
  border-radius: 14px;
  object-fit: cover;
  object-position: 50% 22%;
}
.player-feature-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--c-red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.player-feature-card strong {
  display: block;
  color: var(--c-ink);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1rem + .7vw, 1.65rem);
  line-height: 1.1;
}
.coach-feature-content .player-feature-card p {
  margin: 6px 0 0;
  color: #102019;
  font-size: .95rem;
  font-weight: 700;
}

/* ---------- COACHES ---------- */
.coaches {
  background: var(--c-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.coaches::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(22,114,59,.28), transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(194,220,69,.16), transparent 50%);
  pointer-events: none;
}
.coaches .wrap { position: relative; z-index: 1; }
.coaches h2 { color: #fff; }
.coaches .eyebrow { color: var(--c-blue); }
.coach-head {
  display: grid; gap: 24px;
  margin-bottom: 56px;
  align-items: end;
}
.coach-head p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 50ch;
}
.coach-grid {
  display: grid;
  gap: 28px;
}
.coach-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, background .25s ease;
}
.coach-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.07); }
.coach-card .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 6rem;
  position: absolute;
  top: 10px; right: 24px;
  color: rgba(194,220,69,.16);
  line-height: 1;
}
.coach-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--c-red);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.8rem; color: #fff;
  margin-bottom: 22px;
  box-shadow: var(--shadow-pop);
}
.coach-card h3 { color: #fff; margin-bottom: 6px; }
.coach-card .role {
  color: var(--c-blue);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  display: block; margin-bottom: 18px;
}
.coach-card p { color: rgba(255,255,255,.7); margin-bottom: 24px; font-size: .96rem; }
.coach-card .tags {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.coach-card .tag {
  background: rgba(255,255,255,.08);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
}

/* ---------- Hot Shots ---------- */
.hot-shots {
  padding: clamp(56px, 7vw, 104px) 0;
  background: rgba(246, 248, 235, 0.96);
}
.hot-shots-grid {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.hot-shots-content h2 {
  max-width: 18ch;
  margin-bottom: 18px;
}
.hot-shots-lead {
  max-width: 62ch;
  color: var(--c-ink-soft);
  font-size: 1.05rem;
  line-height: 1.72;
}
.hot-shots-media {
  display: grid;
  gap: 16px;
}
.hot-shots-stage-image,
.hot-shots-video {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hot-shots-stage-image {
  display: block;
  height: auto;
  max-width: 530px;
  margin: 26px 0;
  background: #fff;
}
.hot-shots-video {
  aspect-ratio: 16 / 9;
  background: #07110b;
}
.hot-shots-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- SERVICES preview / cards ---------- */
.services {
  background: var(--c-paper);
}
.services-head {
  display: grid;
  gap: 24px;
  align-items: end;
  margin-bottom: 48px;
}
.services-head .right { display: flex; justify-content: flex-start; }
.service-grid {
  display: grid;
  gap: 24px;
}
.service-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  background: var(--c-sand);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
  min-height: 320px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.service-card.is-red { background: var(--c-red); color: #fff; }
.service-card.is-red h3 { color: #fff; }
.service-card.is-red .service-icon { background: rgba(255,255,255,.18); color: #fff; }
.service-card.is-red .service-link { color: #fff; }
.service-card.is-red .service-arrow { background: #fff; color: var(--c-red); }
.service-card.is-blue { background: var(--c-blue); color: var(--c-ink); }
.service-card.is-blue h3 { color: var(--c-ink); }
.service-card.is-blue .service-icon { background: rgba(16,32,25,.14); color: var(--c-ink); }
.service-card.is-blue .service-link { color: var(--c-ink); }
.service-card.is-blue .service-arrow { background: var(--c-ink); color: var(--c-blue); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: var(--c-ink); color: #fff;
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { flex: 1; margin-bottom: 24px; }
.service-card .duration {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 12px;
  opacity: .8;
}
.service-link {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-display);
}
.coach-card .service-link { color: #fff; }
.coach-card .service-arrow { background: #fff; color: var(--c-ink); }
.service-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-ink); color: #fff;
  display: grid; place-items: center;
  transition: transform .2s ease;
}
.service-link:hover .service-arrow { transform: translateX(4px); }

/* ---------- GALLERY ---------- */
.gallery {
  background: var(--c-cream);
}
.gallery-head { margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1/1;
  background: var(--c-sand);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(16,32,25,.5));
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ---------- CTA / Enquiry banner ---------- */
.cta-band {
  background: var(--c-red);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 5vw, 64px) 0;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,.05) 20px 21px);
  pointer-events: none;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-grid {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.cta-band h2 { color: #fff; margin: 0; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 50ch; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-primary {
  background: #fff; color: var(--c-red); box-shadow: none;
}
.cta-band .btn-primary:hover { background: var(--c-ink); color: #fff; }
.cta-band .btn-ink { background: var(--c-ink); color: #fff; }
.cta-band .btn-ink:hover { background: rgba(0,0,0,.7); }

/* ---------- FAQ ---------- */
.faq { background: var(--c-paper); }
.faq-grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
}
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--c-sand);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  border: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.faq-item[open] {
  background: var(--c-cream);
  border-color: var(--c-red);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, .9rem + .3vw, 1.12rem);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-ink); color: #fff;
  display: grid; place-items: center;
  font-size: 1.4rem; font-weight: 400;
  transition: transform .25s, background .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "−"; background: var(--c-red);
}
.faq-item p {
  margin: 14px 0 4px;
  color: var(--c-ink-soft);
}
.faq-cta {
  grid-column: 1 / -1;
  border-radius: var(--radius-md);
  margin-top: clamp(4px, 1.5vw, 14px);
  padding: clamp(22px, 3vw, 34px);
}
.faq-cta .eyebrow {
  margin-bottom: 10px;
}
.faq-cta h2 {
  font-size: clamp(1.65rem, 1rem + 2.1vw, 2.45rem);
}
.faq-cta .cta-grid {
  gap: clamp(18px, 3vw, 36px);
}
.faq-cta .cta-actions {
  justify-content: flex-start;
}

/* ---------- form / enquiry ---------- */
.form-card {
  background: var(--c-paper);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-soft);
}
.form-row {
  display: grid; gap: 16px;
  margin-bottom: 16px;
}
/* Two-up rows stack on phones (avoids clipped <select> text) and split on tablet+ */
.form-row-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.form-field label {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--c-line);
  border-radius: 14px;
  background: var(--c-paper);
  font-size: 1rem;
  transition: border-color .2s, background .2s;
  font-family: inherit;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 0; border-color: var(--c-red);
  background: var(--c-cream);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-submit {
  margin-top: 8px;
}

/* ---------- contact section ---------- */
.contact-grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
}
.contact-card {
  background: var(--c-ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(194,220,69,.18), transparent 50%);
  pointer-events: none;
}
.contact-card h3, .contact-card h2 { color: #fff; position: relative; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; position: relative; }
.contact-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.contact-list li:first-child { border-top: 0; padding-top: 0; }
.contact-list .ic {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--c-red);
  border-radius: 14px;
  display: grid; place-items: center;
}
.contact-list .ic svg { width: 20px; height: 20px; color: #fff; }
.contact-list .meta {
  font-size: .8rem; text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
  display: block;
  margin-bottom: 4px;
}
.contact-list a, .contact-list .val {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
}
.contact-list a:hover { color: var(--c-blue); }

/* ---------- map placeholder ---------- */
[data-map-placeholder] {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-sand);
  min-height: 280px;
  position: relative;
}
.map-fallback {
  padding: 32px;
  display: grid; gap: 16px;
  align-content: center;
  min-height: 280px;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(194,220,69,.12), rgba(22,114,59,.08)),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(16,32,25,.08) 28px 29px),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(16,32,25,.08) 28px 29px),
    var(--c-cream);
}
.map-fallback .pin {
  width: 56px; height: 56px;
  background: var(--c-red);
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
  display: grid; place-items: center;
  box-shadow: var(--shadow-pop);
}
.map-fallback .pin svg { width: 24px; height: 24px; color: #fff; transform: rotate(45deg); }
.map-fallback strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: block;
}
.map-fallback a {
  align-self: start;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: var(--c-ink); color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600; font-family: var(--font-display);
  font-size: .92rem;
  margin-top: 6px;
}
.map-fallback a:hover { background: var(--c-red); }

/* ---------- PAGE HERO (non-home) ---------- */
.page-hero {
  padding: clamp(116px, 8vw, 160px) 0 clamp(48px, 6vw, 80px);
  background:
    radial-gradient(circle at 90% 10%, rgba(22,114,59,.18), transparent 40%),
    radial-gradient(circle at 0% 90%, rgba(194,220,69,.18), transparent 40%),
    var(--c-cream);
  position: relative;
  overflow: hidden;
}
.page-hero h1 { margin-bottom: 18px; max-width: 22ch; }
.page-hero p { font-size: 1.15rem; max-width: 56ch; color: var(--c-ink-soft); }
.page-hero .crumbs {
  display: flex; gap: 10px; align-items: center;
  font-size: .85rem; color: var(--c-mute);
  margin-bottom: 28px;
}
.page-hero .crumbs a { text-decoration: none; color: var(--c-mute); }
.page-hero .crumbs a:hover { color: var(--c-red); }
.page-hero .crumbs span { color: var(--c-ink); font-weight: 500; }

/* ---------- policy page ---------- */
.policy-section {
  background: var(--c-paper);
  padding: clamp(44px, 6vw, 82px) 0;
}
.policy-wrap {
  max-width: 980px;
}
.policy-content {
  background: var(--c-cream);
  border: 1px solid rgba(16,32,25,.08);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 52px);
  box-shadow: var(--shadow-soft);
}
.policy-content h2 {
  font-size: clamp(1.35rem, 1.1rem + .9vw, 2rem);
  margin-top: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
}
.policy-content h2:first-of-type {
  margin-top: 0;
}
.policy-content p {
  color: var(--c-ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.policy-content a {
  color: var(--c-red);
  font-weight: 700;
}
.policy-updated {
  color: var(--c-mute);
  font-size: .92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---------- legal / terms ---------- */
.legal-hero .legal-date {
  display: inline-flex;
  margin-top: 8px;
  margin-bottom: 0;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.9rem;
  color: rgba(220, 235, 220, 0.72);
  background: rgba(6, 20, 13, 0.36);
}
.legal-content { align-items: flex-start; }
.legal-layout {
  display: grid;
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}
.legal-toc,
.legal-document {
  background: rgba(13, 31, 20, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 55px -28px rgba(0, 0, 0, 0.75);
}
.legal-toc {
  border-radius: var(--radius-sm);
  padding: 22px;
}
.legal-toc h2 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4fbf4;
}
.legal-toc ol {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
  counter-reset: terms;
}
.legal-toc li { counter-increment: terms; }
.legal-toc a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(220, 235, 220, 0.78);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.35;
}
.legal-toc a::before {
  content: counter(terms, decimal-leading-zero);
  color: #d7ef5f;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding-top: 2px;
}
.legal-toc a:hover,
.legal-toc a:focus-visible { color: #fff; }
.legal-document {
  border-radius: var(--radius-md);
  padding: clamp(22px, 4vw, 48px);
}
.legal-document section {
  padding: 0;
  min-height: 0;
  display: block;
  scroll-margin-top: 104px;
}
.legal-document section + section {
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-document h2 {
  font-size: clamp(1.45rem, 1.1rem + 1vw, 2.05rem);
  color: #f4fbf4;
  margin-bottom: 14px;
}
.legal-document p,
.legal-document li { color: rgba(220, 235, 220, 0.82); }
.legal-document ul {
  margin: 16px 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 10px;
}
.legal-document a {
  color: #d7ef5f;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-note {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(194, 220, 69, 0.1);
  border: 1px solid rgba(194, 220, 69, 0.2);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--c-ink);
  color: #fff;
  padding: clamp(34px, 5vw, 68px) 0 0;
}
.site-footer > .wrap {
  width: 100%;
  max-width: none;
}
.footer-cta {
  border-radius: var(--radius-md);
  margin-bottom: clamp(34px, 5vw, 58px);
  padding: clamp(24px, 3vw, 38px);
}
.footer-cta .eyebrow {
  margin-bottom: 10px;
}
.footer-cta h2 {
  font-size: clamp(1.8rem, 1.1rem + 2.4vw, 3rem);
}
.footer-cta .cta-grid {
  gap: clamp(18px, 3vw, 38px);
}
.footer-cta p {
  margin-bottom: 0;
}
.footer-top {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 44px);
}
.footer-top > div:first-child {
  display: grid;
  justify-items: end;
  text-align: right;
  max-width: 240px;
}
.footer-brand {
  width: min(190px, 100%);
}
.footer-logo {
  display: block;
  width: 100%;
  height: auto;
}
.footer-brand-text {
  color: rgba(255,255,255,.7);
  margin-top: 12px;
  max-width: 28ch;
}
.footer-cols {
  display: grid;
  gap: clamp(22px, 4vw, 34px);
}
.footer-col h4 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--c-red); }
.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid; gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.65); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* =====================================================
   BREAKPOINTS
   ===================================================== */
@media (min-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  :root { --gutter: 18px; }

  html:has(.home-immersive) {
    scroll-snap-type: none;
  }

  section,
  .home-immersive #main > section {
    min-height: auto;
    padding: 44px 0;
    justify-content: flex-start;
    scroll-snap-align: none;
  }

  .home-immersive .hero {
    min-height: 100svh;
  }

  .hero {
    align-items: flex-end;
  }

  .hero-scrim {
    background: transparent;
  }

  .hero-inner {
    padding-top: 96px;
    padding-bottom: 44px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.45rem;
    margin-bottom: 16px;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .hero-cta-row,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    white-space: normal;
    text-align: center;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
  }

  .hero-meta-item .num {
    font-size: 1.35rem;
  }

  .hero-meta-item .lbl {
    font-size: .62rem;
    letter-spacing: .08em;
    line-height: 1.25;
  }

  .hero-meta-rates .num,
  .hero-meta-rates .lbl {
    font-size: .95rem;
    letter-spacing: 0;
  }

  .hero-scroll-cue {
    display: none;
  }

  /* Drop forced line breaks that leave near-empty first lines on phones */
  .coaches h2 br,
  .services h2 br {
    display: none;
  }

  /* About page: neutralise the desktop overlap grid + transforms that otherwise
     force horizontal overflow on phones (the minmax(460px) column + translate). */
  .about-page .about-grid {
    grid-template-columns: 1fr;
    transform: none;
    width: 100%;
    margin: 0;
  }
  .about-page .page-hero .wrap {
    transform: none;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .about-grid,
  .coach-feature-grid,
  .hot-shots-grid,
  .coach-head,
  .services-head,
  .faq-grid {
    gap: 22px;
  }

  .about-art-frame {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .about-art-frame .tile {
    border-radius: 14px;
  }

  .about-art-frame .tile-tall,
  .about-art-frame .tile-sq {
    grid-row: auto;
    aspect-ratio: 1 / 1;
  }

  .about-art-stat {
    bottom: 10px;
    left: 10px;
    padding: 9px 11px;
    border-radius: 12px;
    font-size: .72rem;
  }

  .about-art-stat .big {
    font-size: 1.2rem;
  }

  .coach-feature-media {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
  }

  .player-feature-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
  }

  .player-feature-card img {
    width: 88px;
    height: 88px;
  }

  .coach-head,
  .services-head,
  .gallery-head {
    margin-bottom: 24px;
  }

  .coach-card,
  .service-card,
  .faq-item {
    border-radius: 16px;
    padding: 18px;
  }

  .hot-shots-grid {
    grid-template-columns: 1fr;
  }

  .coach-card .num {
    font-size: 3.8rem;
    top: 8px;
    right: 14px;
  }

  .coach-avatar {
    width: 64px;
    height: 64px;
    font-size: 1.25rem;
    margin-bottom: 14px;
  }

  .coach-card p,
  .service-card p {
    margin-bottom: 16px;
  }

  .service-card {
    min-height: auto;
  }

  .service-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .service-icon svg {
    width: 23px;
    height: 23px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-item {
    border-radius: 14px;
  }

  .gallery-item:nth-child(n+5) {
    display: none;
  }

  .faq-item summary {
    gap: 12px;
  }

  .faq-item summary::after {
    width: 30px;
    height: 30px;
    font-size: 1.15rem;
  }

  .faq-cta {
    padding: 18px;
  }

  .footer-top {
    gap: 24px;
    padding-bottom: 24px;
  }

  .footer-top > div:first-child {
    order: -1;
    justify-self: start;
    justify-items: start;
    text-align: left;
    max-width: none;
  }

  .footer-logo {
    width: 100%;
  }

  .footer-brand {
    width: 150px;
  }

  .footer-brand-text {
    display: none;
  }

  .footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-col h4 {
    font-size: .72rem;
    margin-bottom: 9px;
  }

  .footer-col ul {
    gap: 6px;
  }

  .footer-bottom {
    padding: 14px 0 18px;
    gap: 6px;
    font-size: .78rem;
  }

  .home-immersive .site-footer {
    min-height: auto;
    scroll-snap-align: none;
  }

  /* Bigger tap targets for the long Terms/Privacy table-of-contents links */
  .legal-toc a {
    padding: 10px 0;
  }
}

@media (max-width: 420px) {
  /* Stack the hero rate stats so "Before 5pm $20/ph" stops wrapping mid-column */
  .hero-meta {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  .nav-primary { display: block; }
  .nav-cta { display: inline-flex; }

  .hot-shots-video {
    transform: translate(30%, -50%);
  }

  .hero-grid { grid-template-columns: 1.05fr 1fr; }
  .about-grid { grid-template-columns: 1.05fr 1fr; }
  .coach-feature-grid {
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
    transform: translate(clamp(140px, 14vw, 260px), clamp(170px, 16vw, 300px));
  }
  .coach-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 1.4fr 1fr; }
  .services-head { grid-template-columns: 1.4fr 1fr; }
  .services-head .right { justify-content: flex-end; }
  .coach-head { grid-template-columns: 1.4fr 1fr; }
  .footer-top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 240px);
    align-items: start;
  }
  .footer-top > div:first-child {
    order: 2;
  }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { grid-template-columns: 1fr auto; align-items: center; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr 1.4fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1/1; }
  .legal-layout { grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr); }
  .legal-toc { position: sticky; top: 96px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .menu-toggle { display: grid; }
  .nav-primary,
  .nav-cta { display: none; }
}

@media (min-width: 1024px) {
  .hero-grid { gap: 64px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .coach-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
  }
  .gallery-item { aspect-ratio: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 1; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .nav-bar { gap: 12px; }
  .brand-logo { height: 42px; }
  .nav-primary a {
    padding-inline: 10px;
    font-size: .92rem;
  }
  .nav-cta {
    padding-inline: 14px;
    font-size: .9rem;
  }
  .wilson-sponsor {
    padding-right: 9px;
  }
  .wilson-sponsor small {
    display: none;
  }
}

@media (min-width: 1280px) {
  .gallery-grid {
    grid-template-rows: repeat(2, 220px);
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ===================================================================
   HOME IMMERSIVE DARK THEME — content rides over the fixed 3D court
   =================================================================== */
.home-immersive { background: #06140d; color: #dcebdc; }

/* every page layer sits above the fixed court (z-index 0) */
.home-immersive .site-header { z-index: 50; }
.home-immersive #main,
.home-immersive .site-footer { position: relative; z-index: 2; }

/* keep sections clear so only the content moves over the fixed 3D court */
.home-immersive #main > section:not(.hero),
.home-immersive .trust-strip {
  background: transparent;
  border-top: 0;
}
.home-immersive .site-footer {
  background: rgba(4, 16, 10, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---- full-page scroll-snap: one section per viewport ---- */
html:has(.home-immersive) {
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
}
.home-immersive .hero,
.home-immersive #main > section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-top: 0;
}
.home-immersive #main > section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* thin marquee bands stay as gentle transitions between slides */
.home-immersive .trust-strip,
.home-immersive .ticker {
  scroll-snap-align: none;
}

/* typography -> light */
.home-immersive h2,
.home-immersive h3,
.home-immersive h4 { color: #f4fbf4; }
.home-immersive p,
.home-immersive li,
.home-immersive .about-bullets li { color: rgba(220, 235, 220, 0.82); }
.home-immersive .eyebrow { color: #d7ef5f; }
.home-immersive .eyebrow::before { background: #c2dc45; }
.home-immersive .hl { color: #d7ef5f; }

/* cards / chips -> dark glass */
.home-immersive .service-card,
.home-immersive .coach-card,
.home-immersive .faq-item,
.home-immersive .trust-chip,
.home-immersive .about-art-stat {
  background: rgba(13, 31, 20, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #e3efe4;
  box-shadow: 0 22px 55px -28px rgba(0, 0, 0, 0.75);
}
.home-immersive .service-card h3,
.home-immersive .coach-card h3,
.home-immersive .faq-item summary { color: #fff; }
.home-immersive .service-card p,
.home-immersive .coach-card p,
.home-immersive .faq-item p { color: rgba(220, 235, 220, 0.74); }
.home-immersive .tag,
.home-immersive .role,
.home-immersive .duration { color: rgba(220, 235, 220, 0.7); }
.home-immersive .tag { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.12); }
.home-immersive .service-icon,
.home-immersive .coach-avatar { background: rgba(194, 220, 69, 0.14); color: #d7ef5f; }
.home-immersive .faq-item summary::after { color: #d7ef5f; }

.home-immersive .faq {
  padding-top: clamp(76px, 9vh, 104px);
  padding-bottom: clamp(24px, 4vh, 46px);
}
.home-immersive .faq-grid {
  gap: clamp(18px, 2.5vw, 34px);
  align-items: start;
}
.home-immersive .faq-list {
  gap: 10px;
}
.home-immersive .faq-item {
  border-radius: var(--radius-sm);
  padding: clamp(14px, 1.6vw, 18px) clamp(16px, 2vw, 22px);
}
.home-immersive .faq-item summary {
  font-size: clamp(0.95rem, 0.88rem + 0.2vw, 1.04rem);
}
.home-immersive .faq-item summary::after {
  width: 30px;
  height: 30px;
  font-size: 1.15rem;
}
.home-immersive .faq-item p {
  margin-top: 10px;
  font-size: 0.95rem;
}
.home-immersive .faq-cta {
  margin-top: 0;
  padding: clamp(18px, 2.4vw, 28px);
}
.home-immersive .faq-cta p {
  margin-bottom: 0;
}

.home-immersive .coaches::before {
  background-image: none;
}

/* secondary buttons on dark glass */
.home-immersive .btn-ink {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}
.home-immersive .btn-ink:hover { background: rgba(255, 255, 255, 0.16); }
.home-immersive .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  box-shadow: 0 14px 32px -20px rgba(0, 0, 0, 0.72);
}
.home-immersive .btn-ghost:hover,
.home-immersive .btn-ghost:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--c-ink);
}

/* dashed/solid separators -> lighter */
.home-immersive .hero-meta,
.home-immersive .footer-bottom,
.home-immersive .about-bullets li { border-color: rgba(255, 255, 255, 0.14); }

/* CTA participates in the same full-page slide rhythm as every other section. */
.home-immersive .site-footer {
  min-height: auto;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

/* navbar stays transparent the whole time on the immersive home page */
.home-immersive .site-header,
.home-immersive .site-header.is-scrolled {
  background: transparent;
  border-bottom-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.home-immersive .site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(2, 13, 7, 0.55), rgba(2, 13, 7, 0));
}
.home-immersive .brand-logo { content: url(logo-hero.png); }
.home-immersive .nav-primary a { color: #fff; }
.home-immersive .nav-primary a:hover,
.home-immersive .nav-primary a:focus-visible { background: rgba(255, 255, 255, 0.18); color: #fff; }
.home-immersive .nav-primary a[aria-current="page"] { background: var(--c-red); color: #fff; }
.home-immersive .nav-cta { background: #fff; color: var(--c-ink); }
.home-immersive .nav-cta:hover,
.home-immersive .nav-cta:focus-visible { background: var(--c-red); color: #fff; }
.home-immersive .menu-toggle { background: rgba(255, 255, 255, 0.16); color: #fff; }

/* ===================================================================
   IMMERSIVE INNER PAGES — about / coaching / locations / contact ride
   over the same fixed 3D court (each with its own camera angles). The
   page-hero plays the role the home hero does: a clear, full-bleed slide
   that shows the fresh angle, then content bands become dark glass.
   =================================================================== */
.home-immersive #main > section.page-hero {
  background: transparent;
  border-top: 0;
}
/* gentle scrim behind the heading so light text reads over the court
   (same z-index:-1 pattern the immersive header uses) */
.home-immersive .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 28% 50%, rgba(2, 13, 7, 0.62), transparent 70%);
}
.home-immersive .page-hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45); }
.home-immersive .page-hero p { color: rgba(220, 235, 220, 0.86); }
.home-immersive .page-hero .crumbs,
.home-immersive .page-hero .crumbs a { color: rgba(220, 235, 220, 0.62); }
.home-immersive .page-hero .crumbs a:hover { color: #d7ef5f; }
.home-immersive .page-hero .crumbs span { color: #fff; }

body[data-scene="coaching"]:not(.social-tennis-page) #main > section.page-hero {
  justify-content: flex-start;
  padding-top: clamp(54px, 7vh, 82px);
}
body[data-scene="coaching"]:not(.social-tennis-page) .page-hero .wrap {
  max-width: none;
  margin: 0;
  padding-left: clamp(54px, 6vw, 96px);
  padding-right: clamp(24px, 3vw, 42px);
}
body[data-scene="coaching"]:not(.social-tennis-page) .page-hero .crumbs {
  margin-bottom: clamp(16px, 2vh, 24px);
}
body[data-scene="coaching"]:not(.social-tennis-page) .page-hero h1 {
  max-width: 15.5ch;
  font-size: clamp(3rem, 5.6vw, 4.15rem);
}
body[data-scene="coaching"]:not(.social-tennis-page) .page-hero p {
  max-width: 52ch;
}
@media (min-width: 1024px) {
  body[data-scene="coaching"]:not(.social-tennis-page) #main {
    position: relative;
  }

  body[data-scene="coaching"]:not(.social-tennis-page) #main > section.services[aria-labelledby="svc-h"] {
    position: absolute;
    inset: 0 0 auto;
    z-index: 2;
    height: 100svh;
    min-height: 0;
    padding: 0 clamp(24px, 3vw, 42px) clamp(22px, 2.5vh, 44px) !important;
    justify-content: flex-end;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    pointer-events: none;
  }

  body[data-scene="coaching"]:not(.social-tennis-page) #main > section.services[aria-labelledby="svc-h"] > .wrap {
    width: min(1040px, 100%);
    max-width: none;
    margin: 0 clamp(48px, 5vw, 84px) 0 auto;
    padding: 0;
    pointer-events: auto;
  }

  body[data-scene="coaching"]:not(.social-tennis-page) #svc-h-eyebrow {
    margin-bottom: 8px;
  }

  body[data-scene="coaching"]:not(.social-tennis-page) #main > section.services[aria-labelledby="svc-h"] h2 {
    margin-bottom: 14px !important;
    max-width: 34ch !important;
    font-size: clamp(1.45rem, 1rem + 1.05vw, 2rem);
  }

  body[data-scene="coaching"]:not(.social-tennis-page) #main > section.services[aria-labelledby="svc-h"] .service-grid {
    gap: clamp(14px, 1.6vw, 22px);
  }

  body[data-scene="coaching"]:not(.social-tennis-page) #main > section.services[aria-labelledby="svc-h"] .service-card {
    min-height: 250px;
    padding: clamp(18px, 1.7vw, 24px);
  }

  body[data-scene="coaching"]:not(.social-tennis-page) #main > section.services[aria-labelledby="svc-h"] .service-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  body[data-scene="coaching"]:not(.social-tennis-page) #main > section.services[aria-labelledby="svc-h"] .service-icon svg {
    width: 22px;
    height: 22px;
  }

  body[data-scene="coaching"]:not(.social-tennis-page) #main > section.services[aria-labelledby="svc-h"] .duration {
    font-size: .7rem;
    margin-bottom: 8px;
  }

  body[data-scene="coaching"]:not(.social-tennis-page) #main > section.services[aria-labelledby="svc-h"] .service-card h3 {
    font-size: clamp(1.2rem, 1rem + .55vw, 1.5rem);
    margin-bottom: 8px;
  }

  body[data-scene="coaching"]:not(.social-tennis-page) #main > section.services[aria-labelledby="svc-h"] .service-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
    font-size: .92rem;
    line-height: 1.42;
  }
}
@media (max-width: 767px) {
  body[data-scene="coaching"]:not(.social-tennis-page) .hero-canvas {
    transform: none;
  }
  body[data-scene="coaching"]:not(.social-tennis-page) .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 10.5vw, 3rem);
  }
  body[data-scene="coaching"]:not(.social-tennis-page) .page-hero p {
    max-width: 100%;
    font-size: 1rem;
  }
  /* Reset the desktop 54px hero indent to the normal gutter on phones */
  body[data-scene="coaching"]:not(.social-tennis-page) .page-hero .wrap {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

/* Social Tennis: keep the immersive look, but use normal continuous scrolling. */
html:has(.social-tennis-page) {
  scroll-snap-type: none;
}
.social-tennis-page #main > section,
.social-tennis-page .site-footer {
  min-height: auto;
  display: block;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}
.social-tennis-page #main > section.page-hero {
  padding-top: clamp(132px, 13vw, 178px);
  padding-bottom: clamp(42px, 6vw, 74px);
}
.social-tennis-page #main > section:not(.page-hero) {
  padding-top: clamp(42px, 6vw, 74px);
  padding-bottom: clamp(42px, 6vw, 74px);
}
.social-tennis-page .price-highlight {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--c-red);
  color: #fff;
  opacity: 1;
  box-shadow: 0 12px 28px -18px rgba(230, 11, 117, 0.9);
}
.social-tennis-page .service-card.is-blue .service-icon {
  background: #fff;
  color: var(--c-ink);
  box-shadow: 0 12px 26px -18px rgba(255, 255, 255, 0.9);
}
/* About: keep the hero and story visible together in the first viewport. */
.about-page #main > section.page-hero,
.about-page #main > section.about {
  min-height: auto;
  justify-content: flex-start;
}
.about-page #main > section.page-hero {
  min-height: 100svh;
  padding-top: clamp(190px, 20vh, 246px);
  padding-bottom: clamp(18px, 3vh, 28px);
}
.about-page #main > section.about {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: clamp(18px, 3vh, 28px);
  padding-bottom: clamp(20px, 3vh, 40px);
}
.about-page #main > section.about > .wrap {
  max-width: none;
  margin: 0;
  padding-left: clamp(24px, 5vw, 72px);
  padding-right: clamp(24px, 5vw, 72px);
}
.about-page .page-hero .wrap {
  max-width: none;
  margin: 0;
  padding-left: clamp(42px, 6vw, 92px);
  padding-right: clamp(24px, 4vw, 56px);
  transform: translateY(clamp(26px, 4vh, 54px));
}
.about-page .page-hero .crumbs {
  margin-bottom: 16px;
}
.about-page .page-hero h1 {
  margin-bottom: 12px;
  max-width: none;
}
.about-page .page-hero p {
  max-width: 64ch;
}
.about-page .about-grid {
  width: min(1120px, 100%);
  margin-left: auto;
  gap: clamp(24px, 3vw, 42px);
  align-items: end;
  grid-template-columns: minmax(280px, 0.9fr) minmax(460px, 1.1fr);
  transform: translate(clamp(-92px, -6vw, -44px), clamp(-44px, -4.5vh, -28px));
}
.about-page .about-art-frame {
  max-width: 520px;
}
.about-page .about-content h2 {
  font-size: clamp(1.8rem, 1.25rem + 1.8vw, 3rem);
}
.about-page .about-content p {
  margin-bottom: 12px;
}
.about-page .about-content .hero-cta-row {
  margin-top: 20px !important;
}

@media (min-width: 768px) {
  .about-page #main {
    position: relative;
  }

  .about-page #main > section.about {
    position: absolute;
    inset: 0 0 auto;
    height: 100svh;
    min-height: 0;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    pointer-events: none;
    z-index: 2;
  }

  .about-page #main > section.about > .wrap {
    pointer-events: auto;
  }

  .about-page .page-hero h1 {
    white-space: nowrap;
  }
}

/* contact form -> dark glass with dark inputs */
.home-immersive .form-card {
  background: rgba(13, 31, 20, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 55px -28px rgba(0, 0, 0, 0.75);
}
.home-immersive .form-field label { color: rgba(220, 235, 220, 0.8); }
.home-immersive .form-field input,
.home-immersive .form-field textarea,
.home-immersive .form-field select {
  background: rgba(6, 20, 13, 0.62);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f4fbf4;
}
.home-immersive .form-field input::placeholder,
.home-immersive .form-field textarea::placeholder { color: rgba(220, 235, 220, 0.42); }
.home-immersive .form-field input:focus,
.home-immersive .form-field textarea:focus,
.home-immersive .form-field select:focus {
  border-color: #d7ef5f;
  background: rgba(6, 20, 13, 0.86);
}
.home-immersive .form-field select option { background: #0a1b11; color: #f4fbf4; }

/* contact card is already ink-dark — just soften its edge against the glass */
.home-immersive .contact-card { border: 1px solid rgba(255, 255, 255, 0.08); }

/* privacy policy -> same dark glass treatment as the other immersive pages */
.home-immersive .policy-content {
  background: rgba(13, 31, 20, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 55px -28px rgba(0, 0, 0, 0.75);
}
.home-immersive .policy-content h2 { color: #f4fbf4; }
.home-immersive .policy-content p { color: rgba(220, 235, 220, 0.78); }
.home-immersive .policy-content a { color: #d7ef5f; }
.home-immersive .policy-updated { color: rgba(220, 235, 220, 0.58); }

@media (max-width: 767px) {
  .home-immersive .site-header.is-scrolled {
    background: rgba(5, 9, 18, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
}

@media (max-width: 767px) {
  html:has(.home-immersive) {
    scroll-snap-type: none !important;
    scroll-padding-top: 84px;
  }

  .home-immersive .hero,
  .home-immersive #main > section,
  .home-immersive .site-footer {
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }

  .home-immersive #main > section:not(.hero),
  .home-immersive .site-footer {
    min-height: auto;
  }

  .about-page #main > section.page-hero,
  .about-page #main > section.about {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .about-page #main > section.page-hero {
    padding-top: 96px;
    padding-bottom: 24px;
  }

  .about-page .about-art-frame {
    max-width: none;
  }
}

/* Google review pop-up ticker */
.google-review-ticker {
  position: fixed;
  right: max(18px, env(safe-area-inset-right, 0px));
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  z-index: 80;
  width: min(360px, calc(100vw - 32px));
  color: #202124;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transition: opacity 420ms ease, transform 420ms ease;
}

.google-review-ticker.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.google-review-card {
  overflow: hidden;
  border: 1px solid #dadce0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(60, 64, 67, 0.15), 0 10px 26px rgba(60, 64, 67, 0.2);
  font-family: Arial, Helvetica, sans-serif;
}

.google-review-topline {
  display: flex;
  align-items: center;
  min-height: 38px;
  gap: 8px;
  padding: 10px 14px 8px;
  border-bottom: 1px solid #f1f3f4;
  font-size: 12px;
  color: #5f6368;
}

.google-g {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
}

.google-g b {
  display: grid;
  width: 13px;
  height: 13px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  font-weight: 700;
}

.google-review-source {
  font-weight: 700;
  color: #3c4043;
}

.google-review-rating {
  margin-left: auto;
  color: #f29900;
  font-weight: 700;
  white-space: nowrap;
}

.google-review-body {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 12px 14px 14px;
}

.google-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f3f4;
  object-fit: cover;
}

.google-review-copy {
  min-width: 0;
}

.google-review-card .google-review-author {
  display: block;
  margin: 0 0 3px;
  color: #202124;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}

.google-review-date {
  display: block;
  margin: 0 0 5px;
  color: #5f6368;
  font-size: 12px;
  line-height: 1.2;
}

.google-review-card .google-review-text {
  margin: 0;
  max-width: none;
  color: #3c4043;
  font-size: 14px;
  line-height: 1.38;
}

.google-review-card .google-review-text.is-rating-only {
  color: #5f6368;
}

@media (max-width: 767px) {
  .google-review-ticker {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: min(336px, calc(100vw - 24px));
  }

  .google-review-topline {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .google-review-rating {
    width: 100%;
    margin-left: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .google-review-ticker {
    transition: none;
  }
}

/* ===================== 404 QUICK-CONTACT ACTION BAR ===================== */
/* The 404 page renders a .call-bar with two icon links but had no styling, so the
   global `svg { max-width: 100% }` blew the icons up full-width. Style it as a
   centred pair of pill buttons that stack on phones. */
.call-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(40px, 8vw, 72px);
}
.call-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.call-bar a:hover { transform: translateY(-1px); }
.call-bar svg { width: 18px; height: 18px; flex: none; }
.call-primary {
  background: var(--c-red);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.call-secondary {
  background: var(--c-ink);
  color: #fff;
}
@media (max-width: 767px) {
  .call-bar { flex-direction: column; }
  .call-bar a { width: 100%; }
}
