/* ============================================================
   PERFORMANCE GYMNASTICS ACADEMY · DAYLIGHT
   Extracted from design/source-of-truth.html (performance-daylight-final),
   ratified at the Throne with the Purple Room's hand in it.

   THE FOUR FONT LAWS — never bent:
     Cinzel    · the "Chalk & Courage" seal ONLY.
     Gloock    · the legend H1 ONLY, once per page.
     Fraunces  · every other heading, and every warm line.
     Bricolage · body copy.
   ============================================================ */
:root{
  /* daylight */
  /* 2026-09-17 · Mick's direction for R1, pending Livy's gavel: more pink,
     brighter, still luxury. Blush ground instead of crème, the bronze gold
     lifted to champagne, the terracotta rose gold lifted to true rose gold.
     Every colour is a token here; nothing below re-invents one. */
  --ink:#FDF4F6; --ink-2:#FFFFFF; --ink-3:#FBE7EC;
  --chalk:#232028; --chalk-dim:#6E6069;
  /* flamingo */
  --flamingo:#F43F86; --flamingo-deep:#DA2C6C; --flamingo-soft:#F04C8B;
  /* metals */
  --gold:#D9A441; --gold-deep:#8F6418; --gold-lift:#F3D27F; --rosegold:#D98E85;
  --line:rgba(35,32,40,.12);
  --line-2:rgba(35,32,40,.26);

  --wrap:1180px;
  --ease:cubic-bezier(.2,.7,.2,1);
  --ease-pop:cubic-bezier(.2,.7,.2,1.2);

  --f-logo:"Bodoni Moda",Didot,Georgia,serif;                /* LAW: the lockup only */
  --f-seal:"Cinzel",serif;                                   /* LAW: seal only */
  --f-legend:"Gloock",serif;                                 /* LAW: H1 only  */
  --f-warm:"Fraunces",Georgia,serif;                         /* LAW: headings */
  --f-body:"Bricolage Grotesque",system-ui,-apple-system,sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{background:var(--ink);color-scheme:only light;-webkit-text-size-adjust:100%;scroll-behavior:smooth;overflow-x:hidden;overflow-x:clip}
@media (prefers-reduced-motion:reduce){ html{scroll-behavior:auto} }

body{
  background:var(--ink);color:var(--chalk);
  font-family:var(--f-body);font-size:16px;line-height:1.6;
  -webkit-font-smoothing:antialiased;overflow-x:hidden;overflow-x:clip;
  padding-bottom:0;
}
/* the grain that keeps daylight from going flat */
body::before{
  content:"";position:fixed;inset:0;pointer-events:none;z-index:0;opacity:.5;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.35  0 0 0 0 0.28  0 0 0 0 0.2  0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* ---------------- rose gold + gold ambience ----------------
   A fixed metallic wash under the whole page: gold high on the right,
   rose gold low on the left, breathing slowly. Alphas are deliberately
   tiny — this should register as warmth, not as decoration. */
body::after{
  content:"";position:fixed;inset:-10%;pointer-events:none;z-index:0;
  background:
    radial-gradient(38% 34% at 82% 8%,  rgba(242,80,138,.11), transparent 72%),
    radial-gradient(42% 38% at 8% 78%,  rgba(217,142,133,.18), transparent 74%),
    radial-gradient(30% 26% at 64% 96%, rgba(217,164,65,.09), transparent 76%);
  animation:breathe 26s ease-in-out infinite;
}
@keyframes breathe{
  0%,100%{ transform:translate3d(0,0,0) scale(1);      opacity:.9 }
  50%    { transform:translate3d(0,-1.2%,0) scale(1.04); opacity:1 }
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.sprite{position:absolute;width:0;height:0;overflow:hidden}
:focus-visible{outline:2px solid var(--gold);outline-offset:3px;border-radius:6px}
.skip{position:absolute;left:-9999px;top:0;z-index:99;background:var(--chalk);color:var(--ink);padding:12px 16px}
.skip:focus{left:0}

.wrap{max-width:var(--wrap);margin:0 auto;padding:0 clamp(20px,4vw,48px);position:relative;z-index:2}
.wrap--narrow{max-width:760px}

/* ---------------- type ---------------- */
h1{
  font-family:var(--f-legend);font-weight:400;
  font-size:clamp(42px,6.6vw,86px);line-height:1.05;letter-spacing:-.005em;
  color:var(--chalk);text-wrap:balance;margin-bottom:24px;
}
h1 .skill{
  font-family:var(--f-warm);font-style:italic;font-weight:640;
  background:linear-gradient(100deg,var(--flamingo) 0%,var(--rosegold) 48%,var(--gold) 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;padding-right:.05em;
}
h2{
  font-family:var(--f-warm);font-weight:600;
  font-size:clamp(30px,4.2vw,50px);line-height:1.14;letter-spacing:-.01em;
  color:var(--chalk);text-wrap:balance;margin-bottom:20px;
}
h3{font-family:var(--f-warm);font-weight:600;font-size:clamp(20px,2.1vw,24px);line-height:1.2;color:var(--chalk);margin-bottom:8px}
h4{font-family:var(--f-body);font-size:12px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--chalk-dim);margin-bottom:14px}
p{margin-bottom:16px}
.skill2{
  font-style:italic;font-family:var(--f-warm);
  background:linear-gradient(100deg,#D9A441 10%,#D98E85 90%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.pname{color:var(--flamingo);font-weight:600}

/* ---------------- the crest lockup ---------------- */
.crest{margin-bottom:28px}
.crest-a{
  display:flex;align-items:center;gap:12px;
  font-size:12.5px;font-weight:600;letter-spacing:.24em;text-transform:uppercase;color:var(--chalk-dim);
}
.crest-a::before{content:"";width:34px;height:1px;background:linear-gradient(90deg,var(--gold),var(--rosegold))}
.crest-b{
  font-family:var(--f-seal);font-weight:600;                 /* LAW: Cinzel lives here and nowhere else */
  font-size:clamp(17px,1.9vw,21px);letter-spacing:.3em;text-transform:uppercase;
  background:linear-gradient(100deg,#D9A441 10%,#D98E85 90%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  margin-top:9px;padding-left:46px;
}

/* ---------------- the lockup: The Axis ----------------
   FIFTH FONT LAW: Bodoni Moda sets the logo and nothing else. Never a heading,
   never body. If the face is ever replaced, it is replaced here alone. */
.axis-mark{
  --lw:clamp(44px,4vw,56px);            /* her width drives everything below */
  display:inline-flex;align-items:center;gap:0;line-height:1;white-space:nowrap;
  padding-top:calc(var(--lw) * .48);    /* the box has to contain her lift, or the bar clips her */
}
.am-word{
  font-family:var(--f-logo);font-style:italic;font-weight:500;
  font-size:clamp(20px,2.1vw,29px);letter-spacing:0;color:var(--chalk);
}
.am-leap{
  /* the lockup must fit its own box: her lift is 48% of her width, so the bar
     height has to clear 0.98W + half the word. W is sized to the bar, not the
     other way round. */
  width:var(--lw);height:auto;flex:none;
  transform:translate(-24%,-48%);margin-inline:calc(var(--lw) * -.12);
}
.mark--foot .am-word{color:var(--chalk)}   /* the footer is crème, so the word stays ink */
@media (max-width:560px){ .am-word{font-size:17px} .axis-mark{--lw:40px} }

/* ---------------- the wordmark, taking flight (retired, kept for /success) ---------------- */
.mark{display:flex;flex-direction:column;gap:2px;line-height:1}
.wordmark{display:inline-block;padding-right:2.45em;font-size:27px}
.pf{position:relative;display:inline-block}          /* hugs the word exactly */
.wordmark .perf{
  font-family:var(--f-warm);font-style:italic;font-weight:620;
  font-size:1em;letter-spacing:-.01em;color:var(--flamingo);
}
/* SCALPEL 2 · the swash springs off the final "e" of Performance.
   Everything is in em, so it launches from the letter at every size, and it
   is one SVG (stroke + bead) so the gold dot can never drift off the arc. */
.swash{
  position:absolute;left:100%;bottom:.22em;                 /* leaves at the baseline */
  width:3.05em;height:1.12em;margin-left:-.38em;            /* launches INSIDE the final "e" */
  overflow:visible;shape-rendering:geometricPrecision;
}
.swash path{
  fill:none;stroke:url(#mg);stroke-width:2;stroke-linecap:round;
  vector-effect:non-scaling-stroke;                          /* crisp at any size, any DPR */
}
.swash .bead{fill:url(#bead);filter:drop-shadow(0 0 3px rgba(166,118,50,.85))}
.mark small{font-size:9.5px;letter-spacing:.34em;text-transform:uppercase;color:var(--chalk-dim);padding-left:2px;white-space:nowrap}
@media (max-width:560px){ .wordmark{font-size:22px} .mark small{font-size:8px;letter-spacing:.2em} .mark .loc{display:none} }

/* ---------------- shimmer ----------------
   Dropped into the hero and the closing band. Sits at z-index 0, under the
   flight line (1) and the content (2), so it can never wash out either. */
/* The sweeping sheen across the hero and the closing band was retired
   2026-09-18: over photography it read as glare. What remains moves slowly
   and small: the chalk dust, the seal, the hairlines, the photograph. */

/* gold dust: two layers at different speeds, so it parallaxes instead of
   sliding as one rigid sheet */
.dust-field{position:fixed;inset:0;z-index:0;pointer-events:none;overflow:hidden}
.dust{position:absolute;inset:-25%;}
.dust--a{
  background-image:
    radial-gradient(2.6px 2.6px at 12% 22%, rgba(217,164,65,.95), transparent 62%),
    radial-gradient(2.2px 2.2px at 68% 12%, rgba(255,238,196,1),  transparent 62%),
    radial-gradient(3.0px 3.0px at 84% 54%, rgba(217,142,133,.95), transparent 62%),
    radial-gradient(2.1px 2.1px at 34% 72%, rgba(217,164,65,.85), transparent 62%),
    radial-gradient(2.4px 2.4px at 52% 40%, rgba(255,238,196,.95), transparent 62%),
    radial-gradient(1.9px 1.9px at 22% 58%, rgba(217,142,133,.85), transparent 62%),
    radial-gradient(2.3px 2.3px at 92% 30%, rgba(217,164,65,.85), transparent 62%),
    radial-gradient(1.8px 1.8px at 44% 90%, rgba(255,238,196,.85), transparent 62%);
  background-size:460px 380px;
  opacity:.5;
  animation:drift 44s linear infinite, twinkle 9s ease-in-out infinite;
}
.dust--b{
  background-image:
    radial-gradient(1.9px 1.9px at 26% 46%, rgba(217,142,133,.9), transparent 62%),
    radial-gradient(2.4px 2.4px at 78% 30%, rgba(217,164,65,.85), transparent 62%),
    radial-gradient(1.7px 1.7px at 44% 88%, rgba(255,238,196,.95), transparent 62%),
    radial-gradient(2.6px 2.6px at 92% 76%, rgba(217,164,65,.8), transparent 62%),
    radial-gradient(1.6px 1.6px at 8% 14%,  rgba(255,238,196,.9), transparent 62%);
  background-size:330px 300px;
  opacity:.34;
  animation:drift-b 64s linear infinite, twinkle 13s ease-in-out -3s infinite;
}
@keyframes twinkle{ 0%,100%{opacity:.42} 45%{opacity:.95} }
@keyframes drift  { from{transform:translate3d(0,0,0)} to{transform:translate3d(-620px,-140px,0)} }
@keyframes drift-b{ from{transform:translate3d(0,0,0)} to{transform:translate3d(430px,-190px,0)} }

/* the gold hairlines catch the light as it passes */
.rule,.card .crule{
  background:linear-gradient(90deg,var(--gold),var(--rosegold),#FFF3D6,var(--gold));
  background-size:280% 100%;
  animation:glint 14s ease-in-out infinite;
}
.card .crule{animation-duration:17s}
@keyframes glint{ 0%,100%{background-position:0% 0} 50%{background-position:100% 0} }

/* the seal is metal, so it moves like metal */
.crest-b{
  background:linear-gradient(100deg,#D9A441 8%,#D98E85 42%,#FFF3D6 52%,#D98E85 62%,#D9A441 92%);
  background-size:260% 100%;
  -webkit-background-clip:text;background-clip:text;color:transparent;
  animation:glint 14s ease-in-out infinite;
}

/* ---------------- header ---------------- */
header{
  position:sticky;top:0;z-index:50;
  background:color-mix(in srgb,#FEF7F9 90%,transparent);
  backdrop-filter:blur(10px);border-bottom:1px solid var(--line);
}
.bar{display:flex;align-items:center;gap:28px;height:100px}
nav{display:flex;gap:26px;font-size:14.5px;font-weight:500}
nav a{position:relative;padding:4px 0;color:var(--chalk-dim);transition:color .25s}
nav a::after{content:"";position:absolute;left:0;bottom:0;height:1px;width:0;background:linear-gradient(90deg,var(--gold),var(--rosegold));transition:width .3s}
nav a:hover{color:var(--chalk)} nav a:hover::after{width:100%}
.navwrap{display:flex;align-items:center;gap:26px;margin-left:auto}
@media (max-width:1000px){ nav{display:none} }
@media (max-width:700px){ .bar .btn{display:none} }

/* ---------------- button casing ---------------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--f-body);font-weight:700;font-size:15.5px;
  padding:14px 26px;border-radius:999px;border:1px solid transparent;cursor:pointer;
  transition:transform .22s var(--ease-pop), box-shadow .25s, border-color .25s, color .25s;
  will-change:transform;
}
.btn-pink{background:linear-gradient(135deg,var(--flamingo) 0%,var(--flamingo-deep) 100%);color:#2B0E18;box-shadow:0 10px 30px -12px rgba(222,58,114,.55), inset 0 1px 0 rgba(255,255,255,.34)}
.btn-pink:hover{transform:translateY(-2px);box-shadow:0 16px 38px -12px rgba(222,58,114,.7)}
.btn-ghost{border-color:var(--line-2);color:var(--chalk);background:transparent}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-2px)}
.btn-lg{padding:17px 32px;font-size:16.5px}
.btn-full{width:100%}
.bar .btn{padding:11px 20px;font-size:14px}
/* the sleek call pill */
.btn-call{
  padding:11px 24px;font-size:14px;font-weight:600;
  border:1px solid rgba(35,32,40,.25);color:var(--chalk);background:transparent;
}
.btn-call:hover{border-color:var(--gold);color:var(--gold-deep)}
@media (prefers-reduced-motion:reduce){ .btn,.btn:hover{transform:none;transition:none} }

/* ---------------- hero: blush resolving to crème ---------------- */
.hero{
  position:relative;overflow-x:clip;  /* the corner glow below is wider than a phone; it must never widen the page */
  background:linear-gradient(180deg,#F9D9E3 0%,#FBE5EC 42%,var(--ink) 82%);
  padding:clamp(48px,9vh,110px) 0 clamp(56px,10vh,120px);
}
.hero::before{
  content:"";position:absolute;top:-260px;left:-220px;width:820px;height:820px;border-radius:50%;
  background:radial-gradient(closest-side, rgba(242,80,138,.20), transparent 70%);pointer-events:none;
}
.grid{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);gap:clamp(36px,6vw,84px);align-items:center}
@media (max-width:960px){ .grid{grid-template-columns:1fr;gap:36px} }

.h1sub{font-family:var(--f-warm);font-style:italic;font-weight:560;font-size:clamp(20px,2.2vw,27px);color:var(--flamingo-soft);margin:-8px 0 22px;letter-spacing:.01em}
.lede{font-family:var(--f-warm);font-weight:600;font-size:clamp(25px,2.5vw,34px);line-height:1.15;margin:2px 0 14px;letter-spacing:-.01em}
.lede .lp{color:var(--flamingo)}
.lede .lg{font-style:italic;background:linear-gradient(100deg,#D9A441 10%,#D98E85 90%);-webkit-background-clip:text;background-clip:text;color:transparent}
.sub{font-size:clamp(16.5px,1.45vw,19.5px);color:var(--chalk-dim);max-width:58ch;margin-bottom:32px}
.sub strong{color:var(--chalk);font-weight:600}
.sub em{font-style:normal;color:var(--flamingo-soft)}
.ctas{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:16px}
.range{font-size:13.5px;letter-spacing:.06em;color:var(--chalk-dim);margin:22px 0 30px}
.range b{color:var(--chalk);font-weight:600}
.hero .btn-call{margin-bottom:4px}

/* stacked gold bullets */
.trust2{list-style:none;display:flex;flex-direction:column;gap:12px;font-size:15px;color:var(--chalk-dim);font-weight:500}
.trust2 li{display:flex;gap:13px;align-items:baseline}
.trust2 li::before{content:"";width:6px;height:6px;border-radius:50%;background:linear-gradient(135deg,var(--gold),var(--rosegold));flex:none;transform:translateY(-1px)}

/* ---------------- the dark accent panel ---------------- */
.panel{
  position:relative;aspect-ratio:4/4.6;border-radius:20px;
  background:linear-gradient(160deg,#221F27,#2B2733);border:1px solid var(--line);
  display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;
  padding:36px;box-shadow:0 46px 90px -44px rgba(120,20,60,.38), 0 10px 30px -18px rgba(120,20,60,.18);
}
@media (max-width:960px){ .panel{aspect-ratio:16/11} }
/* the hero panel is a screen now, not a card: landscape, and on wide viewports
   it runs off the right edge so the film has somewhere to be big. */
@media (min-width:961px){
  .hero .panel.has-film{aspect-ratio:4/3}
}
@media (min-width:1180px){
  /* the panel is a grid item; a negative margin lets it run past the column
     and off the right edge of the page, so the film has room to be big */
  .hero .panel.has-film{
    margin-right:calc((100vw - min(100vw, var(--wrap))) / -2 - clamp(20px,4vw,48px));
    border-top-right-radius:0;border-bottom-right-radius:0;
  }
}
.panel{overflow:hidden;isolation:isolate}
/* the rose gold rim: a hairline of metal around the plate */
.panel::before{
  content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;z-index:2;
  padding:1px;
  background:linear-gradient(150deg, rgba(217,142,133,.75), rgba(217,164,65,.35) 38%, rgba(255,243,214,.15) 52%, rgba(143,100,24,.55) 100%);
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
}
.panel::after{
  /* no sweep. A still, soft light from the top-left so the plate has depth */
  content:"";position:absolute;inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,.10), transparent 46%);
  z-index:0;pointer-events:none;
}
.panel > *{position:relative;z-index:1}

.tick{position:absolute;width:26px;height:26px;border-color:var(--gold);border-style:solid;border-width:0;opacity:.9}
.tick.tl{top:14px;left:14px;border-top-width:2px;border-left-width:2px;border-top-left-radius:8px}
.tick.tr{top:14px;right:14px;border-top-width:2px;border-right-width:2px;border-top-right-radius:8px}
.tick.bl{bottom:14px;left:14px;border-bottom-width:2px;border-left-width:2px;border-bottom-left-radius:8px}
.tick.br{bottom:14px;right:14px;border-bottom-width:2px;border-right-width:2px;border-bottom-right-radius:8px}
.panel .big{font-family:var(--f-warm);font-style:italic;font-weight:600;font-size:clamp(22px,2.2vw,28px);color:#FBF3F5}

/* ---------------- the film ----------------
   A video only exists once a path is set in js/config.js. Until then the
   panel is exactly what it is today. When it arrives it fills the panel and
   the line becomes a caption over it. */
img.film,
.film{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  z-index:0;border-radius:inherit;
}
/* the still photograph breathes: a forty-second drift, barely there, so the
   room feels alive without a frame of video. Parallax on scroll is added by
   main.js as a variable; both stop for anyone who asked for reduced motion. */
img.film{
  transform-origin:50% 60%;
  animation:breathe-film 40s ease-in-out infinite alternate;
  will-change:transform;
}
@keyframes breathe-film{ from{transform:translateY(var(--py,0)) scale(1.02)} to{transform:translateY(var(--py,0)) scale(1.09)} }
.panel.has-film{padding:0}
.panel.has-film::after{ opacity:.6 }
.panel.has-film > *:not(.film){z-index:2}   /* the film is a child too: it must stay under the caption */
.panel.has-film .big{
  position:absolute;left:0;right:0;bottom:clamp(18px,3vw,30px);
  padding:0 clamp(18px,3vw,30px);margin:0;
  text-shadow:0 2px 24px rgba(0,0,0,.75);
}
.panel.has-film::before{  /* the rim stays; a scrim so the caption holds on bright photography */
  box-shadow:inset 0 -160px 110px -80px rgba(0,0,0,.85);
}
@media (prefers-reduced-motion:reduce){ .film{ /* poster only; JS never sets autoplay */ } }
/* a coach's portrait fills the plate; the ticks and rim stay on top. Cut from
   the old site's 2018 photographs 2026-09-19, mocked for Livy; initials remain
   where no photograph exists yet. */
.panel.has-portrait{padding:0}
.panel .portrait{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:50% 20%;z-index:0;border-radius:inherit}
.panel .initial{font-family:var(--f-warm);font-weight:600;font-size:clamp(30px,4vw,42px);background:linear-gradient(135deg,var(--gold),var(--rosegold));-webkit-background-clip:text;background-clip:text;color:transparent}
.panel .plabel{font-family:var(--f-body);font-size:11.5px;letter-spacing:.18em;text-transform:uppercase;color:#B0A6AD;margin-top:10px}

/* The flight line (the gold arc through the hero) was retired 2026-09-18 on
   Mick's call. Its routes, masks and measuring notes live in git history. */

/* ---------------- rise-in ---------------- */
.rise{opacity:0;transform:translateY(18px);animation:rise .7s var(--ease) forwards}
.d1{animation-delay:.05s}.d2{animation-delay:.15s}.d3{animation-delay:.25s}
.d4{animation-delay:.35s}.d5{animation-delay:.45s}.d6{animation-delay:.3s}
@keyframes rise{to{opacity:1;transform:none}}
/* below the fold the same gesture is earned by scrolling */
.js .lift{opacity:0;transform:translateY(18px);transition:opacity .6s var(--ease),transform .6s var(--ease)}
.js .lift.is-in{opacity:1;transform:none}
/* the big lines arrive a beat later and a little further, so the eye lands on
   the type first and the detail second */
.js .lift h2{opacity:0;transform:translateY(26px);transition:opacity .78s var(--ease) .06s,transform .78s var(--ease) .06s}
.js .lift.is-in h2{opacity:1;transform:none}
.js .cards .lift.is-in:nth-child(2),.js .events .lift.is-in:nth-child(2),
.js .steps .lift.is-in:nth-child(2),.js .team .lift.is-in:nth-child(2){transition-delay:.07s}
.js .cards .lift.is-in:nth-child(3),.js .events .lift.is-in:nth-child(3),
.js .steps .lift.is-in:nth-child(3),.js .team .lift.is-in:nth-child(3){transition-delay:.14s}
.js .cards .lift.is-in:nth-child(4),.js .events .lift.is-in:nth-child(4),
.js .team .lift.is-in:nth-child(4){transition-delay:.21s}
.js .events .lift.is-in:nth-child(5),.js .team .lift.is-in:nth-child(5){transition-delay:.28s}
@media (prefers-reduced-motion:reduce){
  .js .lift h2{opacity:1;transform:none;transition:none}
  body::after,.dust,.rule,.card .crule,.crest-b,img.film{animation:none}
  .dust{opacity:.4}
  .dust-field{opacity:.7}
  .rise{opacity:1;transform:none;animation:none}
  .js .lift{opacity:1;transform:none;transition:none}
}

/* ---------------- sections ---------------- */
.section{padding:clamp(52px,8vh,96px) 0}
.section--tint{background:var(--ink-3)}
.rule{width:64px;height:2px;background:linear-gradient(90deg,var(--gold),var(--rosegold));margin-bottom:26px}
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:12.5px;font-weight:600;letter-spacing:.22em;text-transform:uppercase;
  color:var(--chalk-dim);margin-bottom:22px;
}
.eyebrow::before{content:"";width:34px;height:1px;background:linear-gradient(90deg,var(--gold),var(--rosegold))}
.shead{max-width:62ch;margin-bottom:clamp(30px,5vw,46px)}
.shead p{color:var(--chalk-dim);font-size:clamp(16px,1.35vw,18px);max-width:60ch}

/* ---------------- the cinematic band ----------------
   The one dark, full-bleed moment in a daylight site. Borrowed technique from
   the scroll-storytelling brief; the ratified palette is not touched. */
.known{
  position:relative;overflow:hidden;
  /* the one dark screen on the site: deep rose, not neutral charcoal */
  background:linear-gradient(165deg,#2A1622 0%,#3A1B2C 55%,#2B1420 100%);
  padding:clamp(72px,13vh,150px) 0 clamp(76px,14vh,160px);
}
.known::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(60% 60% at 78% 30%, rgba(244,63,134,.22), transparent 70%);
}
.known .wrap{position:relative;z-index:2}
.known h2{color:#FBF3F5;max-width:19ch;font-size:clamp(32px,5.4vw,62px)}
.known p{color:#B3ABB6}
.known p strong{color:#FBF3F5}
.known .rule{background:linear-gradient(90deg,var(--gold-lift,#F3D27F),var(--rosegold))}
.known__film{
  position:absolute;inset:0;z-index:0;overflow:hidden;pointer-events:none;
}
.known__film .film{border-radius:0;opacity:.42}
.known.has-band-film::before{
  content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(100deg,rgba(26,23,31,.92) 0%,rgba(26,23,31,.72) 48%,rgba(26,23,31,.45) 100%);
}
.known__leap{
  /* whole figure in frame, always: sized against the shorter of width and
     height so neither edge can cut her */
  position:absolute;right:clamp(24px,4vw,80px);top:50%;transform:translateY(-50%);
  width:min(30vw,420px,70vh);z-index:1;opacity:.55;pointer-events:none;
}
@media (max-width:900px){ .known__film{
  position:absolute;inset:0;z-index:0;overflow:hidden;pointer-events:none;
}
.known__film .film{border-radius:0;opacity:.42}
.known.has-band-film::before{
  content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(100deg,rgba(26,23,31,.92) 0%,rgba(26,23,31,.72) 48%,rgba(26,23,31,.45) 100%);
}
.known__leap{right:12px;width:min(34vw,220px);opacity:.28} }

/* the known passage · type sizes only. Colour and ground live in the
   cinematic band block above, and nothing here may override them. */
.known p{font-size:clamp(16px,1.4vw,19px);max-width:60ch}

/* ---------------- programs ---------------- */
.cards{display:grid;gap:18px}
@media (min-width:640px){ .cards{grid-template-columns:repeat(2,1fr)} }
@media (min-width:1060px){ .cards{grid-template-columns:repeat(4,1fr)} }
.card{
  background:var(--ink-2);border:1px solid var(--line);border-radius:18px;
  padding:26px 24px 22px;display:flex;flex-direction:column;
  transition:transform .22s var(--ease),box-shadow .25s,border-color .25s;
}
.card:hover{transform:translateY(-3px);border-color:rgba(217,164,65,.45);box-shadow:0 26px 50px -34px rgba(110,30,60,.5)}
.card .crule{width:38px;height:2px;background:linear-gradient(90deg,var(--gold),var(--rosegold));margin-bottom:18px}
.card h3{margin-bottom:6px}
@media (min-width:1060px){ .card h3{min-height:2.4em} }
.card .age{font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--gold-deep);margin-bottom:12px}
.card .tagline{font-family:var(--f-warm);font-style:italic;font-weight:600;font-size:17px;color:var(--flamingo-soft);margin-bottom:10px}
.card p{font-size:15.5px;color:var(--chalk-dim)}
.card .go{margin-top:auto;padding-top:16px;font-weight:700;font-size:14.5px;color:var(--flamingo-deep)}
.card .go span{display:inline-block;transition:transform .18s var(--ease)}
.card:hover .go span{transform:translateX(4px)}
@media (prefers-reduced-motion:reduce){ .card,.card:hover,.card .go span{transform:none;transition:none} }

/* ---------------- three reasons ---------------- */
.reasons{display:grid;gap:30px}
@media (min-width:880px){ .reasons{grid-template-columns:repeat(3,1fr);gap:44px} }
.reason{border-top:2px solid transparent;border-image:linear-gradient(90deg,var(--gold),var(--rosegold)) 1;padding-top:18px}
.reason .n{font-family:var(--f-warm);font-weight:600;font-size:14px;letter-spacing:.16em;color:var(--gold-deep);display:block;margin-bottom:8px}
.reason p{color:var(--chalk-dim);font-size:16px}

/* ---------------- first visit ---------------- */
.steps{list-style:none;display:grid;gap:18px;counter-reset:s}
@media (min-width:880px){ .steps{grid-template-columns:repeat(3,1fr)} }
.steps li{background:var(--ink-2);border:1px solid var(--line);border-radius:18px;padding:26px 24px}
.steps .n{
  display:grid;place-items:center;width:40px;height:40px;border-radius:12px;margin-bottom:16px;
  font-family:var(--f-warm);font-weight:600;font-size:18px;color:var(--gold-deep);
  background:rgba(217,164,65,.10);border:1px solid rgba(217,164,65,.34);
}
.steps p{font-size:16.5px;color:var(--chalk);margin-bottom:10px}
.steps .go{font-weight:700;font-size:14.5px;color:var(--flamingo-deep)}

/* ---------------- events ---------------- */
.events{list-style:none;display:grid;gap:12px}
@media (min-width:700px){ .events{grid-template-columns:repeat(2,1fr)} }
@media (min-width:1060px){ .events{grid-template-columns:repeat(5,1fr)} }
.events a{
  display:flex;align-items:center;justify-content:space-between;gap:12px;height:100%;
  padding:18px 20px;border-radius:16px;background:var(--ink-2);border:1px solid var(--line);
  font-weight:600;font-size:15.5px;color:var(--chalk);
  transition:border-color .22s,transform .22s var(--ease),box-shadow .25s;
}
.events a:hover{border-color:rgba(217,164,65,.5);transform:translateY(-2px);box-shadow:0 20px 40px -30px rgba(110,30,60,.5)}
.events .dot{width:7px;height:7px;border-radius:50%;background:linear-gradient(135deg,var(--gold),var(--rosegold));flex:none}
.events__note{margin-top:20px;font-size:15px;color:var(--chalk-dim)}
.events__note a{color:var(--flamingo-deep);font-weight:600}
@media (prefers-reduced-motion:reduce){ .events a,.events a:hover{transform:none;transition:none} }

/* ---------------- team ---------------- */
/* the team reads as a track you push through, not a static grid */
.team{
  display:grid;grid-auto-flow:column;grid-auto-columns:minmax(210px,1fr);
  gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;
  padding-bottom:8px;scrollbar-width:thin;
}
.team>*{scroll-snap-align:start}
@media (min-width:980px){ .team{grid-auto-columns:1fr;overflow-x:visible} }
.teamnav{display:flex;gap:10px;margin-top:18px}
@media (min-width:980px){ .teamnav{display:none} }
.teamnav button{
  width:42px;height:42px;border-radius:999px;border:1px solid var(--line-2);
  background:transparent;color:var(--chalk);cursor:pointer;font-size:17px;line-height:1;
}
.teamnav button:hover{border-color:var(--gold);color:var(--gold-deep)}
.member .panel{aspect-ratio:4/5;padding:18px;border-radius:16px}
.member h3{font-size:19px;margin:16px 0 2px}
.member .role{font-size:13.5px;color:var(--chalk-dim);font-weight:500;line-height:1.45}
/* coach bios: native <details>, so a tap opens the story with JavaScript off.
   The row aligns at the top and the open card grows down; nothing floats over
   the next section. */
.team{align-items:start}
.member summary{display:block;list-style:none;cursor:pointer;border-radius:16px}
.member summary::-webkit-details-marker{display:none}
.member summary:focus-visible{outline:2px solid var(--gold);outline-offset:4px}
.member .hint{
  display:block;font-size:11.5px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;
  color:var(--chalk-dim);margin-top:8px;
}
.member .hint .less{display:none}
.member[open] .hint .more{display:none}
.member[open] .hint .less{display:inline}
.member .bio{font-size:14px;line-height:1.55;color:var(--chalk-dim);margin-top:12px}
.member .bio p+p{margin-top:8px}
@media (prefers-reduced-motion:no-preference){
  .member[open] .bio{animation:biofade .32s var(--ease) both}
  @keyframes biofade{from{opacity:0}to{opacity:1}}
}

/* ---------------- visit ---------------- */
.visit{display:grid;gap:34px}
@media (min-width:900px){ .visit{grid-template-columns:1fr 1.05fr;gap:56px;align-items:start} }
.fact{margin-bottom:26px}
.fact .k{font-size:11.5px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--chalk-dim);margin-bottom:6px}
.fact .v{font-family:var(--f-warm);font-weight:600;font-size:21px;line-height:1.35;color:var(--chalk)}
.fact .v a:hover{color:var(--flamingo-deep)}
.fact .go{font-weight:700;font-size:14.5px;color:var(--flamingo-deep)}
.hours{border-collapse:collapse;width:100%;max-width:340px}
.hours th,.hours td{text-align:left;padding:7px 0;border-bottom:1px solid var(--line);font-size:15.5px}
.hours th{font-weight:600;color:var(--chalk)}
.hours td{color:var(--chalk-dim);text-align:right}
.serving{font-size:15.5px;color:var(--chalk-dim);border-left:2px solid var(--gold);padding-left:14px;margin-bottom:26px}
.visit .panel{aspect-ratio:4/3.2;gap:6px}
.visit .panel .addr{font-family:var(--f-warm);font-weight:600;font-size:clamp(19px,2vw,23px);color:#FBF3F5;line-height:1.4}
.visit .panel .btn{margin-top:18px}
.visit .panel .btn-ghost{border-color:rgba(243,210,127,.45);color:#F3D27F}
.visit .panel .btn-ghost:hover{border-color:#F3D27F;color:#FFF3D6}

/* the map plate: the streets around the gym, redrawn in the site's plum and
   rose from OpenStreetMap data (design/map/), the gym a gold pin at dead
   centre. The address and the Google Maps door sit over it at the foot. */
.visit .panel.has-map{padding:0;justify-content:flex-end;align-items:stretch;text-align:left}
.visit .panel .mapimg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;border-radius:inherit}
.visit .panel .mapfoot{
  position:relative;z-index:2;padding:clamp(18px,3vw,28px) clamp(20px,3.4vw,32px) clamp(20px,3.4vw,30px);
  background:linear-gradient(to top, rgba(28,22,32,.92), rgba(28,22,32,.55) 60%, transparent);
  border-radius:0 0 20px 20px;
}
.visit .panel .mapfoot .addr{margin:0}
.visit .panel .mapfoot .btn{margin-top:14px}
.visit .panel .mapcredit{
  position:absolute;right:48px;top:16px;z-index:2;font-size:10.5px;letter-spacing:.04em;
  color:rgba(251,243,245,.55);text-decoration:none;padding:3px 8px;border-radius:999px;background:rgba(28,22,32,.45);
}
.visit .panel .mapcredit:hover{color:#FBF3F5}
/* the pin breathes: a rose ring that swells and fades from the centre */
.visit .panel .pulse{
  position:absolute;left:50%;top:50%;width:26px;height:26px;margin:-13px 0 0 -13px;border-radius:50%;
  border:2px solid rgba(244,63,134,.9);z-index:1;opacity:0;pointer-events:none;
  animation:pulse 2.8s ease-out infinite;
}
@keyframes pulse{0%{transform:scale(.6);opacity:.9}70%{transform:scale(3.2);opacity:0}100%{transform:scale(3.2);opacity:0}}
@media (prefers-reduced-motion:reduce){ .visit .panel .pulse{animation:none;opacity:.7;transform:scale(1.6)} }

/* ---------------- form ---------------- */
.form{background:var(--ink-2);border:1px solid var(--line);border-radius:20px;padding:clamp(22px,4vw,34px);box-shadow:0 30px 60px -46px rgba(110,30,60,.5)}
.field{margin-bottom:18px}
.field label{display:block;font-weight:600;font-size:14.5px;color:var(--chalk);margin-bottom:7px}
.field .opt{font-weight:400;color:var(--chalk-dim)}
.field input,.field select,.field textarea{
  width:100%;font:inherit;font-size:16px;color:var(--chalk);
  padding:13px 14px;border:1px solid var(--line-2);border-radius:12px;background:var(--ink);
  transition:border-color .2s,background .2s;
}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--gold);background:var(--ink-2)}
.field textarea{resize:vertical}
.hp{position:absolute;left:-9999px}

/* ---------------- closing band ---------------- */
.band{position:relative;overflow:visible;text-align:center;padding:clamp(56px,9vh,104px) 0;background:linear-gradient(180deg,var(--ink) 0%,#FCEFF3 45%,#FBE3EA 100%);border-top:1px solid var(--line)}
.band .axis-mark{--lw:clamp(96px,11vw,150px);margin:0 auto clamp(22px,4vw,40px);padding-top:calc(var(--lw)*.62)}
.band .am-word{font-size:clamp(34px,4.6vw,62px)}
.band h2{max-width:20ch;margin:0 auto 10px}
.band .sub{margin:0 auto 26px;max-width:46ch}
.band .ctas{justify-content:center}

/* ---------------- footer ---------------- */
.foot{background:var(--ink);border-top:1px solid var(--line);padding:clamp(44px,7vh,72px) 0 26px;font-size:15px;color:var(--chalk-dim)}
.foot__inner{display:grid;gap:32px}
@media (min-width:860px){ .foot__inner{grid-template-columns:1.4fr 1fr 1fr 1fr;gap:44px} }
.foot p{margin-bottom:6px}
.foot a:hover{color:var(--flamingo-deep)}
.foot .mark{margin-bottom:14px}
.foot__hours{line-height:1.9}
.foot__base{margin-top:38px;padding-top:20px;border-top:1px solid var(--line);display:flex;flex-wrap:wrap;gap:8px 28px;justify-content:space-between;font-size:13px}

/* ---------------- the pinned conversion rail ----------------
   Mobile keeps the dock. Desktop gets a pill that arrives once the hero has
   left, so the booking path is never more than one thumb away. */
.pin{
  position:fixed;right:clamp(16px,2.4vw,34px);bottom:clamp(16px,2.4vw,34px);z-index:55;
  display:none;gap:10px;align-items:center;
  opacity:0;transform:translateY(14px);pointer-events:none;
  transition:opacity .35s var(--ease),transform .35s var(--ease);
}
.pin.is-on{opacity:1;transform:none;pointer-events:auto}
@media (min-width:641px){ .pin{display:flex} }
@media (prefers-reduced-motion:reduce){ .pin{transition:none} }

dialog.sheet{
  border:0;padding:0;background:transparent;max-width:min(560px,92vw);width:100%;
  color:var(--chalk);
}
dialog.sheet::backdrop{background:rgba(23,22,26,.55);backdrop-filter:blur(6px)}
.sheet__inner{
  background:var(--creme-2,#fff);border:1px solid var(--line);border-radius:22px;
  padding:clamp(22px,4vw,34px);box-shadow:0 50px 90px -50px rgba(110,30,60,.8);
  max-height:86vh;overflow-y:auto;
}
.sheet__head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:18px}
.sheet__head h2{font-size:clamp(22px,3vw,30px);margin:0}
.sheet__x{
  flex:none;width:40px;height:40px;border-radius:999px;border:1px solid var(--line-2);
  background:transparent;font-size:20px;line-height:1;cursor:pointer;color:var(--chalk);
}
.sheet__x:hover{border-color:var(--gold);color:var(--gold-deep)}
.sheet .form{border:0;box-shadow:none;padding:0;background:transparent}

/* ---------------- mobile dock ---------------- */
.dock{
  position:fixed;left:0;right:0;bottom:0;z-index:60;display:none;gap:10px;
  padding:12px 14px calc(12px + env(safe-area-inset-bottom));
  background:color-mix(in srgb,var(--ink) 88%,transparent);
  backdrop-filter:blur(12px);border-top:1px solid var(--line);
}
.dock .btn{flex:1;padding:15px 10px;font-size:15px}
@media (max-width:640px){ .dock{display:flex} body{padding-bottom:82px} }


/* ---------------- Stage B · the four routes in, weighted ----------------
   Instructional and preschool get the real estate. Tumbling exists, quiet.
   Team is a door to its own page. (Commission, Stage B.) */
.cards--lead,.cards--quiet{grid-template-columns:1fr}
@media (min-width:700px){ .cards--lead,.cards--quiet{grid-template-columns:repeat(2,1fr)} }
@media (min-width:1060px){ .cards--lead,.cards--quiet{grid-template-columns:repeat(2,1fr)} .card--lead h3,.card--quiet h3{min-height:0} }
.cards--quiet{margin-top:14px;gap:14px}
.card--lead{padding:clamp(28px,3.4vw,40px) clamp(24px,3vw,36px) clamp(24px,2.6vw,30px)}
.card--lead h3{font-size:clamp(24px,2.5vw,31px)}
.card--lead p{font-size:clamp(15.5px,1.3vw,17.5px)}
.card--quiet{padding:20px 22px 18px;background:transparent;box-shadow:none}
.card--quiet:hover{box-shadow:none;transform:none;border-color:var(--line-2)}
.card--quiet h3{font-size:18px}
.card--quiet p{font-size:14.5px}
.card--quiet .go{font-size:14px;padding-top:12px}
.card--quiet .crule{width:26px;opacity:.7}

/* events: six doors, three across */
@media (min-width:1060px){ .events{grid-template-columns:repeat(3,1fr)} }
.events__all a{background:transparent;border-style:dashed;color:var(--flamingo-deep)}

/* ---------------- the team page ---------------- */
.tpage{padding-top:clamp(28px,5vh,56px)}
.tpage h1{max-width:16ch;margin-bottom:12px}
.tpage .lede{color:var(--chalk-dim);font-weight:500;font-size:clamp(19px,2vw,25px);max-width:44ch;margin-bottom:clamp(36px,6vw,64px)}
.tpage__grid{display:grid;gap:22px}
@media (min-width:880px){ .tpage__grid{grid-template-columns:repeat(3,1fr);gap:24px} }
.tpage__grid>div{background:var(--ink-2);border:1px solid var(--line);border-radius:18px;padding:28px 26px 24px;display:flex;flex-direction:column}
.tpage__grid h2{font-size:clamp(21px,2vw,25px);margin-bottom:10px}
.tpage__grid p{color:var(--chalk-dim);font-size:15.5px;margin-bottom:18px}
.tpage__grid .btn,.tpage__grid .go{margin-top:auto;align-self:flex-start}
.tpage__grid .go{font-weight:700;font-size:14.5px;color:var(--flamingo-deep)}
nav a[aria-current="page"]{color:var(--chalk)} nav a[aria-current="page"]::after{width:100%}


/* ---------------- 2026-09-18 · the phone hero, and the lit wordmark ----------------
   Mick, from his phone: the lockup fills the top and is centred; the seal is
   bigger; the lockup lights up the way the seal does, in blush; nothing pans
   sideways; the hero reads centred. Desktop keeps the left lockup and nav. */
header .am-word{
  background:linear-gradient(100deg,var(--flamingo-deep) 0%,var(--rosegold) 34%,#FFE3EB 50%,var(--rosegold) 66%,var(--flamingo-deep) 100%);
  background-size:260% 100%;
  -webkit-background-clip:text;background-clip:text;color:transparent;
  animation:glint 12s ease-in-out infinite;
}
@media (prefers-reduced-motion:reduce){ header .am-word{animation:none;background-position:50% 0} }

@media (max-width:700px){
  .bar{height:118px;justify-content:center;gap:0;align-items:flex-end;padding-bottom:14px}
  .navwrap{display:none}              /* its auto margin was shoving the lockup left */
  .mark{align-items:center}
  /* the leap's own height sets the row (lw x 1.48 with its headroom), so it is
     capped at 62px; the words carry the width instead */
  .axis-mark{--lw:clamp(50px,14vw,62px)}
  .am-word{font-size:clamp(22px,7.1vw,33px)}
}
@media (max-width:700px){
  .hero .grid > div:first-child{text-align:center}
  .crest{margin-bottom:26px}
  .crest-a{justify-content:center}
  .crest-b{padding-left:0;font-size:clamp(18px,5.5vw,25px);letter-spacing:.26em;margin-top:12px;line-height:1.35}
  .hero h1{margin-left:auto;margin-right:auto}
  .sub{margin-left:auto;margin-right:auto}
  .ctas{justify-content:center}
  .ctas .btn{flex:1 1 150px;white-space:nowrap}
  .hero .btn-call{margin-bottom:6px}
  .range{text-align:center}
  .trust2{align-items:center}
  .trust2 li{justify-content:center}
}
@media (max-width:480px){
  .ctas .btn{flex:1 1 100%}          /* two lines in a button is not luxury; stack them */
}

/* wide desktops: the content column grows, so the left gutter reads as a
   margin rather than as empty room beside the bleeding photo (Mick, 2026-09-18) */
@media (min-width:1400px){ :root{--wrap:1320px} }
@media (min-width:1700px){ :root{--wrap:1400px} }
/* the closing lockup on phones: sized like the header lockup so it never runs
   off the right edge (Mick's screenshot, 2026-09-18) */
@media (max-width:700px){
  .band .axis-mark{--lw:clamp(52px,14vw,70px);padding-top:calc(var(--lw)*.62)}
  .band .am-word{font-size:clamp(22px,7.1vw,33px)}
}

/* 2026-09-18 · the hero panel is out. The hero is the words alone: one column,
   measured, with the same room on the right that the panel used to hold. */
.hero .grid{grid-template-columns:1fr}
.hero .grid > div{max-width:760px}

/* ---------------- 2026-09-18 · the athlete in the hero ----------------
   She is the whole first screen: cut out of the arena, plated in rose gold,
   anchored to the bottom right so the blush ground reads as her floor. A
   two-axis mask keeps the copy column clean at every width, and she breathes
   between a third and two-thirds opacity over eleven seconds. Reduced motion
   holds her still. The words always sit above her. */
.hero-athlete{
  position:absolute;right:2.5vw;bottom:0;z-index:1;pointer-events:none;
  width:min(72vw,1120px);
  -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 46%,#000 100%),linear-gradient(180deg,transparent 0%,#000 26%,#000 100%);
  mask-image:linear-gradient(90deg,transparent 0%,#000 46%,#000 100%),linear-gradient(180deg,transparent 0%,#000 26%,#000 100%);
  -webkit-mask-composite:source-in;mask-composite:intersect;
  transform-origin:60% 100%;
  animation:athlete-breathe 11s ease-in-out infinite alternate;
  will-change:opacity,transform;
}
.hero-athlete img{display:block;width:100%;height:auto}
@keyframes athlete-breathe{from{opacity:.36;transform:scale(1)}to{opacity:.68;transform:scale(1.03)}}
.hero .wrap{position:relative;z-index:2}
@media (max-width:700px){
  /* she rises behind the words on the first screen: the arch peaks behind the
     headline, her hands land behind the buttons, and she stays light enough
     that every word holds. The hero keeps a little floor under her. */
  .hero{padding-bottom:clamp(56px,10vh,120px)}
  .hero-athlete{width:97vw;right:1.5vw;top:19%;bottom:auto;transform-origin:50% 100%;
    -webkit-mask-image:linear-gradient(180deg,transparent 0%,#000 24%,#000 86%,transparent 100%);mask-image:linear-gradient(180deg,transparent 0%,#000 24%,#000 86%,transparent 100%);
    -webkit-mask-composite:source-over;mask-composite:add}
  @keyframes athlete-breathe{from{opacity:.18;transform:scale(1)}to{opacity:.36;transform:scale(1.02)}}
}
@media (prefers-reduced-motion:reduce){ .hero-athlete{animation:none;opacity:.55;transform:none} }

/* the entrance: she arrives after the words, over two seconds, then breathes */
.js .hero-athlete{animation:athlete-enter 2.2s cubic-bezier(.2,.7,.2,1) .35s both, athlete-breathe 11s ease-in-out 2.55s infinite alternate}
@keyframes athlete-enter{from{opacity:0;transform:translateY(24px) scale(.985)}to{opacity:.36;transform:translateY(0) scale(1)}}
@media (max-width:700px){ @keyframes athlete-enter{from{opacity:0;transform:translateY(24px) scale(.985)}to{opacity:.18;transform:translateY(0) scale(1)}} }
/* parallax: main.js writes --ay as a fraction of scroll; she drifts slower than the page */
.hero-athlete{translate:0 var(--ay,0px)}
@media (prefers-reduced-motion:reduce){ .js .hero-athlete{animation:none;opacity:.55;transform:none;translate:none} }

/* ---------------- the policies page ----------------
   Tucked away in the footer. Reads the way a good front desk talks: one rule
   per line, the number in bold, nothing a parent has to read twice. */
.policy{padding-top:clamp(28px,5vh,56px)}
.policy h1{max-width:14ch;margin-bottom:12px}
.policy .lede{color:var(--chalk-dim);font-weight:500;font-size:clamp(18px,1.8vw,22px);max-width:46ch;margin-bottom:28px}
.policy__jump{display:flex;flex-wrap:wrap;gap:8px 10px;margin-bottom:clamp(36px,5vw,56px)}
.policy__jump a{font-size:13.5px;font-weight:600;padding:8px 14px;border:1px solid var(--line-2);border-radius:999px;color:var(--chalk-dim);transition:color .2s,border-color .2s}
.policy__jump a:hover{color:var(--flamingo-deep);border-color:var(--flamingo-deep)}
.policy h2{font-size:clamp(24px,2.6vw,32px);margin:clamp(34px,5vw,54px) 0 14px;padding-top:18px;border-top:1px solid var(--line);scroll-margin-top:120px}
.policy h2::before{content:"";display:block;width:34px;height:2px;background:linear-gradient(90deg,var(--gold),var(--rosegold));margin-bottom:16px}
.rules{display:grid;gap:14px 24px;margin:0}
@media (min-width:640px){ .rules{grid-template-columns:150px 1fr} }
.rules dt{font-family:var(--f-warm);font-weight:600;font-size:17px;color:var(--chalk)}
.rules dd{margin:0;color:var(--chalk-dim);font-size:16px;line-height:1.6}
.rules dd strong{color:var(--chalk);font-weight:600}
.rules dd a{color:var(--flamingo-deep);font-weight:600}
.policy__ask{margin-top:clamp(40px,6vw,64px);padding:26px 28px;border:1px solid var(--line);border-radius:18px;background:var(--ink-2)}
.policy__ask h2{border:0;margin:0 0 8px;padding:0;font-size:22px}
.policy__ask h2::before{display:none}
.policy__ask p{margin:0;color:var(--chalk-dim)}
.policy__ask a{color:var(--flamingo-deep);font-weight:600}
