/* ==========================================================================
   VSO Table Tennis — styles-light.css
   Light editorial concept · cinematic showreel · custom cursor · fine motion.
   ========================================================================== */

:root {
  /* surfaces — warm paper */
  --paper:   #f4f2ec;
  --paper-2: #eae7df;
  --surface: #ffffff;
  --ink:     #16181d;
  --ink-2:   #3a3e46;
  --muted:   #71767f;
  --faint:   #9aa0a8;
  --line:    rgba(22,24,29,0.12);
  --line-2:  rgba(22,24,29,0.20);

  /* brand */
  --red:      #e5372b;
  --red-deep: #c01f14;
  --blue:     #2456d6;
  --green:    #149149;
  --accent:   var(--red);

  /* shadows — soft, layered */
  --sh-sm: 0 1px 2px rgba(22,24,29,.06), 0 4px 14px rgba(22,24,29,.06);
  --sh-md: 0 6px 18px rgba(22,24,29,.08), 0 24px 60px -24px rgba(22,24,29,.22);
  --sh-lg: 0 30px 80px -28px rgba(22,24,29,.40);

  --display: "Anton", "Arial Narrow", sans-serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1220px;
  --gutter: clamp(20px, 5vw, 68px);
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --pop: cubic-bezier(.34, 1.7, .5, 1);       /* springy overshoot — "jumps out" */
  --pop-soft: cubic-bezier(.3, 1.45, .5, 1);
}

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

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
ul, ol { list-style: none; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* subtle paper grain */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(22,24,29,.022) 1px, transparent 1px);
  background-size: 4px 4px;
}

/* ---------- type ---------- */
.eyebrow { font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.eyebrow.light { color: rgba(255,255,255,.82); }
.kicker { display: inline-flex; align-items: baseline; gap: .6em; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin-bottom: 1.1rem; }
.kicker span { font-family: var(--display); font-size: 1rem; color: var(--red); }
.section-title { font-family: var(--display); font-weight: 400; font-size: clamp(2rem, 5.2vw, 3.7rem); line-height: .98; letter-spacing: .005em; text-transform: uppercase; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.24rem); color: var(--ink-2); }
p { color: var(--ink-2); }
strong { color: var(--ink); font-weight: 700; }
em { color: var(--muted); font-style: normal; }

.section { padding-block: clamp(76px, 11vw, 150px); }
.section-head { max-width: 780px; margin-bottom: clamp(36px, 6vw, 66px); }
.section-intro { margin-top: .9rem; color: var(--muted); font-size: 1.05rem; }
/* "View all" row under a preview section */
.section-more { margin-top: clamp(30px, 4vw, 52px); display: flex; justify-content: center; }

/* dedicated media pages (gallery.html / videos.html) */
.page-hero { padding: clamp(120px, 15vw, 180px) 0 clamp(18px, 3vw, 34px); }
.page-hero .back-link { display: inline-block; margin-bottom: 1.2rem; font-weight: 600; font-size: .9rem; color: var(--muted); transition: color .2s, transform .3s var(--pop); }
.page-hero .back-link:hover { color: var(--red); transform: translateX(-3px); }
.page-hero h1 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.6rem, 7vw, 5rem); line-height: .95; }
.media-page { padding-top: clamp(20px, 3vw, 40px); }

/* ---------- buttons ---------- */
.btn { position: relative; overflow: hidden; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; gap: .55em; font-weight: 700; font-size: .95rem; padding: 1em 1.6em; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .3s var(--pop), border-color .25s, box-shadow .3s, color .3s; }
/* hover fill wipes up from the bottom */
.btn::before { content: ""; position: absolute; inset: 0; z-index: -1; transform: translateY(101%); transition: transform .4s var(--ease-out); }
.btn:hover { transform: translateY(-4px) scale(1.07); }
.btn:hover::before { transform: translateY(0); }
.btn:active { transform: translateY(-1px) scale(.96); transition-duration: .1s; }
/* arrow nudge on the label end */
.btn::after { content: "\2192"; display: inline-block; margin-left: -.15em; opacity: 0; max-width: 0; transform: translateX(-6px); transition: opacity .3s, transform .3s var(--ease-out), max-width .3s; }
.btn:hover::after { opacity: 1; max-width: 1.4em; transform: translateX(0); }

.btn-primary { background: var(--red); color: #fff; box-shadow: 0 12px 30px -12px rgba(229,55,43,.6); }
.btn-primary::before { background: var(--red-deep); }
.btn-primary:hover { box-shadow: 0 18px 40px -14px rgba(229,55,43,.78); }

.btn-ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn-ghost::before { background: var(--ink); }
.btn-ghost:hover { color: #fff; border-color: var(--ink); }

.btn-block { width: 100%; }
@media (prefers-reduced-motion: reduce) {
  .btn::before, .btn::after { transition: none; }
  .btn:hover, .nav-cta:hover, .chip:hover, .video-card:hover, .benefit:hover,
  .tile:hover, .champ-card:hover, .contact-row:hover, .service-link:hover,
  .reel-toggle:hover, .brand:hover .brand-badge, .service:hover .service-num,
  .video-card:hover .v-play { transform: none; }
}

/* ---------- concept flag ---------- */
.concept-flag {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 150; font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  background: var(--ink); color: #fff; padding: .55em 1.1em; border-radius: 999px;
  box-shadow: var(--sh-md); transition: transform .25s var(--ease), opacity .3s;
}
.concept-flag:hover { transform: translateX(-50%) translateY(-2px); }

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; mix-blend-mode: normal;
  will-change: transform; translate: -50% -50%;
}
.cursor-dot { width: 7px; height: 7px; background: var(--red); transition: opacity .2s, width .2s, height .2s; }
.cursor-ring {
  width: 38px; height: 38px; border: 1.5px solid rgba(22,24,29,.45);
  transition: width .28s var(--ease-out), height .28s var(--ease-out),
              background .28s, border-color .28s, opacity .25s;
  display: grid; place-items: center;
}
.cursor-ring .cursor-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; opacity: 0; transition: opacity .2s; white-space: nowrap;
}
/* hovering links/buttons → ring grows subtly */
body.cur-link .cursor-ring { width: 58px; height: 58px; border-color: var(--red); }
body.cur-link .cursor-dot { opacity: 0; }
/* hovering media → ring becomes a filled "View / Play" pill-circle */
body.cur-media .cursor-ring { width: 76px; height: 76px; background: var(--red); border-color: var(--red); }
body.cur-media .cursor-ring .cursor-label { opacity: 1; }
body.cur-media .cursor-dot { opacity: 0; }
body.cur-hidden .cursor-dot, body.cur-hidden .cursor-ring { opacity: 0; }
/* hide native cursor only when custom is active */
body.has-cursor, body.has-cursor a, body.has-cursor button, body.has-cursor .tile, body.has-cursor .video-card { cursor: none; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none !important; } body.has-cursor, body.has-cursor * { cursor: auto; } }

/* ==========================================================================
   HEADER
   ========================================================================== */
/* ==========================================================================
   INTRO SPLASH — branded overlay on first open (homepage)
   ========================================================================== */
.intro { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; text-align: center; background: var(--ink); color: #fff; transition: opacity .6s var(--ease), visibility .6s; }
.intro.intro--done { opacity: 0; visibility: hidden; }
.intro-inner { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; padding: var(--gutter); }
.intro .brand-badge { width: 74px; height: 74px; font-size: 1.7rem; border-radius: 18px; transform: scale(.55); opacity: 0; animation: introPop .7s var(--pop) forwards; }
.intro-name { font-family: var(--display); text-transform: uppercase; font-size: clamp(2.1rem, 7vw, 3.6rem); line-height: .95; opacity: 0; animation: introUp .7s var(--ease-out) .14s forwards; }
.intro-desc { font-size: clamp(.72rem, 2.4vw, .92rem); letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.62); opacity: 0; animation: introUp .7s var(--ease-out) .28s forwards; max-width: 90vw; }
.intro-desc b { color: var(--red); font-weight: 700; }
.intro-bar { width: 0; height: 2px; background: var(--red); margin-top: .3rem; animation: introBar 1.5s var(--ease) .3s forwards; }
@keyframes introPop { to { transform: scale(1); opacity: 1; } }
@keyframes introUp { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes introBar { to { width: 120px; } }
body.intro-lock { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .intro .brand-badge, .intro-name, .intro-desc { animation: none; opacity: 1; transform: none; }
  .intro-bar { animation: none; width: 120px; }
}

.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 0; transition: padding .4s var(--ease-out); }
/* on scroll the bar detaches into a floating, rounded pill */
.site-header.scrolled { padding: 12px clamp(12px, 4vw, 30px); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; height: 78px;
  border: 1px solid transparent; border-radius: 0;
  transition: height .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s, border-radius .4s var(--ease-out), padding .35s, backdrop-filter .35s;
}
.site-header.scrolled .header-inner {
  height: 60px; padding-inline: clamp(1rem, 2.4vw, 1.6rem);
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: blur(14px) saturate(1.5); backdrop-filter: blur(14px) saturate(1.5);
  border-color: var(--line); border-radius: 999px;
  box-shadow: 0 12px 32px -12px rgba(16,18,22,.32), 0 2px 8px rgba(16,18,22,.08);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand-badge { font-family: var(--display); font-size: 1.05rem; color: #fff; background: var(--red); width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; box-shadow: var(--sh-sm); transition: transform .4s var(--pop); }
.brand:hover .brand-badge { transform: rotate(-8deg) scale(1.12); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-weight: 800; font-size: .98rem; }
.brand-sub { font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 2rem; }
/* modal-only chrome — hidden on desktop, shown inside the mobile popup */
.nav-modal-head, .nav-backdrop { display: none; }
.nav a { font-size: .92rem; font-weight: 600; color: var(--ink-2); position: relative; white-space: nowrap; transition: color .2s; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--red); transition: width .25s var(--ease); }
.nav a:not(.nav-cta):hover { color: var(--ink); }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav a.nav-cta { background: var(--ink); color: #fff; padding: .6em 1.2em; border-radius: 999px; transition: background .2s, transform .3s var(--pop); }
.nav a.nav-cta:hover { background: var(--red); color: #fff; transform: translateY(-2px) scale(1.07); }
.nav a.nav-cta:active { transform: scale(.96); transition-duration: .1s; }
.nav-toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; margin-right: -8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-top: 112px; padding-bottom: clamp(46px, 6vw, 90px); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,12,15,.52) 0%, rgba(11,12,15,.12) 28%, rgba(11,12,15,.5) 68%, rgba(244,242,236,.55) 90%, var(--paper) 100%),
    linear-gradient(90deg, rgba(11,12,15,.72) 0%, rgba(11,12,15,.22) 52%, rgba(11,12,15,0) 100%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; }
.hero-copy { max-width: 660px; }
.hero .eyebrow.light { color: rgba(255,255,255,.85); }
.hero .eyebrow-meta { margin-top: .4rem; font-size: .68rem; letter-spacing: .2em; color: rgba(255,255,255,.62); }
.hero-title { font-family: var(--display); font-weight: 400; font-size: clamp(3rem, 8.4vw, 7rem); line-height: .9; letter-spacing: .005em; text-transform: uppercase; margin: .8rem 0 1.2rem; color: #fff; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .w { display: inline-block; transform: translateY(110%); opacity: 0; transition: transform .9s var(--ease-out), opacity .9s var(--ease-out); }
.hero.in .w { transform: translateY(0); opacity: 1; }
.hero-title .accent { color: var(--red); }
.hero-lead { max-width: 520px; font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero .btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.hero .btn-ghost::before { background: #fff; }
.hero .btn-ghost:hover { border-color: #fff; color: var(--ink); }
.hero-scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px; z-index: 1; }
.hero-scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll span { animation: none; } }

/* header legibility over the photo hero (top of page only) */
.site-header:not(.scrolled) .brand-name { color: #fff; }
.site-header:not(.scrolled) .brand-sub { color: rgba(255,255,255,.7); }
/* these colour the inline desktop nav over the hero — must NOT leak into the
   mobile modal (white links on a white card = invisible), so desktop-only.
   Matches the nav-collapse breakpoint (1080px). */
@media (min-width: 1081px) {
  .site-header:not(.scrolled) .nav a:not(.nav-cta) { color: rgba(255,255,255,.92); }
  .site-header:not(.scrolled) .nav a:not(.nav-cta):hover { color: #fff; }
  .site-header:not(.scrolled) .nav-cta { background: rgba(11,12,15,.34); border: 1px solid rgba(255,255,255,.6); color: #fff; backdrop-filter: blur(6px); }
  .site-header:not(.scrolled) .nav-cta:hover { background: var(--red); border-color: var(--red); color: #fff; }
}
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }

/* ==========================================================================
   TICKER
   ========================================================================== */
.ticker { border-block: 1px solid var(--line); background: var(--surface); overflow: hidden; padding-block: 16px; }
.ticker-row { display: inline-flex; align-items: center; gap: 1.5rem; white-space: nowrap; font-family: var(--display); font-size: 1.25rem; letter-spacing: .03em; text-transform: uppercase; color: var(--ink); animation: tick 30s linear infinite; }
.ticker-row i { color: var(--red); font-style: normal; }
@keyframes tick { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-row { animation: none; } }

/* ==========================================================================
   STORY
   ========================================================================== */
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 84px); align-items: center; }
.story-copy p + p { margin-top: 1.1rem; }
.story-copy .lead { margin-top: 1.6rem; margin-bottom: 2rem; padding-bottom: .4rem; }
.signature { display: flex; align-items: center; gap: 1.1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.sig-photo { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; object-position: center 25%; flex: none; border: 3px solid var(--red); box-shadow: var(--sh-sm); transition: transform .4s var(--pop); }
.signature:hover .sig-photo { transform: scale(1.08) rotate(-4deg); }
.sig-text { display: flex; flex-direction: column; }
.sig-name { display: block; font-family: var(--display); font-size: 1.3rem; }
.sig-role { display: block; font-size: .85rem; color: var(--muted); }
.story { padding-top: clamp(34px, 5vw, 66px); }
.story-figure { position: relative; border-radius: var(--radius-lg); box-shadow: var(--sh-lg); }
.story-figure img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.story-cap {
  margin-top: 1.1rem; padding: 1rem 1.2rem;
  font-family: "Caveat", cursive; font-weight: 700;
  font-size: clamp(1.4rem, 2.3vw, 1.9rem); line-height: 1.28;
  color: var(--ink); border-left: 3px solid var(--red); background: rgba(229,55,43,.04);
  border-radius: 0 10px 10px 0;
}
/* shape-line corner bracket — laps up into the section above */
.story-figure::before {
  content: ""; position: absolute; left: -14px; top: -14px; width: 74px; height: 74px;
  border-left: 3px solid var(--red); border-top: 3px solid var(--red);
  z-index: 2; pointer-events: none;
}
@media (min-width: 861px) {
  .story-figure { margin-top: -84px; } /* overlap the previous section */
}

/* About us — two-column editorial */
.about { padding-top: clamp(40px, 6vw, 80px); }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(28px, 6vw, 84px); align-items: start; }
.about-head { position: sticky; top: 120px; }
.about-statement { font-size: clamp(1.35rem, 2.6vw, 2.05rem); font-weight: 600; line-height: 1.34; letter-spacing: -.01em; color: var(--ink); }
.about-statement em { color: var(--red); font-style: normal; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: clamp(28px, 4vw, 44px); border-top: 1px solid var(--line); }
.about-facts .fact { padding: 1.25rem 0 0; border-right: 1px solid var(--line); padding-right: 1.2rem; }
.about-facts .fact:last-child { border-right: 0; }
.about-facts dt { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin-bottom: .5rem; }
.about-facts dd { margin: 0; font-family: var(--display); font-size: clamp(1rem, 1.5vw, 1.25rem); line-height: 1.05; text-transform: uppercase; color: var(--ink); }

/* ==========================================================================
   PROGRAMME / SERVICES
   ========================================================================== */
.services { border-top: 1px solid var(--line); }
.service { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(16px, 4vw, 48px); padding: clamp(22px, 3.4vw, 38px) 0; border-bottom: 1px solid var(--line); position: relative; transition: padding-left .35s var(--ease); }
.service::before { content: ""; position: absolute; inset: 0 0 0 -100vw; background: linear-gradient(90deg, transparent, rgba(229,55,43,.05)); opacity: 0; transition: opacity .3s; pointer-events: none; }
.service:hover::before { opacity: 1; }
.service:hover { padding-left: 14px; }
.service-num { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--faint); transition: color .3s, transform .4s var(--pop); }
.service:hover .service-num { color: var(--red); transform: scale(1.22) translateX(4px); }
.service-body h3 { font-size: clamp(1.25rem, 2.4vw, 1.75rem); font-weight: 800; letter-spacing: -.01em; }
.service-body p { margin-top: .4rem; max-width: 62ch; font-size: .98rem; }
.service-link { font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); border: 1px solid var(--line-2); border-radius: 999px; padding: .7em 1.25em; white-space: nowrap; transition: background .2s, color .2s, border-color .2s, transform .3s var(--pop); }
.service-link:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: scale(1.09); }
.service-link:active { transform: scale(.96); transition-duration: .1s; }

/* ==========================================================================
   SHOWREEL — sticky parallax video
   ========================================================================== */
/* Desktop / tablet: full-bleed cinematic showreel */
.showreel { position: relative; }
.showreel-track { height: 230vh; position: relative; }
.showreel-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: grid; place-items: center; background: var(--ink); }
.showreel-video { position: absolute; inset: 0; will-change: transform; }
.showreel-video video { width: 100%; height: 100%; object-fit: cover; }
.showreel-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,12,15,.45), rgba(11,12,15,.15) 40%, rgba(11,12,15,.7)); }
.showreel-overlay { position: relative; z-index: 2; text-align: center; color: #fff; padding-inline: var(--gutter); }
.showreel-title { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.2rem, 6.5vw, 5rem); line-height: .95; margin: 1rem 0 0; }
.reel-toggle { display: inline-flex; align-items: center; gap: .7em; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.4); color: #fff; padding: .7em 1.3em .7em .8em; border-radius: 999px; cursor: pointer; font-weight: 700; font-size: .9rem; letter-spacing: .02em; backdrop-filter: blur(6px); transition: background .25s, transform .3s var(--pop); }
.reel-toggle:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px) scale(1.07); }
.reel-toggle:active { transform: scale(.96); transition-duration: .1s; }
.reel-ico { width: 30px; height: 30px; border-radius: 50%; background: #fff; display: grid; place-items: center; }
.reel-ico::before { content: ""; }
.reel-ico[data-state="play"]::before { width: 0; height: 0; margin-left: 3px; border-left: 11px solid var(--ink); border-top: 7px solid transparent; border-bottom: 7px solid transparent; }
.reel-ico[data-state="pause"]::before { width: 9px; height: 11px; border-left: 3px solid var(--ink); border-right: 3px solid var(--ink); }
.showreel-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: rgba(255,255,255,.16); z-index: 3; }
.showreel-progress span { display: block; height: 100%; width: 0; background: var(--red); }

/* ==========================================================================
   VIDEOS
   ========================================================================== */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.video-grid .video-card:first-child { grid-column: span 2; grid-row: span 2; }
.video-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; background: var(--ink); box-shadow: var(--sh-sm); aspect-ratio: 4/3; transition: transform .4s var(--pop), box-shadow .4s; }
.video-card:hover { transform: translateY(-8px) scale(1.04); box-shadow: var(--sh-lg); z-index: 2; }
.video-card img, .video-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-card video { opacity: 0; transition: opacity .4s; }
.video-card.playing video { opacity: 1; }
.video-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(11,12,15,.6)); }
.video-card .v-meta { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 10px; color: #fff; }
.video-card .v-title { font-weight: 700; font-size: .98rem; }
.video-card .v-play { width: 52px; height: 52px; border-radius: 50%; background: rgba(229,55,43,.95); display: grid; place-items: center; flex: none; transition: transform .35s var(--pop); }
.video-card:hover .v-play { transform: scale(1.22); }
.video-card .v-play::before { content: ""; width: 0; height: 0; margin-left: 4px; border-left: 14px solid #fff; border-top: 9px solid transparent; border-bottom: 9px solid transparent; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.chip { font-family: var(--sans); font-size: .85rem; font-weight: 600; color: var(--muted); background: var(--surface); border: 1px solid var(--line); padding: .55em 1.15em; border-radius: 999px; min-height: 44px; display: inline-flex; align-items: center; cursor: pointer; transition: color .2s, background .2s, border-color .2s, transform .3s var(--pop); }
.chip:hover { color: var(--ink); border-color: var(--line-2); transform: translateY(-3px) scale(1.06); }
.chip:active { transform: scale(.96); transition-duration: .1s; }
.chip.is-active { color: #fff; background: var(--red); border-color: var(--red); }
.masonry { columns: 3; column-gap: 18px; }
.tile { position: relative; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden; cursor: pointer; break-inside: avoid; background: var(--surface); box-shadow: var(--sh-sm); transition: transform .35s var(--pop), box-shadow .3s; }
.tile:hover { transform: scale(1.05); box-shadow: var(--sh-lg); z-index: 3; }
.tile img { width: 100%; height: auto; transition: transform .6s var(--ease); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 60%, rgba(11,12,15,.45)); opacity: 0; transition: opacity .3s; }
.tile-tag { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); background: rgba(255,255,255,.9); backdrop-filter: blur(6px); padding: .35em .7em; border-radius: 6px; }
.tile:hover img { transform: scale(1.02); }
.tile:hover::after { opacity: 1; }
.tile.is-hidden { display: none; }

/* ==========================================================================
   CHAMPIONS
   ========================================================================== */
/* editorial feature rows — image pops in from its frame beside a giant statement */
.champ-feature { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(28px, 5vw, 76px); align-items: center; margin-top: clamp(44px, 6vw, 88px); }
.champ-feature.reverse { grid-template-columns: .88fr 1.12fr; }
.champ-feature.reverse .champ-shot { order: 2; }
.champ-feature.reverse .champ-said { order: 1; }

.champ-shot {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-lg);
  clip-path: inset(0 101% 0 0 round var(--radius-lg));
  transition: clip-path 1s var(--ease-out), transform .45s var(--pop), box-shadow .45s;
}
.champ-feature.reverse .champ-shot { clip-path: inset(0 0 0 101% round var(--radius-lg)); }
.champ-shot.in,
.champ-feature.reverse .champ-shot.in { clip-path: inset(0 0 0 0 round var(--radius-lg)); }
.champ-shot img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transform: scale(1.25); transition: transform 1.2s var(--pop); }
.champ-shot.face img { object-position: center top; }
.champ-shot.in img { transform: scale(1); }
.champ-shot:hover { transform: translateY(-6px) scale(1.015); }
.champ-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.6rem 1.2rem .95rem; margin: 0;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: #fff;
  background: linear-gradient(to top, rgba(11,12,15,.82), rgba(11,12,15,0));
}

.champ-said { position: relative; isolation: isolate; }
.champ-said::before { /* on-brand ring shape behind the number */
  content: ""; position: absolute; left: -34px; top: -46px; width: 150px; height: 150px;
  border: 2px solid rgba(229,55,43,.28); border-radius: 50%; z-index: -1;
}
.champ-index { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--red); display: block; margin-bottom: .6rem; }
.champ-big { font-size: clamp(1.9rem, 4vw, 3.4rem); font-weight: 800; line-height: 1.04; letter-spacing: -.02em; color: #fff; }
.champ-big em { color: var(--red); font-style: normal; }
.champ-sub { margin-top: 1.3rem; color: rgba(255,255,255,.62); font-size: 1.06rem; max-width: 44ch; }

@media (prefers-reduced-motion: reduce) {
  .champ-shot { clip-path: inset(0 0 0 0 round var(--radius-lg)); transition: none; }
  .champ-shot img { transform: none; transition: none; }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: start; }
.contact-copy .lead { margin-bottom: 1.8rem; }
.contact-methods { display: grid; gap: 10px; }
.contact-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.3rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--sh-sm); transition: border-color .25s, transform .32s var(--pop), box-shadow .3s; }
.contact-row:hover { border-color: var(--red); transform: translateX(8px) scale(1.02); box-shadow: var(--sh-md); }
.contact-label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.contact-value { font-weight: 700; font-size: 1.05rem; text-align: right; }
.contact-note { display: block; margin-top: .3rem; font-size: .8rem; font-weight: 600; color: var(--muted); }
.footer-address { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.55; }
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 38px); box-shadow: var(--sh-md); }
.contact-form h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 1.3rem; }
.contact-form label { display: block; margin-bottom: 1rem; }
.contact-form label span { display: block; font-size: .82rem; color: var(--muted); margin-bottom: .4rem; font-weight: 600; }
.contact-form label span i { color: var(--faint); font-style: normal; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; font-family: inherit; font-size: .98rem; color: var(--ink); background: var(--paper); border: 1px solid var(--line-2); border-radius: 10px; padding: .8em .9em; transition: border-color .2s, box-shadow .2s, background .2s; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--faint); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(229,55,43,.14); }
.contact-form textarea { resize: vertical; }
.form-note { margin-top: 1rem; font-size: .88rem; color: var(--muted); text-align: center; }
.form-note a { color: var(--red); font-weight: 600; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,.66); }
.footer-grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(48px, 6vw, 82px);
}
.footer-about { max-width: 340px; }
.footer-brand { display: inline-flex; align-items: center; gap: .8rem; margin-bottom: 1.1rem; }
.footer-name { font-family: var(--display); font-size: 1.45rem; letter-spacing: .01em; text-transform: uppercase; color: #fff; }
.footer-tag { font-size: .92rem; line-height: 1.55; color: rgba(255,255,255,.6); margin-bottom: 1.4rem; }
.footer-cta { font-weight: 700; color: var(--red); transition: color .2s, transform .3s var(--pop); display: inline-block; }
.footer-cta:hover { color: #fff; transform: translateX(4px); }
.footer-heading {
  font-family: var(--body); font-size: .82rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: #fff; margin-bottom: 1.2rem;
  padding-bottom: .7rem; border-bottom: 1px solid rgba(255,255,255,.18);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .68rem; }
.footer-links a { font-size: .94rem; color: rgba(255,255,255,.72); transition: color .2s, padding-left .2s var(--ease); }
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  padding-block: 1.5rem; border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem; color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: var(--red); }
.dev-credit { color: rgba(255,255,255,.45); }
.dev-credit strong { color: rgba(255,255,255,.8); font-weight: 700; }
.dev-credit:hover, .dev-credit:hover strong { color: var(--red); }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,22,26,.86); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage { max-width: min(1100px, 92vw); max-height: 82vh; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(.92) translateY(10px); transition: transform .42s var(--ease-out), opacity .32s var(--ease); }
.lightbox.open .lb-stage { opacity: 1; transform: scale(1) translateY(0); }
@media (prefers-reduced-motion: reduce) { .lb-stage { transition: opacity .2s; transform: none; } }
.lb-stage img, .lb-stage video { max-width: 92vw; max-height: 82vh; width: auto; height: auto; border-radius: 12px; box-shadow: var(--sh-lg); }
.lb-caption { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; font-size: .9rem; color: rgba(255,255,255,.85); padding-inline: 1rem; }
.lb-close, .lb-nav { position: absolute; z-index: 2; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .2s, transform .3s var(--pop); }
.lb-close { top: 22px; right: 22px; width: 46px; height: 46px; border-radius: 50%; font-size: 1.6rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; font-size: 1.9rem; }
.lb-prev { left: 18px; } .lb-next { right: 18px; }
.lb-close:hover, .lb-nav:hover { background: var(--red); border-color: var(--red); }
.lb-close:hover { transform: scale(1.15) rotate(90deg); }
.lb-nav:hover { transform: translateY(-50%) scale(1.18); }

/* ==========================================================================
   REVEAL
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-title .w { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   BACKGROUND SYSTEM — oversized ghost type behind the sections.
   ========================================================================== */
.theme-light main > section { position: relative; }
.theme-light main > section > .wrap { position: relative; z-index: 2; }

/* ghost typography */
.ghost {
  position: absolute; z-index: 0; pointer-events: none; user-select: none;
  font-family: var(--display); text-transform: uppercase; line-height: .78;
  letter-spacing: -.01em; white-space: nowrap;
  color: rgba(22,24,29,.05);
}
.ghost.lite { color: rgba(255,255,255,.06); }
.ghost.red  { color: rgba(229,55,43,.07); }
/* clip ghost bleed to the section (avoids page overflow) */
.theme-light .story, .theme-light .programme, .theme-light .videos,
.theme-light .gallery, .theme-light .contact, .theme-light .champions,
.theme-light .benefits { overflow: hidden; }

/* ==========================================================================
   BRAND BAND — full-bleed orange brand moment
   ========================================================================== */
.band { background: var(--red); color: #fff; text-align: center; padding-block: clamp(66px, 9vw, 124px); }
.band-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.band .eyebrow.light { color: rgba(255,255,255,.85); }
.band-title { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.2rem, 6vw, 4.7rem); line-height: .94; letter-spacing: .01em; }
.btn-on-brand { background: #fff; color: var(--red); box-shadow: 0 14px 34px -14px rgba(0,0,0,.45); }
.btn-on-brand::before { background: var(--ink); }
.btn-on-brand:hover { color: #fff; }

/* ==========================================================================
   DARK INTERLUDE — Champions on charcoal for contrast
   ========================================================================== */
.champions { background: var(--ink); color: #fff; }
.champions .kicker { color: rgba(255,255,255,.62); }
.champions .kicker span { color: var(--red); }
.champions .section-title { color: #fff; }
.champions .section-intro { color: rgba(255,255,255,.62); }

/* ==========================================================================
   WHY TABLE TENNIS — benefit cards
   ========================================================================== */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(20px, 2.4vw, 30px);
  box-shadow: var(--sh-sm);
  transition: transform .38s var(--pop), box-shadow .38s, border-color .3s;
}
.benefit::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.benefit:hover { transform: translateY(-8px) scale(1.035); box-shadow: var(--sh-lg); border-color: var(--line-2); z-index: 2; }
.benefit:hover::before { transform: scaleX(1); }
.benefit h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 1.5rem; letter-spacing: .02em; margin-bottom: 1rem; }
.benefit ul li { font-size: .92rem; color: var(--ink-2); padding: .55rem 0 .55rem 1.1rem; position: relative; border-top: 1px solid var(--line); }
.benefit ul li:first-child { border-top: 0; }
.benefit ul li::before { content: ""; position: absolute; left: 0; top: 1.2rem; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }
/* recognition / trust strip */
.cred-list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); column-gap: clamp(28px, 4vw, 60px); border-top: 1px solid var(--line); }
.cred-item { padding: 1.15rem 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: .2rem; }
.cred-item .nm { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.1rem, 1.7vw, 1.4rem); line-height: 1.02; letter-spacing: .01em; color: var(--ink); }
.cred-item .rl { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--red); }

.benefit-foot { text-align: center; margin-top: 2.4rem; font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--ink); }
.benefit-foot strong { color: var(--red); }

/* benefits — "great for every age" + "more benefits" sub-blocks */
.benefits-sub { margin-top: clamp(46px, 7vw, 88px); }
.benefits-subhead { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.5rem, 3.4vw, 2.3rem); letter-spacing: .02em; margin-bottom: clamp(20px, 3vw, 32px); }
.age-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.age-card { padding: 1.7rem 1.6rem; background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: var(--radius); }
.age-card h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 1.6rem; letter-spacing: .02em; margin-bottom: .7rem; }
.age-card p { color: var(--ink-2); font-size: .98rem; line-height: 1.6; }
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: clamp(28px, 4vw, 60px); }
.more-item { padding: 1.5rem 0; border-top: 1px solid var(--line); }
.more-item h4 { display: flex; gap: .6em; font-family: var(--body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--ink); margin-bottom: .55rem; }
.more-item h4 i { font-family: var(--display); font-style: normal; color: var(--red); font-size: 1rem; line-height: 1; }
.more-item p { color: var(--ink-2); font-size: .95rem; line-height: 1.55; }

/* ==========================================================================
   ENDORSEMENT BAND — full-bleed photo, fades to paper
   ========================================================================== */
.endorse { display: grid; grid-template-columns: 1fr 1.1fr; align-items: stretch; min-height: 70vh; background: var(--ink); }
.endorse-copy { align-self: center; padding: clamp(40px, 6vw, 88px) clamp(28px, 5vw, 72px); max-width: 640px; justify-self: end; }
.endorse-copy .eyebrow { color: var(--red); }
.endorse-copy h2 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: .98; margin: 1rem 0 1.2rem; color: #fff; }
.endorse-copy p { color: rgba(255,255,255,.82); font-size: 1.08rem; line-height: 1.6; }
.endorse-media { margin: 0; position: relative; overflow: hidden; }
.endorse-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }

/* ==========================================================================
   STICKY MOBILE CTA — always-available WhatsApp action on phones
   ========================================================================== */
.mobile-cta { display: none; }
@media (max-width: 760px) {
  .mobile-cta {
    display: grid; place-items: center;
    position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 90; width: 56px; height: 56px; padding: 0; border-radius: 50%;
    background: #25d366; color: #fff;
    box-shadow: 0 10px 26px -6px rgba(0,0,0,.45);
    transition: transform .3s var(--pop);
  }
  .mobile-cta:active { transform: scale(.9); transition-duration: .1s; }
  /* keep the label for screen readers only */
  .mobile-cta-label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
}

/* ==========================================================================
   BRAND SHAPES — one ball-derived language: rings, an arc, one soft glow
   ========================================================================== */
/* big outlined ring bleeding off the programme section */
.theme-light .programme::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: clamp(340px, 36vw, 540px); aspect-ratio: 1; border-radius: 50%;
  border: 2px solid rgba(22,24,29,.08);
  left: -9%; top: 46%; transform: translateY(-50%);
}
/* sweeping ball-trajectory arc bleeding off the benefits section */
.theme-light .benefits::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: clamp(380px, 42vw, 640px); aspect-ratio: 1; border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: rgba(229,55,43,.16); border-left-color: rgba(229,55,43,.16);
  left: -13%; bottom: -30%; transform: rotate(-14deg);
}
/* ring behind the contact heading */
.theme-light .contact::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 320px; height: 320px; border-radius: 50%;
  border: 2px solid rgba(229,55,43,.13);
  left: -6%; top: 26%;
}
/* one soft red glow behind the dark champions interlude */
.theme-light .champions::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 64vw; height: 64vw; max-width: 800px; max-height: 800px; border-radius: 50%;
  left: 50%; top: 2%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(229,55,43,.2), rgba(229,55,43,0) 68%);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .masonry { columns: 2; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-grid .video-card:first-child { grid-column: span 2; grid-row: auto; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .age-grid { grid-template-columns: 1fr; }
  .more-grid { grid-template-columns: 1fr 1fr; }
  .cred-list { grid-template-columns: 1fr 1fr; }
}
/* nav collapses to the hamburger + modal at <=1080px (8 items wrap below ~1040) */
@media (max-width: 1080px) {
  /* ---- mini modal popup over a blurred page ---- */
  .nav-backdrop {
    display: block; position: fixed; inset: 0; z-index: 190;
    background: rgba(16,18,22,.42); backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px);
    opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
  }
  body.menu-open .nav-backdrop { opacity: 1; visibility: visible; }

  .nav {
    position: fixed; z-index: 195;
    top: 50%; left: 50%; width: min(86vw, 360px);
    transform: translate(-50%, -50%) scale(.6);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    padding: 1.4rem 1.5rem 1.5rem; background: #fff;
    border-radius: 22px; box-shadow: 0 30px 80px -20px rgba(16,18,22,.55), 0 2px 0 rgba(255,255,255,.6) inset;
    opacity: 0; visibility: hidden; max-height: 86svh; overflow-y: auto;
    transform-origin: center center;
    transition: opacity .3s var(--ease), visibility .3s, transform .42s var(--pop);
  }
  .nav.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }

  .nav-modal-head {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: .9rem; margin-bottom: .4rem; border-bottom: 1px solid var(--line);
  }
  .nav-modal-title {
    font-family: var(--display); text-transform: uppercase; letter-spacing: .06em;
    font-size: 1.05rem; color: var(--muted);
  }
  .nav-close { position: relative; width: 36px; height: 36px; border: 0; background: none; cursor: pointer; flex: none; }
  .nav-close span {
    position: absolute; top: 50%; left: 50%; width: 18px; height: 2px; border-radius: 2px;
    background: var(--ink); transition: background .2s;
  }
  .nav-close span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
  .nav-close span:nth-child(2) { transform: translate(-50%,-50%) rotate(-45deg); }
  .nav-close:hover span { background: var(--red); }

  .nav a {
    font-family: var(--display); text-transform: uppercase; letter-spacing: .015em;
    font-size: 1.5rem; line-height: 1; color: var(--ink); padding: .62rem .2rem;
    border-bottom: 1px solid var(--line);
    opacity: 0; transform: translateY(10px);
    transition: opacity .4s ease, transform .5s var(--pop), color .2s, padding-left .2s var(--ease);
  }
  .nav.open a { opacity: 1; transform: translateY(0); }
  .nav.open a:nth-of-type(1) { transition-delay: .06s; }
  .nav.open a:nth-of-type(2) { transition-delay: .10s; }
  .nav.open a:nth-of-type(3) { transition-delay: .14s; }
  .nav.open a:nth-of-type(4) { transition-delay: .18s; }
  .nav.open a:nth-of-type(5) { transition-delay: .22s; }
  .nav.open a:nth-of-type(6) { transition-delay: .26s; }
  .nav.open a:nth-of-type(7) { transition-delay: .30s; }
  .nav.open a:nth-of-type(8) { transition-delay: .34s; }
  .nav a:not(.nav-cta)::after { display: none; }
  .nav a:not(.nav-cta):hover, .nav a:not(.nav-cta):active { color: var(--red); padding-left: .7rem; }
  .nav a.nav-cta {
    margin-top: 1.1rem; border-bottom: 0; border-radius: 999px; text-align: center;
    background: var(--red); color: #fff; padding: .85rem 1rem; font-size: 1.3rem; letter-spacing: .03em;
    transition: background .2s, transform .3s var(--pop);
  }
  .nav a.nav-cta:hover, .nav a.nav-cta:active { background: var(--ink); color: #fff; transform: translateY(-2px); padding-left: 1rem; }
  .nav-toggle { display: flex; position: relative; z-index: 95; }
  .brand { position: relative; z-index: 95; }
  /* On mobile the scrolled pill must NOT use backdrop-filter: it would become the
     containing block for the fixed menu modal (which lives inside .header-inner),
     anchoring it to the pill at the top instead of the viewport centre. Use a
     solid pill on mobile; the frosted blur stays on desktop where there's no modal. */
  .site-header.scrolled .header-inner {
    background: rgba(255,255,255,.96);
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
}

/* content stacking stays a true tablet/mobile breakpoint */
@media (max-width: 860px) {
  .story-grid, .contact-grid, .about-grid { grid-template-columns: 1fr; gap: clamp(20px, 5vw, 36px); }
  .about-head { position: static; }
  .story-figure { order: -1; }
  /* endorsement: stack the split panel, photo above the copy */
  .endorse { grid-template-columns: 1fr; min-height: 0; }
  .endorse-copy { justify-self: stretch; max-width: none; padding: clamp(34px, 9vw, 56px) var(--gutter); }
  .endorse-media { order: -1; aspect-ratio: 4 / 3; }
  .champ-feature, .champ-feature.reverse { grid-template-columns: 1fr; gap: 1.6rem; }
  .champ-feature.reverse .champ-shot, .champ-feature.reverse .champ-said { order: 0; }
  .service { grid-template-columns: auto 1fr; }
  .service-link { grid-column: 2; justify-self: start; margin-top: .4rem; }
  /* footer: about spans the top, link groups in two columns */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: clamp(28px, 7vw, 44px) clamp(20px, 6vw, 40px); }
  .footer-about { grid-column: 1 / -1; max-width: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .7rem; }
  .showreel-track { height: 180vh; }
}
@media (max-width: 760px) {
  /* declutter big background shapes on small screens (keep glow + circle photo) */
  .theme-light .programme::after, .theme-light .benefits::after, .theme-light .contact::before { display: none; }
  /* contained showreel on mobile so the whole clip (players) is visible */
  .showreel-track { height: 150vh; }
  .showreel-sticky { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; padding: 88px var(--gutter) 36px; }
  .showreel-overlay { position: relative; padding-inline: 0; }
  .showreel-video { position: relative; inset: auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-lg); }
  .showreel-video video { width: auto; height: auto; max-width: 92vw; max-height: 52vh; object-fit: contain; }
  .showreel-scrim { display: none; }
  .showreel-title { font-size: clamp(1.7rem, 7vw, 2.6rem); margin: .3rem 0 0; }
}
@media (max-width: 640px) {
  /* pull hero content up so it sits closer to the header */
  .hero { align-items: center; min-height: 88svh; padding-top: 86px; padding-bottom: 44px; }
  /* frame the coach (centre of the photo) above the copy on the narrow crop */
  .hero-media img { object-position: 54% 30%; }
  /* footer: stack and centre every element on mobile */
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-about { margin-inline: auto; }
  .footer-brand { justify-content: center; }
  .footer-links { align-items: center; }
  .footer-links a:hover { padding-left: 0; }
  .footer-bottom { align-items: center; text-align: center; }
  /* tighten section spacing on mobile */
  .section { padding-block: clamp(50px, 9vw, 76px); }
  /* keep the kicker's presence (match the desktop feel) */
  .kicker { font-size: .84rem; }
  .kicker span { font-size: 1.18rem; }
  /* big editorial headings on mobile */
  .section-title { font-size: clamp(2.5rem, 12.5vw, 3.6rem); }
  .endorse-copy h2 { font-size: clamp(2.4rem, 12vw, 3.6rem); }
  /* stack hero buttons full-width */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}
@media (max-width: 560px) {
  .masonry { columns: 1; }
  .video-grid { grid-template-columns: 1fr; }
  .video-grid .video-card:first-child { grid-column: auto; }
  .benefit-grid { grid-template-columns: 1fr; }
  .more-grid { grid-template-columns: 1fr; }
  .cred-list { grid-template-columns: 1fr; }
  /* stack the About facts so the display text has room to breathe */
  .about-facts { grid-template-columns: 1fr; }
  .about-facts .fact { border-right: 0; border-bottom: 1px solid var(--line); padding: 1rem 0; }
  .about-facts .fact:last-child { border-bottom: 0; padding-bottom: 0; }
  /* trim the homepage previews further on phones to avoid endless scroll */
  .gallery.is-preview .masonry .tile:nth-child(n+5) { display: none; }
  .videos.is-preview .video-grid .video-card:nth-child(n+3) { display: none; }
}
