/* ============================================================
   Saint Michaels Boxing Club — site.css (design system v2)
   Built from first principles. Dark athletic editorial.
   Shape system: buttons pill · cards 24px · media 16px · inner 10px.
   Motion: transform/opacity only, weighted beziers, reduced-motion safe.
   ============================================================ */

/* ---------- Fonts (self-hosted, Fontshare FFL license in assets/fonts/) ---------- */
@font-face {
  font-family:'Clash Display';
  src:url('../assets/fonts/ClashDisplay-Variable.woff2') format('woff2');
  font-weight:200 700; font-display:swap;
}
@font-face {
  font-family:'Satoshi';
  src:url('../assets/fonts/Satoshi-Variable.woff2') format('woff2');
  font-weight:300 900; font-display:swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg0:#0a0b10; --bg1:#10131b; --panel:#151926;
  --accent:#2450e6; --accent-2:#6d8fff; --accent-deep:#14267a;
  --logo-navy:#030a5e; --logo-royal:#0040c0; --logo-peri:#6090f0;
  --ink:#f2f4f9; --mut:#98a2b5; --sil:#c6cede;
  --line:rgba(125,150,255,0.14);
  --r-card:24px; --r-media:16px; --r-inner:10px;
  --t-hero:clamp(2.35rem,7.2vw,5.8rem);
  --t-1:clamp(2.2rem,4.6vw,3.4rem);
  --t-2:clamp(1.5rem,2.6vw,2rem);
  --t-label:12px;
  --ease:cubic-bezier(.16,1,.3,1);
  --ease-io:cubic-bezier(.32,.72,0,1);
  --sec:128px;
  --surface-1:#0d1017; --surface-2:#12151f;
  --shadow-card:inset 0 1px 0 rgba(255,255,255,.07), 0 26px 54px -18px rgba(3,6,20,.72);
  --shadow-card-hover:inset 0 1px 0 rgba(255,255,255,.11), 0 38px 76px -20px rgba(3,6,20,.82);
}

/* ---------- Base ---------- */
* { margin:0; padding:0; box-sizing:border-box; }
/* viewport (not body) stays the scroll container; no CSS smooth scroll —
   Chrome abandons long glides mid-flight (JS handles hops) */
html { scroll-padding-top:88px; overflow-x:hidden; }
body {
  font-family:'Satoshi',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:var(--bg0); color:var(--ink);
  font-size:1.06rem; line-height:1.7; overflow-x:hidden;
}
img { max-width:100%; height:auto; display:block; }
h1,h2,h3,h4 {
  font-family:'Clash Display','Satoshi',sans-serif;
  font-weight:600; line-height:1.02; text-transform:uppercase;
  letter-spacing:0; text-wrap:balance;
}
h1, h2 { text-shadow:0 1px 1px rgba(0,0,0,.3), 0 16px 34px rgba(3,8,34,.5); }
p { text-wrap:pretty; }
b, strong { color:var(--ink); font-weight:700; }
.shell { max-width:1200px; margin:0 auto; padding:0 28px; }
.grad { background:linear-gradient(180deg,var(--accent-2),var(--accent) 58%,#fff);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

/* film grain */
body::after {
  content:''; position:fixed; inset:0; z-index:2500; pointer-events:none; opacity:.02;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- A11y ---------- */
.skip-link {
  position:fixed; top:10px; left:10px; z-index:3000; transform:translateY(-220%);
  background:var(--accent); color:#fff; padding:10px 20px; border-radius:999px;
  font-size:13px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; text-decoration:none;
}
.skip-link:focus { transform:none; }
:focus-visible { outline:2px solid var(--accent-2); outline-offset:2px; }
:focus:not(:focus-visible) { outline:none; }

/* ---------- Nav ---------- */
nav#nav {
  position:fixed; inset:0 0 auto 0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 40px; background:rgba(10,11,16,.6);
  backdrop-filter:blur(18px) saturate(150%); -webkit-backdrop-filter:blur(18px) saturate(150%);
  border-bottom:1px solid transparent;
  transition:background .4s var(--ease-io), border-color .4s, padding .4s var(--ease-io);
}
nav#nav.scrolled { background:rgba(10,11,16,.88); border-bottom:1px solid var(--line); padding:10px 40px; }
.brand { display:flex; align-items:center; text-decoration:none; }
.brand img { height:56px; width:auto; }
.nav-links { display:flex; gap:30px; align-items:center; }
.nav-links a {
  color:var(--mut); text-decoration:none; font-size:var(--t-label); font-weight:700;
  letter-spacing:.09em; text-transform:uppercase; transition:color .25s var(--ease-io);
}
.nav-links a:hover, .nav-links a.current { color:var(--ink); }
.nav-links a.current { color:var(--accent-2); }
.nav-cta {
  background:var(--accent); color:#fff !important; padding:12px 24px; border-radius:999px;
  transition:background .3s var(--ease-io), transform .3s var(--ease-io), box-shadow .3s var(--ease-io);
}
.nav-cta:hover { background:var(--accent-2); transform:translateY(-1px); box-shadow:0 10px 24px -8px rgba(36,80,230,.6); }
.nav-cta:active { transform:scale(.97); }
.hamburger { display:none; flex-direction:column; justify-content:center; align-items:center; gap:5px;
  background:none; border:none; cursor:pointer; padding:8px; min-width:44px; min-height:44px; }
.hamburger span { width:24px; height:2px; background:var(--ink); border-radius:2px; }
@media(max-width:1020px){
  nav#nav { padding:10px 20px; }
  .hamburger { display:flex; }
  .nav-links {
    position:absolute; top:100%; left:0; right:0; flex-direction:column; align-items:stretch;
    gap:0; background:rgba(10,11,16,.98); border-bottom:1px solid var(--line); padding:10px 0; display:none;
  }
  .nav-links.open { display:flex; }
  .nav-links a { padding:15px 26px; }
  .nav-links a.nav-cta { margin:12px 26px; text-align:center; }
}

/* ---------- Small phones (≤389px) ----------
   Below the standard 390px iPhone width, the hero's long single words
   (STRENGTHENING, CHAMPIONS.) outgrow the line box and get clipped by the
   page's overflow-x:hidden. Scale the hero type down so it always fits, and
   let the sponsor tier header wrap instead of pushing its tag off-screen. */
@media(max-width:389px){
  :root { --t-hero: clamp(1.75rem, 8.6vw, 2.3rem); }
  .wall-head { flex-wrap:wrap; }
}

/* ---------- Buttons ---------- */
.btn {
  display:inline-block; padding:16px 32px; border-radius:999px; border:none; cursor:pointer;
  font-size:13px; font-weight:700; letter-spacing:.07em; text-transform:uppercase; text-decoration:none;
  transition:transform .35s var(--ease-io), background .35s var(--ease-io),
             box-shadow .35s var(--ease-io), border-color .35s, color .35s;
}
.btn:active { transform:scale(.97); }
.btn--solid { background:var(--accent); color:#fff; }
.btn--solid:hover { background:var(--accent-2); transform:translateY(-2px); box-shadow:0 16px 36px -10px rgba(36,80,230,.55); }
.btn--ghost { background:transparent; color:var(--ink); border:1.5px solid rgba(198,206,222,.3); }
.btn--ghost:hover { border-color:var(--accent-2); color:var(--accent-2); transform:translateY(-2px); }
.btn--light { background:#fff; color:var(--accent); }
.btn--light:hover { transform:translateY(-2px); box-shadow:0 14px 30px rgba(0,0,0,.35); }
.btns { display:flex; gap:14px; flex-wrap:wrap; }
.text-link {
  color:var(--accent-2); text-decoration:none; font-weight:700; font-size:.95rem;
  border-bottom:1px solid transparent; transition:border-color .3s var(--ease-io);
}
.text-link:hover { border-color:var(--accent-2); }

/* ---------- Sections ---------- */
.section { padding:var(--sec) 0; }
.section--line { border-top:1px solid var(--line); }
.section--tint { background:linear-gradient(180deg,#0e111a 0%,#12151f 55%,#0d1017 100%);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
/* color-blocked feature band with a soft navy glow up top */
.section--band { position:relative;
  background:radial-gradient(ellipse 92% 62% at 50% -12%, rgba(0,64,192,.24), transparent 62%),
             linear-gradient(180deg,#0b0e16 0%,#0a0b10 100%);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section-head { max-width:640px; margin-bottom:64px; }
.section-head--center { margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2 { font-size:var(--t-1); margin-bottom:16px; }
.section-head p { color:var(--mut); font-size:1.1rem; }
.label {
  display:inline-block; color:var(--accent-2); font-size:var(--t-label); font-weight:600;
  letter-spacing:.16em; text-transform:uppercase; margin-bottom:14px;
}
@media(max-width:820px){ :root { --sec:88px; } .section-head { margin-bottom:44px; } }

/* ---------- Reveal motion ---------- */
.reveal { opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity:1; transform:none; }
.duo > :nth-child(2), .bento .tile:nth-child(2), .frame-duo > :nth-child(2), .tiers > :nth-child(2) { transition-delay:.08s; }
.bento .tile:nth-child(3), .tiers > :nth-child(3) { transition-delay:.16s; }
.bento .tile:nth-child(4), .tiers > :nth-child(4) { transition-delay:.24s; }
.bento .tile:nth-child(5) { transition-delay:.32s; }
.bento .tile:nth-child(6) { transition-delay:.4s; }

/* ---------- Home hero ---------- */
.hero-full {
  position:relative; min-height:100dvh; display:flex; align-items:center;
  padding:130px 0 100px; overflow:hidden;
}
.hero-full .hero-media {
  position:absolute; inset:0; width:100%; height:100%;
  opacity:.55; filter:contrast(1.06) saturate(.92);
}
.hero-full::before {
  content:''; position:absolute; inset:0; z-index:1;
  background:linear-gradient(105deg, rgba(10,11,16,.94) 8%, rgba(10,11,16,.62) 46%, rgba(10,11,16,.28) 100%),
             linear-gradient(180deg, rgba(10,11,16,.25) 0%, transparent 30%, rgba(10,11,16,.92) 100%);
}
.hero-copy { position:relative; z-index:2; max-width:820px; }
.hero-copy .hero-mark { height:120px; width:auto; margin-bottom:26px;
  filter:drop-shadow(0 0 30px rgba(109,143,255,.45)); }
.hero-copy h1 { font-size:var(--t-hero); margin-bottom:22px; }
.hero-copy .hero-sub { color:var(--sil); font-size:1.18rem; max-width:34ch; margin-bottom:34px; }
.hero-copy .hero-sub b { color:var(--ink); }
@keyframes rise { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
.hero-copy > * { animation:rise .9s var(--ease) both; }
.hero-copy > :nth-child(2) { animation-delay:.12s; }
.hero-copy > :nth-child(3) { animation-delay:.24s; }
.hero-copy > :nth-child(4) { animation-delay:.36s; }
@media(max-width:820px){ .hero-full { min-height:94dvh; } .hero-copy .hero-mark { height:92px; } }

/* ---------- Marquee (home only, single) ---------- */
.marq {
  overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  background:var(--bg1); padding:20px 0; display:flex; white-space:nowrap;
}
.marq-track { display:flex; gap:0; animation:marq 36s linear infinite; }
.marq span {
  font-family:'Clash Display',sans-serif; font-weight:500; font-size:1.05rem;
  letter-spacing:.32em; text-transform:uppercase; color:var(--mut); padding:0 34px;
}
.marq span::after { content:'·'; color:var(--accent-2); margin-left:64px; }
@keyframes marq { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ---------- Proof row ---------- */
.proof { display:grid; grid-template-columns:repeat(4,1fr);
  border:1px solid var(--line); border-radius:var(--r-card); overflow:hidden;
  background:linear-gradient(160deg,rgba(96,144,240,.10),rgba(0,64,192,.04));
  box-shadow:var(--shadow-card); }
.proof-item { padding:36px 24px; text-align:center; border-left:1px solid var(--line); }
.proof-item:first-child { border-left:none; }
.proof-item .t {
  font-family:'Clash Display',sans-serif; font-weight:600; font-size:1.15rem;
  text-transform:uppercase; margin-bottom:6px;
  background:linear-gradient(180deg,#fff 0%,#cdd6e4 46%,#8ea1ba 100%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}
.proof-item .s { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--accent-2); }
@media(max-width:760px){
  .proof { grid-template-columns:repeat(2,1fr); }
  .proof-item:nth-child(3) { border-left:none; }
  .proof-item:nth-child(-n+2) { border-bottom:1px solid var(--line); }
}

/* ---------- Bento breakouts (masonry: full, uncropped images) ---------- */
.bento { column-count:3; column-gap:18px; }
@media(max-width:900px){ .bento { column-count:2; } }
@media(max-width:560px){ .bento { column-count:1; } }
.tile {
  position:relative; display:block; overflow:hidden; text-decoration:none;
  border-radius:var(--r-card); border:1px solid rgba(255,255,255,.08);
  background:var(--bg1); box-shadow:var(--shadow-card);
  break-inside:avoid; margin:0 0 18px;
}
.tile-media {
  display:block; width:100%; height:auto;
  transition:transform .9s var(--ease);
}
.tile::after { content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(185deg, rgba(10,11,16,0) 45%, rgba(10,11,16,.9) 100%); }
.tile-label {
  position:absolute; z-index:2; left:0; right:0; bottom:0; padding:26px 28px;
  display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
}
.tile-label h3 { font-size:1.35rem; color:#fff; }
.tile-label p { font-size:.9rem; color:var(--sil); margin-top:6px; max-width:36ch; }
.tile-arrow {
  flex:none; display:grid; place-items:center; width:44px; height:44px; border-radius:999px;
  border:1px solid rgba(255,255,255,.22); color:#fff; font-size:19px;
  background:rgba(255,255,255,.06); backdrop-filter:blur(6px);
  transition:background .35s var(--ease-io), border-color .35s, transform .35s var(--ease-io);
}
.tile:hover .tile-media { transform:scale(1.045); }
.tile:hover .tile-arrow { background:var(--accent); border-color:var(--accent); transform:translate(2px,-2px); }
.tile--give {
  background:linear-gradient(140deg,var(--logo-royal) 0%,var(--logo-navy) 90%);
  display:flex; align-items:flex-end; min-height:260px;
}
.tile--give::after { background:radial-gradient(ellipse 70% 90% at 82% -10%, rgba(255,255,255,.22), transparent 60%); }
.tile--give .tile-label { position:relative; }
.tile--give h3 { font-size:1.55rem; }
.tile--give p { color:rgba(255,255,255,.86); }

/* ---------- Editorial statement ---------- */
.statement { display:grid; grid-template-columns:0.9fr 1.1fr; gap:64px; align-items:start; }
.statement h2 { font-size:var(--t-1); }
.statement > div p { color:var(--mut); font-size:1.12rem; line-height:1.8;
  border-left:1px solid var(--line); padding-left:36px; }
.statement > div p + p { margin-top:18px; }
@media(max-width:860px){
  .statement { grid-template-columns:1fr; gap:26px; }
  .statement > div p { border-left:none; padding-left:0; }
}

/* ---------- Impact stats ---------- */
.impact { display:grid; grid-template-columns:0.8fr 1.2fr; gap:64px; align-items:center; }
.impact h2 { font-size:var(--t-1); }
.stat-board { display:grid; grid-template-columns:repeat(2,1fr);
  border:1px solid var(--line); border-radius:var(--r-card); overflow:hidden;
  background:linear-gradient(160deg,rgba(96,144,240,.10),rgba(0,64,192,.04));
  box-shadow:var(--shadow-card); }
.stat-board > div { padding:36px 40px; border-left:1px solid var(--line); }
.stat-board > div:nth-child(-n+2) { border-bottom:1px solid var(--line); }
.num {
  font-family:'Clash Display',sans-serif; font-weight:600; font-variant-numeric:tabular-nums;
  font-size:clamp(2.9rem,5.4vw,4rem); line-height:1; margin-bottom:8px;
}
.lbl { font-size:var(--t-label); font-weight:700; letter-spacing:.11em; text-transform:uppercase; color:var(--mut); }
@media(max-width:860px){
  .impact { grid-template-columns:1fr; gap:36px; }
  .stat-board > div { padding:26px 24px; }
}

/* ---------- Cards ---------- */
.card {
  background:linear-gradient(160deg,rgba(96,144,240,.13),rgba(0,64,192,.05));
  border:1px solid rgba(255,255,255,.08); border-radius:var(--r-card);
  box-shadow:var(--shadow-card);
  transition:transform .35s var(--ease-io), box-shadow .35s var(--ease-io), border-color .35s;
}
a.card { text-decoration:none; color:inherit; }
.card:hover { transform:translateY(-5px); box-shadow:var(--shadow-card-hover); }

.feature-card {
  display:grid; grid-template-columns:1.15fr .85fr; overflow:hidden;
  border-radius:var(--r-card); border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(160deg,rgba(96,144,240,.13),rgba(0,64,192,.05));
  box-shadow:var(--shadow-card); margin-bottom:22px;
}
.feature-media { position:relative; }
.feature-media img { display:block; width:100%; height:auto; }
.feature-body { padding:56px 52px; display:flex; flex-direction:column; justify-content:center; }
.feature-body h3 { font-size:var(--t-2); margin-bottom:14px; }
.feature-body p { color:var(--mut); max-width:46ch; }
.feature-body .btns { margin-top:26px; }
.feature-card--flip .feature-media { order:2; }
@media(max-width:860px){
  .feature-card { grid-template-columns:1fr; }
  .feature-media { min-height:260px; order:0 !important; }
  .feature-body { padding:34px 28px; }
}

.duo { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.duo .card { padding:0; overflow:hidden; }
.duo .card-media { overflow:hidden; }
.duo .card-media img { display:block; width:100%; height:auto;
  transition:transform .7s var(--ease); }
.duo .card:hover .card-media img { transform:scale(1.05); }
.duo .card-body { padding:30px 30px 36px; }
.duo .card-body h3 { font-size:1.35rem; margin-bottom:10px; }
.duo .card-body p { color:var(--mut); font-size:.98rem; }
@media(max-width:820px){ .duo { grid-template-columns:1fr; max-width:480px; margin:0 auto; } }

/* ---------- Icon chip ---------- */
.icon-chip {
  display:inline-grid; place-items:center; width:52px; height:52px; flex:none;
  border-radius:var(--r-inner); color:var(--accent-2);
  background:linear-gradient(160deg,rgba(96,144,240,.18),rgba(0,64,192,.06));
  border:1px solid var(--line); box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

/* ---------- Inventory (sponsorship) ---------- */
.inventory { display:grid; grid-template-columns:repeat(2,1fr); gap:16px 44px; }
.inv-item { display:flex; gap:18px; align-items:flex-start; padding:22px 0; border-bottom:1px solid var(--line); }
.inv-item:nth-last-child(-n+2) { border-bottom:none; }
.inv-item h4 { font-size:1.05rem; margin-bottom:4px; }
.inv-item p { color:var(--mut); font-size:.94rem; }
@media(max-width:820px){ .inventory { grid-template-columns:1fr; }
  .inv-item:nth-last-child(2) { border-bottom:1px solid var(--line); } }

/* ---------- Checklist + note ---------- */
.list-ticked { list-style:none; }
.list-ticked li { display:flex; gap:16px; margin-bottom:22px; }
.list-ticked .tick { color:var(--accent-2); font-weight:700; font-size:1.05rem; line-height:1.5; }
.list-ticked strong { display:block; margin-bottom:3px; }
.list-ticked span { color:var(--mut); font-size:.96rem; }
.note-card {
  margin-top:28px; padding:18px 20px; border:1px solid var(--line); border-radius:var(--r-inner);
  background:rgba(36,80,230,.07); font-size:.9rem; color:var(--sil);
}

/* ---------- Cropped-media system ----------
   Only media that fills a fixed-shape frame can cut a subject; anything sized
   width:100%/height:auto is safe by construction and is deliberately left out
   of this system. Every cropped image declares a focal point — the part of the
   source the frame holds on to as the viewport changes shape. The default sits
   above centre because faces sit high in a portrait; `data-focal` on the <img>
   overrides it per photo. The values live here rather than in a style
   attribute because the CSP forbids inline styles.

   Frames get deeper as the viewport narrows: a shape that crops acceptably on
   a desktop will guillotine the same photo on a phone.

   tools/check-image-crops.mjs asserts that each cropped image's declared safe
   area (tools/image-safe-areas.json) survives at every supported viewport.
   Run it after any change to a frame ratio, a focal value, or a source file. */
.crop,
.cred-media img,
.hero-full .hero-media,
.photo-band .band-media,
.gspotlight .gphoto--spot img {
  object-fit:cover;
  object-position:var(--focal-x,50%) var(--focal-y,38%);
}
[data-focal="top"]    { --focal-y:0%; }
[data-focal="high"]   { --focal-y:18%; }
[data-focal="upper"]  { --focal-y:33%; }
[data-focal="center"] { --focal-y:50%; }
[data-focal="lower"]  { --focal-y:66%; }
[data-focal="bottom"] { --focal-y:100%; }
[data-focal-x="left"]  { --focal-x:20%; }
[data-focal-x="right"] { --focal-x:80%; }

/* ---------- Split / portrait / chips ---------- */
.split { display:grid; grid-template-columns:0.85fr 1.15fr; gap:60px; align-items:center; }
.split--flip { grid-template-columns:1.15fr 0.85fr; }
.split h2 { font-size:var(--t-1); margin-bottom:20px; }
.split p { color:var(--mut); margin-bottom:16px; }
@media(max-width:860px){ .split, .split--flip { grid-template-columns:1fr; gap:38px; } }
.portrait {
  border-radius:var(--r-media); overflow:hidden; border:1px solid var(--line);
  box-shadow:var(--shadow-card); max-width:440px;
}
.portrait img { display:block; width:100%; height:auto; }
/* Founder credentials: two service photos that back the bio with proof.
   The sources are 0.49 (award, a tall phone shot) and 0.83 (Special Forces),
   so a shared 2:3 frame + cover crop is what makes them read as a pair. 2:3
   is deep enough that the award photo holds his head and the whole
   certificate, and it crops the wider Special Forces shot at the sides,
   which brings both subjects to a comparable scale. */
.creds {
  display:grid; grid-template-columns:repeat(2,1fr); gap:38px;
  margin-top:76px; padding-top:64px; border-top:1px solid var(--line);
}
.cred-media {
  border-radius:var(--r-media); overflow:hidden; border:1px solid var(--line);
  box-shadow:var(--shadow-card); background:var(--surface-2); aspect-ratio:2/3;
}
/* Each source frames its subject at a different height, so the crop's focal
   point is per-photo. The award subject runs from row 22 (top of his head) to
   about row 800 (bottom of the certificate) of 1195, so the window is anchored
   to the top — centring it clips his head before it gains anything. */
.cred-media img {
  width:100%; height:100%;
  transition:transform .8s var(--ease);
}
.cred figcaption { margin-top:22px; }
.cred figcaption .label { display:block; margin-bottom:10px; }
.cred figcaption span:last-child { display:block; color:var(--sil); font-size:1rem; line-height:1.66; }
@media (prefers-reduced-motion: no-preference){
  .cred:hover .cred-media img { transform:scale(1.035); }
}
@media(max-width:820px){
  .creds { grid-template-columns:1fr; gap:46px; margin-top:54px; padding-top:48px; }
  .cred-media { max-width:440px; }
}
/* Readable prose column (About story) */
.prose { max-width:68ch; margin:0 auto; }
.prose .label { display:block; margin-bottom:20px; }
.prose p { color:var(--sil); font-size:1.06rem; line-height:1.78; margin-bottom:22px; }
.prose p:last-child { margin-bottom:0; }
/* Framed photo closing the About story */
.story-photo { max-width:480px; margin:56px auto 0; text-align:center; }
.story-photo img { border-radius:var(--r-media); border:1px solid var(--line); box-shadow:var(--shadow-card); }
.story-photo figcaption { margin:22px auto 0; max-width:58ch; text-align:left; }
.story-photo figcaption .label { display:block; margin-bottom:10px; }
.story-photo figcaption span:last-child { display:block; color:var(--sil); font-size:1rem; line-height:1.66; }
/* Coach portrait: cut-out figure lit on a branded backdrop.
   A fixed 4:5 frame makes all three portraits line up despite their very
   different source crops; the figure is bottom-anchored so each coach
   "stands" on the same baseline. */
.coach-portrait {
  position:relative; isolation:isolate;
  border-radius:var(--r-card); overflow:hidden;
  border:1px solid rgba(125,150,255,.22);
  box-shadow:var(--shadow-card);
  max-width:460px; aspect-ratio:4/5;
  background:
    radial-gradient(ellipse 78% 58% at 50% 16%, rgba(96,144,240,.55), transparent 68%),
    linear-gradient(180deg,#1c3068 0%,#111c40 46%,#070b1c 100%);
}
/* vignette + floor haze, both behind the figure so skin tones stay clean */
.coach-portrait::before {
  content:''; position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(ellipse 60% 12% at 50% 97%, rgba(96,144,240,.3), transparent 70%),
    radial-gradient(ellipse 90% 78% at 50% 42%, transparent 52%, rgba(4,7,20,.6));
}
.coach-portrait img {
  position:relative; z-index:1;
  width:100%; height:100%;
  object-fit:contain; object-position:bottom center;
  filter:drop-shadow(0 18px 26px rgba(3,6,20,.6));
  transition:transform .8s var(--ease);
}
@media (prefers-reduced-motion: no-preference){
  .split:hover .coach-portrait img { transform:scale(1.03); }
}
/* Alternate which side the portrait sits on, so the page has a rhythm
   instead of three identical left-aligned blocks. */
.split--mirror { grid-template-columns:1.15fr .85fr; }
.split--mirror > .coach-portrait { order:2; }
/* Must come after the generic .split stacking rule above, or the mirrored
   block keeps two columns and gets crushed on a phone. */
@media(max-width:860px){
  .split--mirror { grid-template-columns:1fr; }
  .split--mirror > .coach-portrait { order:0; }
}
/* spacing + divider between stacked coach profiles */
.coach-divider { margin-top:84px; padding-top:84px; border-top:1px solid var(--line); }
@media(max-width:820px){ .coach-divider { margin-top:56px; padding-top:56px; } }
/* Motto / pull-quote */
.pullquote { margin:30px 0 6px; padding:6px 0 6px 28px; border-left:3px solid var(--accent); max-width:52ch; }
.pullquote p { font-size:clamp(1.3rem,2.6vw,1.85rem); line-height:1.3; font-style:italic;
  color:var(--ink); text-wrap:balance; }
.chips { display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.chips span {
  font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:var(--accent-2); background:rgba(36,80,230,.12); border:1px solid var(--line);
  padding:9px 16px; border-radius:999px;
}

/* ---------- Promise band (about) ---------- */
.promise {
  position:relative; padding:140px 0; overflow:hidden;
  background-image:url(../assets/img/conditioning-bw.webp);
  background-size:cover; background-position:center 45%;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.promise::before { content:''; position:absolute; inset:0;
  background:linear-gradient(115deg, rgba(10,11,16,.94) 0%, rgba(16,19,27,.72) 46%, rgba(36,80,230,.28) 100%); }
.promise .shell { position:relative; z-index:2; }
.promise-card { max-width:620px; }
.promise-card h2 { font-size:var(--t-1); margin-bottom:18px; }
.promise-card p { color:var(--sil); font-size:1.1rem; margin-bottom:30px; max-width:52ch; }
@media(max-width:820px){ .promise { padding:96px 0; background-attachment:scroll; } }

/* ---------- Full-bleed photo band (breaks up text/card sections) ---------- */
.photo-band { position:relative; overflow:hidden; padding:132px 0;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.photo-band .band-media { position:absolute; inset:0; width:100%; height:100%;
  opacity:.42; filter:contrast(1.05) saturate(.95); }
.photo-band::before { content:''; position:absolute; inset:0; z-index:1;
  background:linear-gradient(115deg, rgba(10,11,16,.92) 0%, rgba(16,19,27,.6) 44%, rgba(36,80,230,.34) 100%),
             linear-gradient(0deg, rgba(10,11,16,.55), transparent 42%); }
.photo-band .shell { position:relative; z-index:2; text-align:center; }
.photo-band h2 { font-size:var(--t-1); margin-bottom:16px; }
.photo-band p { color:var(--sil); font-size:1.15rem; max-width:56ch; margin:0 auto; }
@media(max-width:820px){ .photo-band { padding:92px 0; } }

/* ---------- Gallery ---------- */
/* Spotlight: one wide statement photo anchoring the page */
.gspotlight { position:relative; margin:0 0 40px; }
.gspotlight .gphoto--spot { margin:0; border-radius:var(--r-card); }
.gspotlight .gphoto--spot img { width:100%; height:auto; aspect-ratio:16/9; }
/* A 16:9 band is fine on a desktop and brutal on a phone, where it would leave a
   letterbox strip. Deepen the frame as the viewport narrows. */
@media(max-width:900px){ .gspotlight .gphoto--spot img { aspect-ratio:3/2; } }
@media(max-width:560px){ .gspotlight .gphoto--spot img { aspect-ratio:5/4; } }
.gspotlight figcaption {
  margin-top:14px; color:var(--mut); font-size:.92rem; letter-spacing:.02em; text-align:center;
}

/* Filter chips */
.gfilters { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin:0 0 14px; }
.gfilter {
  appearance:none; -webkit-appearance:none; font:inherit; cursor:pointer;
  padding:11px 20px; min-height:44px; border-radius:999px;
  font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--sil); background:rgba(96,144,240,.08); border:1px solid var(--line);
  transition:color .3s var(--ease-io), background .3s var(--ease-io),
             border-color .3s var(--ease-io), transform .3s var(--ease);
}
.gfilter:hover { color:var(--ink); border-color:rgba(125,150,255,.4); background:rgba(96,144,240,.16); }
.gfilter.is-on {
  color:#fff; background:var(--accent); border-color:var(--accent);
  box-shadow:0 10px 26px -10px rgba(36,80,230,.7);
}
.gcount { text-align:center; color:var(--mut); font-size:.88rem; margin:0 0 30px; min-height:1.2em; }

.masonry { column-count:3; column-gap:16px; }
@media(max-width:900px){ .masonry { column-count:2; } }
/* Phones keep 2 columns: a single column turned this into a 16-screen scroll.
   Tiles stay tappable and open full-size in the lightbox. */
@media(max-width:560px){ .masonry { column-count:2; column-gap:10px; } .gphoto { margin-bottom:10px; } }
/* Hidden by an active filter — display:none so the column flow reflows cleanly */
.gphoto[hidden] { display:none; }
.gphoto {
  appearance:none; -webkit-appearance:none; font:inherit; color:inherit;
  display:block; width:100%; padding:0; margin:0 0 16px; position:relative; overflow:hidden;
  border-radius:var(--r-media); border:1px solid var(--line); background:#080a0f;
  break-inside:avoid; cursor:zoom-in; box-shadow:var(--shadow-card);
  transition:border-color .4s var(--ease-io), box-shadow .45s var(--ease-io), transform .45s var(--ease);
}
@media (prefers-reduced-motion: no-preference){
  .gphoto:hover, .gphoto:focus-visible { transform:translateY(-5px); }
}
.gphoto img { width:100%; height:auto; transition:transform .8s var(--ease), filter .5s var(--ease-io); }
.gphoto::after { content:''; position:absolute; inset:0; pointer-events:none; opacity:0;
  background:linear-gradient(180deg,transparent 45%,rgba(8,10,15,.72)); transition:opacity .4s; }
/* zoom cue badge, revealed on hover/focus */
.gphoto::before {
  content:'\2922'; position:absolute; z-index:2; right:14px; bottom:14px;
  width:38px; height:38px; display:grid; place-items:center; border-radius:999px;
  font-size:17px; line-height:1; color:#fff;
  background:rgba(36,80,230,.92); border:1px solid rgba(255,255,255,.28);
  box-shadow:0 8px 20px -6px rgba(3,6,20,.8);
  opacity:0; transform:translateY(8px) scale(.9); pointer-events:none;
  transition:opacity .38s var(--ease-io), transform .38s var(--ease);
}
.gphoto:hover, .gphoto:focus-visible {
  border-color:rgba(125,150,255,.45);
  box-shadow:var(--shadow-card-hover), 0 0 0 1px rgba(96,144,240,.25);
}
.gphoto:hover img, .gphoto:focus-visible img { transform:scale(1.06); filter:saturate(1.08) contrast(1.03); }
.gphoto:hover::after, .gphoto:focus-visible::after { opacity:1; }
.gphoto:hover::before, .gphoto:focus-visible::before { opacity:1; transform:translateY(0) scale(1); }

/* ---------- Lightbox ---------- */
.lightbox {
  position:fixed; inset:0; z-index:2000; display:none; align-items:center; justify-content:center;
  padding:24px; background:rgba(8,10,15,.88);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
}
.lightbox.open { display:flex; }
.lightbox img { max-width:92vw; max-height:78vh; border-radius:var(--r-media);
  box-shadow:0 24px 70px rgba(0,0,0,.65); }
/* caption + "4 / 27" position counter under the photo */
.lb-meta { position:absolute; left:0; right:0; bottom:20px; text-align:center; padding:0 70px; pointer-events:none; }
.lb-caption { color:var(--sil); font-size:.95rem; line-height:1.5; max-width:60ch; margin:0 auto 6px; }
.lb-counter { color:var(--mut); font-size:.8rem; letter-spacing:.14em; text-transform:uppercase; }
@media(max-width:560px){
  .lb-meta { padding:0 16px; bottom:14px; }
  .lb-caption { font-size:.86rem; }
}
.lb-close, .lb-nav {
  position:absolute; display:grid; place-items:center; width:52px; height:52px; padding:0;
  border-radius:999px; color:#fff; cursor:pointer;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  transition:background .3s var(--ease-io), transform .3s var(--ease-io);
}
.lb-close { top:18px; right:22px; font-size:28px; }
.lb-nav { top:50%; transform:translateY(-50%); font-size:30px; }
.lb-prev { left:18px; } .lb-next { right:18px; }
.lb-close:hover, .lb-nav:hover { background:rgba(255,255,255,.14); }
.lb-nav:hover { transform:translateY(-50%) scale(1.06); }
.lb-nav:active { transform:translateY(-50%) scale(.96); }
@media(max-width:560px){ .lb-nav { width:44px; height:44px; font-size:24px; } .lb-prev{left:10px;} .lb-next{right:10px;} }

/* ---------- Video frames ---------- */
.frame {
  position:relative; width:100%; aspect-ratio:16/9; overflow:hidden;
  border-radius:var(--r-media); border:1px solid var(--line);
  background:#000; box-shadow:var(--shadow-card);
}
.frame iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.frame--feature { max-width:1000px; margin:0 auto 20px; }
.frame-duo { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; max-width:1000px; margin:0 auto; }
@media(max-width:760px){ .frame-duo { grid-template-columns:1fr; } }

/* ---------- Gift card (donate / hero aside) ---------- */
.gift-card {
  background:linear-gradient(165deg,#141f47,#0c1122);
  border:1px solid var(--line); border-radius:var(--r-card); padding:32px 32px 34px;
  box-shadow:var(--shadow-card);
}
.gift-top { display:flex; align-items:baseline; justify-content:space-between; gap:12px;
  padding-bottom:18px; border-bottom:2px solid rgba(255,255,255,.14); margin-bottom:6px; }
.gift-top h3 { font-size:1.05rem; letter-spacing:.02em; white-space:nowrap; }
.gift-top .tag { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--accent-2); white-space:nowrap; }
.gift-row { display:flex; align-items:center; gap:18px; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.07); }
.gift-row .amt { font-family:'Clash Display',sans-serif; font-weight:600; font-size:1.3rem;
  font-variant-numeric:tabular-nums; color:var(--accent-2); min-width:70px; }
.gift-row .desc { font-size:.92rem; color:var(--sil); }
.gift-card .btn { width:100%; text-align:center; margin-top:22px; }
.gift-note { font-size:11.5px; color:var(--mut); text-align:center; margin-top:14px; letter-spacing:.02em; }
/* Narrow phones: the nowrap title + tag set a min-content floor wider than the
   column, which overflow-x:hidden would silently clip. Let the head wrap. */
@media(max-width:520px){
  .gift-card { padding:26px 22px 28px; }
  .gift-top { flex-wrap:wrap; }
  .gift-top h3 { white-space:normal; }
}

/* ---------- Give options ---------- */
.give-grid { display:grid; grid-template-columns:1.3fr 1fr; gap:22px; align-items:stretch; }
.give-stack { display:grid; gap:22px; }
.give-card { padding:38px 34px; display:flex; flex-direction:column; position:relative; }
.give-card .kind { font-size:var(--t-label); font-weight:700; letter-spacing:.13em;
  text-transform:uppercase; color:var(--accent-2); margin-bottom:12px; }
.give-card h3 { font-size:1.4rem; margin-bottom:12px; }
.give-card p { color:var(--mut); font-size:.98rem; flex:1; margin-bottom:26px; }
.give-card .btn { text-align:center; }
.give-card--main { padding:50px 44px; border-color:var(--accent);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 1px var(--accent), 0 28px 56px -14px rgba(36,80,230,.3); }
.give-card--main h3 { font-size:1.8rem; }
.give-card--main p { font-size:1.05rem; max-width:46ch; }
.flag {
  position:absolute; top:20px; right:20px; background:var(--accent); color:#fff;
  font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  padding:6px 12px; border-radius:999px;
}
@media(max-width:860px){ .give-grid { grid-template-columns:1fr; max-width:480px; margin:0 auto; } }

/* ---------- Page head ---------- */
.page-head {
  position:relative; padding:176px 0 76px; overflow:hidden;
  background:radial-gradient(ellipse 60% 55% at 82% 0%, rgba(36,80,230,.18), transparent 60%),
             linear-gradient(180deg,var(--bg0),#07080d);
  border-bottom:1px solid var(--line);
}
.page-head::before { content:''; position:absolute; inset:0; opacity:.32;
  background-image:linear-gradient(var(--line) 1px,transparent 1px),
                   linear-gradient(90deg,var(--line) 1px,transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse at 72% 0%, black, transparent 70%);
}
.page-head .shell { position:relative; z-index:2; }
.page-head h1 { font-size:clamp(2.7rem,5.6vw,4.4rem); margin-bottom:18px; max-width:16ch; }
.page-sub { color:var(--mut); font-size:1.14rem; max-width:58ch; }
.page-head--center { text-align:center; }
.page-head--center h1, .page-head--center .page-sub { margin-left:auto; margin-right:auto; }
.page-head--split .shell { display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center; }
.page-head--split .gift-card, .page-head--split .reach-card { animation:rise .9s var(--ease) both .15s; }
@media(max-width:940px){
  .page-head { padding:140px 0 56px; }
  .page-head--split .shell { grid-template-columns:1fr; gap:40px; }
}

/* ---------- Reach card (sponsorship head) ---------- */
.reach-card { composes:none; }
.reach-row { display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:15px 0; border-bottom:1px solid rgba(255,255,255,.07); }
.reach-row .desc { font-size:.92rem; color:var(--sil); }
.reach-row .val { font-family:'Clash Display',sans-serif; font-weight:600; font-size:1.3rem;
  color:var(--accent-2); font-variant-numeric:tabular-nums; }

/* ---------- Tiers ---------- */
.tiers { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; align-items:stretch; }
@media(max-width:1000px){ .tiers { grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .tiers { grid-template-columns:1fr; max-width:440px; margin:0 auto; } }
.tier-card { padding:32px 28px; display:flex; flex-direction:column; position:relative; }
.tier-card .tname { font-size:1.15rem; margin-bottom:10px; }
.tier-card .price { font-family:'Clash Display',sans-serif; font-weight:600; font-size:2.1rem;
  line-height:1; font-variant-numeric:tabular-nums; }
.tier-card .price small { font-size:.85rem; font-weight:700; color:var(--mut); font-family:'Satoshi',sans-serif; }
.tier-card .peryear { font-size:.8rem; color:var(--mut); margin-top:4px; }
.tier-list { list-style:none; margin:22px 0 26px; flex:1;
  border-top:1px solid rgba(255,255,255,.09); border-bottom:1px solid rgba(255,255,255,.09); padding:14px 0; }
.tier-list li { font-size:.88rem; color:var(--sil); padding:7px 0 7px 22px; position:relative; }
.tier-list li::before { content:'✦'; position:absolute; left:0; top:10px; color:var(--accent-2); font-size:.7rem; }
.tier-list li.prev { color:var(--mut); font-style:italic; }
.tier-list li.prev::before { content:'↑'; }
.tier-card .btn { text-align:center; font-size:12px; padding:14px 20px; }
.tier-card--pop { border-color:var(--accent);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 1px var(--accent), 0 28px 56px -14px rgba(36,80,230,.3); }
.tier-card--lim { background:linear-gradient(160deg,rgba(36,80,230,.15),rgba(16,19,27,.6)); border-color:var(--accent-2); }
.tier-flag {
  position:absolute; top:-12px; left:50%; transform:translateX(-50%); white-space:nowrap;
  font-size:10px; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  padding:6px 13px; border-radius:999px;
}
.tier-flag--pop { background:var(--accent); color:#fff; }
.tier-flag--lim { background:linear-gradient(90deg,#e8cf8f,#c9a24b); color:#0a0e14; }
.fineprint { text-align:center; color:var(--mut); font-size:.86rem; margin:30px auto 0; max-width:760px; }

/* ---------- Custom strip ---------- */
.strip {
  background:linear-gradient(150deg,#141f47,#0c1122); border:1px solid var(--line);
  border-radius:var(--r-card); padding:46px; display:grid; grid-template-columns:1fr auto;
  gap:30px; align-items:center; box-shadow:var(--shadow-card);
}
.strip h3 { font-size:1.5rem; margin-bottom:10px; }
.strip p { color:var(--mut); max-width:640px; }
@media(max-width:760px){ .strip { grid-template-columns:1fr; text-align:center; padding:36px 26px; } }

/* ---------- Sponsor wall ---------- */
.wall-band { margin:0 auto 44px; }
.wall-head { display:flex; align-items:center; gap:16px; margin-bottom:22px; }
.wall-head .tier-name { font-family:'Clash Display',sans-serif; font-weight:600; font-size:1.35rem;
  text-transform:uppercase; white-space:nowrap; }
.wall-head .rule { flex:1; height:1px; background:linear-gradient(90deg,var(--accent),transparent); }
.wall-head .tag { font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  padding:6px 12px; border-radius:999px; white-space:nowrap; }
.tag--gold { background:linear-gradient(90deg,#e8cf8f,#c9a24b); color:#0a0e14; }
.tag--blue { background:var(--accent); color:#fff; }
.tag--slate { background:rgba(109,143,255,.14); color:var(--accent-2); border:1px solid var(--line); }
.wall-grid { display:grid; gap:18px; }
.wall-grid.g1 { grid-template-columns:1fr; }
.wall-grid.g2 { grid-template-columns:repeat(2,1fr); }
.wall-grid.g3 { grid-template-columns:repeat(3,1fr); }
.wall-grid.g4 { grid-template-columns:repeat(4,1fr); }
.wall-grid.solo { grid-template-columns:minmax(0,640px); justify-content:center; }
.wall-grid.solo .sponsor-card { padding:40px 40px 34px; }
.wall-grid.solo .logo-box { height:200px; }
@media(max-width:900px){ .wall-grid.g3, .wall-grid.g4 { grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .wall-grid.g2, .wall-grid.g3, .wall-grid.g4 { grid-template-columns:1fr; } }
.sponsor-card {
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:14px;
  padding:32px 26px;
}
.sponsor-card .logo-box { width:100%; height:150px; display:grid; place-items:center;
  border-radius:var(--r-inner); overflow:hidden; }
.sponsor-card .logo-box img { max-width:100%; max-height:100%; object-fit:contain; border-radius:8px; }
.sponsor-card .sname { font-family:'Clash Display',sans-serif; font-weight:600; font-size:1.05rem;
  text-transform:uppercase; color:var(--ink); }
.sponsor-card .svisit { font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--accent-2); }
.sponsor-card--feat { border-color:var(--accent);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 1px var(--accent), 0 24px 48px -16px rgba(36,80,230,.28); }
.empty-slot {
  display:grid; place-items:center; text-align:center; min-height:160px; padding:30px 20px;
  border:1px dashed rgba(125,150,255,.3); border-radius:var(--r-media);
  color:var(--mut); font-size:12px; letter-spacing:.06em; text-transform:uppercase;
  background:rgba(255,255,255,.015);
}

/* ---------- Editorial CTA ---------- */
.cta-editorial {
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding:110px 0; text-align:center;
  background:radial-gradient(ellipse 55% 70% at 50% 100%, rgba(36,80,230,.16), transparent 65%);
}
.cta-editorial h2 { font-size:clamp(2.4rem,5.4vw,4rem); max-width:22ch; margin:0 auto 18px; }
.cta-editorial p { color:var(--mut); font-size:1.1rem; max-width:52ch; margin:0 auto 36px; }
.cta-editorial .btns { justify-content:center; }
@media(max-width:820px){ .cta-editorial { padding:84px 0; } }

/* ---------- Footer ---------- */
.foot { padding:72px 0 36px; border-top:1px solid var(--line); }
.foot-grid { display:flex; justify-content:space-between; gap:44px; flex-wrap:wrap; margin-bottom:44px; }
.foot-col { max-width:330px; }
.foot-col img { height:56px; width:auto; margin-bottom:16px; }
.foot-col p { color:var(--mut); font-size:14px; }
.foot-col h4 { font-size:11px; letter-spacing:.15em; color:var(--accent-2); margin-bottom:16px; }
.foot-col a { display:block; color:var(--mut); text-decoration:none; font-size:14px; margin-bottom:11px;
  transition:color .25s var(--ease-io); }
.foot-col a:hover { color:var(--ink); }
.foot-base { text-align:center; color:var(--mut); font-size:13px; border-top:1px solid var(--line); padding-top:26px; }
.foot-base b { color:var(--sil); }
/* Mobile: footer links need real tap targets (44px min) and readable type.
   The desktop 14px/11px-margin links render as ~24px tall rows — too small
   and too tightly packed to hit reliably on a phone. */
@media(max-width:820px){
  .foot { padding:56px 0 30px; }
  .foot-grid { gap:34px; margin-bottom:34px; }
  .foot-col { max-width:none; }
  .foot-col a {
    display:flex; align-items:center; min-height:44px;
    font-size:15px; margin-bottom:0;
  }
  .foot-col h4 { font-size:12px; margin-bottom:8px; }
  .foot-col p, .foot-base { font-size:14px; }
  .foot-base { line-height:1.8; }
  /* mobile menu links: larger type, comfortable rows */
  .nav-links a:not(.nav-cta) { font-size:13px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1; transform:none; transition:none; }
  .reveal, .duo > *, .bento .tile, .frame-duo > *, .tiers > * { transition-delay:0s; }
  .hero-copy > *, .page-head--split .gift-card, .page-head--split .reach-card { animation:none; }
  .marq-track { animation:none; }
  .marq { justify-content:center; }
  .marq-track[aria-hidden="true"] { display:none; }
  body::after { display:none; }
  .btn:active, .nav-cta:active { transform:none; }
  .btn--solid:hover, .btn--ghost:hover, .btn--light:hover, .nav-cta:hover,
  .card:hover, .tile:hover .tile-media, .gphoto:hover img,
  .duo .card:hover .card-media img { transform:none; }
  .lb-nav:hover, .lb-nav:active { transform:translateY(-50%); }
  .btn, .card, .tile-media, .gphoto img, .tile-arrow { transition:none; }
  .scroll-progress { display:none; }
}

/* ============================================================
   Premium polish — motion, hover micro-interactions, depth
   (additive; all motion gated on prefers-reduced-motion)
   ============================================================ */

/* Scroll progress bar (element injected by main.js) */
.scroll-progress { position:fixed; top:0; left:0; height:3px; width:0; z-index:200;
  background:linear-gradient(90deg, var(--logo-royal), var(--accent-2));
  box-shadow:0 0 12px rgba(36,80,230,.55); pointer-events:none; }

/* Parallax perf hint */
.hero-media, .band-media { will-change:transform; }

/* Nav link animated underline (desktop only) */
@media(min-width:1021px){
  .nav-links a:not(.nav-cta) { position:relative; }
  .nav-links a:not(.nav-cta)::after { content:''; position:absolute; left:0; right:0; bottom:-5px; height:2px;
    border-radius:2px; background:linear-gradient(90deg,var(--accent-2),var(--accent));
    transform:scaleX(0); transform-origin:left; transition:transform .32s var(--ease-io); }
  .nav-links a:not(.nav-cta):hover::after,
  .nav-links a.current:not(.nav-cta)::after { transform:scaleX(1); }
}

/* Solid-button sheen sweep on hover */
.btn--solid, .nav-cta { position:relative; overflow:hidden; }
.btn--solid::after, .nav-cta::after { content:''; position:absolute; top:0; bottom:0; left:-130%; width:55%;
  background:linear-gradient(100deg, transparent, rgba(255,255,255,.30), transparent);
  transform:skewX(-18deg); pointer-events:none; }
@media (prefers-reduced-motion: no-preference){
  .btn--solid:hover::after, .nav-cta:hover::after { animation:btn-sheen .8s var(--ease-io); }
}
@keyframes btn-sheen { from { left:-130%; } to { left:160%; } }

/* Card hover: accent border + a touch more lift */
.card, .feature-card, .gift-card { transition:transform .35s var(--ease-io), box-shadow .35s var(--ease-io), border-color .35s; }
.card:hover, .feature-card:hover, .gift-card:hover { border-color:rgba(96,144,240,.42); }
@media (prefers-reduced-motion: no-preference){
  .feature-card:hover, .gift-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-card-hover); }
}

/* Image zoom on hover (feature / portrait / coach cut-out) */
@media (prefers-reduced-motion: no-preference){
  .feature-media img, .portrait img, .coach-portrait img { transition:transform .7s var(--ease); }
  .feature-card:hover .feature-media img,
  .portrait:hover img, .coach-portrait:hover img { transform:scale(1.045); }
}

/* Icon-chip micro-interaction */
@media (prefers-reduced-motion: no-preference){
  .icon-chip { transition:transform .4s var(--ease-io), color .3s, border-color .3s; }
  .inv-item:hover .icon-chip, .duo .card:hover .icon-chip {
    transform:translateY(-3px) scale(1.06); color:#fff; border-color:var(--accent-2); }
}

/* Staggered child reveals (main.js adds .js-stagger to reveal grids) */
@media (prefers-reduced-motion: no-preference){
  .js-stagger.reveal { opacity:1; transform:none; }
  .js-stagger > * { opacity:0; transform:translateY(20px);
    transition:opacity .7s var(--ease), transform .7s var(--ease); }
  .js-stagger.in > * { opacity:1; transform:none; }
}
