/* =====================================================================
   ÉLEVER BADMINTON — PAGE LAYER
   Loads after style.css. Everything here belongs to the standalone
   pages. Tokens, buttons and .reveal all come from style.css.
   ===================================================================== */

/* ---------- interior nav: solid at every scroll position ---------- */
.nav--solid{background:rgba(255,255,255,.9);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-color:var(--line)}

/* ---------- page header (interior hero) ----------
   Dark brand band: black base, blue depth, subtle court-line texture.
   Matches the home hero / CTA / footer so interior pages stop reading
   as a blank white sheet. */
.phead{
  position:relative;overflow:hidden;isolation:isolate;
  padding:9.5rem clamp(1.25rem,5vw,3rem) 4.5rem;
  background:var(--dark);color:#fff;border-bottom:1px solid rgba(255,255,255,.08)
}
/* blue wash from the top-right, mirroring the hero overlay direction */
.phead::before{
  content:'';position:absolute;inset:0;z-index:-2;pointer-events:none;
  background:
    radial-gradient(120% 150% at 88% -20%,rgba(33,81,209,.55) 0%,rgba(33,81,209,.14) 42%,transparent 70%),
    linear-gradient(180deg,#0a0c12 0%,#000 100%)
}
/* faint court lines — quiet texture, not decoration */
.phead::after{
  content:'';position:absolute;inset:0;z-index:-1;pointer-events:none;opacity:.5;
  background-image:
    linear-gradient(to right,rgba(255,255,255,.05) 1px,transparent 1px),
    linear-gradient(to bottom,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:clamp(64px,7vw,104px) clamp(64px,7vw,104px);
  -webkit-mask-image:radial-gradient(85% 120% at 20% 0%,#000 0%,transparent 72%);
  mask-image:radial-gradient(85% 120% at 20% 0%,#000 0%,transparent 72%)
}
.phead__inner{position:relative;max-width:var(--maxw);margin:0 auto}
.phead__crumbs{font-size:.72rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.45);margin-bottom:1.1rem}
.phead__crumbs a{color:var(--accent-light)}
.phead__crumbs a:hover{text-decoration:underline}
.phead h1{font-size:clamp(2rem,4.6vw,3.4rem);font-weight:800;line-height:1.04;letter-spacing:-.035em;max-width:16ch;color:#fff}
.phead h1 em{color:transparent;background:linear-gradient(100deg,var(--accent-light),#c3d3fb);-webkit-background-clip:text;background-clip:text}
.phead__lead{margin-top:1.1rem;max-width:58ch;color:rgba(255,255,255,.68);font-size:1rem;line-height:1.7}
.phead__lead + .phead__lead{margin-top:.9rem}
.phead__lead strong{color:#fff;font-weight:600}
.phead__lead a{color:var(--accent-light);text-decoration:underline;text-underline-offset:3px}
.phead__actions{margin-top:1.9rem;display:flex;flex-wrap:wrap;gap:.65rem}
.phead .btn--ghost{border-color:rgba(255,255,255,.32);color:#fff;background:transparent}
.phead .btn--ghost:hover{border-color:#fff;background:rgba(255,255,255,.1)}

/* nav sits over the dark band until the user scrolls past it */
body.has-dark-head .nav--solid{background:transparent;border-color:transparent;backdrop-filter:none;-webkit-backdrop-filter:none}
body.has-dark-head .nav__logo{color:#fff}
body.has-dark-head .nav__logo span{color:var(--accent-light)}
body.has-dark-head .nav__link{color:rgba(255,255,255,.82)}
body.has-dark-head .nav__link:hover{color:#fff;background:rgba(255,255,255,.1)}
body.has-dark-head .nav__link.is-current{color:#fff}
body.has-dark-head .nav__burger span{background:#fff}
body.has-dark-head .nav.scrolled{background:rgba(255,255,255,.88);border-color:var(--line);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px)}
body.has-dark-head .nav.scrolled .nav__logo{color:var(--ink)}
body.has-dark-head .nav.scrolled .nav__logo span{color:var(--accent)}
body.has-dark-head .nav.scrolled .nav__link{color:var(--muted)}
body.has-dark-head .nav.scrolled .nav__link:hover{color:var(--ink);background:var(--bg-2)}
body.has-dark-head .nav.scrolled .nav__link.is-current{color:var(--accent)}
body.has-dark-head .nav.scrolled .nav__burger span{background:var(--ink)}
body.has-dark-head .nav.open .nav__burger span{background:var(--ink)}
@media(max-width:900px){
  body.has-dark-head .nav__links .nav__link{color:var(--ink)}
}

/* ---------- generic page section ---------- */
.psec{padding:4.2rem clamp(1.25rem,5vw,3rem);max-width:var(--maxw);margin:0 auto}
.psec--alt{background:var(--bg-2);max-width:none;border-block:1px solid var(--line)}
/* The band runs edge to edge, but its content column has to line up with the
   plain .psec sections above and below it. A plain .psec is `--maxw` wide
   INCLUDING its side padding, so the inner column has to lose that padding
   twice over — without this the banded sections sit ~2x padding wider than
   the rest of the page. */
.psec--alt > .psec__inner{max-width:calc(var(--maxw) - 2 * clamp(1.25rem,5vw,3rem));margin:0 auto;padding:0}
.psec--tight{padding-top:2.4rem;padding-bottom:2.4rem}
/* First section on a page with no dark .phead band: clear the fixed nav. */
.psec--top{padding-top:8rem}
@media(max-width:900px){.psec--top{padding-top:7rem}}
.psec__head{max-width:62ch;margin-bottom:2.2rem}
.psec__head--spaced{margin-top:3.2rem}
.psec__kicker{display:block;font-size:.68rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:var(--accent);margin-bottom:.7rem}
.psec h2{font-size:clamp(1.5rem,3vw,2.15rem);font-weight:800;line-height:1.12;letter-spacing:-.03em}
.psec__sub{margin-top:.8rem;color:var(--muted);max-width:58ch;font-size:.95rem;line-height:1.7}
.psec h3{font-size:1.05rem;font-weight:700;margin-bottom:.5rem}
/* A section whose heading is meant to sit BELOW the card titles it labels
   (Class Type over Group Class / Private Class) — the h2 drops to a quiet
   label so the cards carry the weight. */
.psec__head--minor{margin-bottom:1rem}
.psec__head--minor h2{font-size:.86rem;font-weight:700;letter-spacing:.01em;color:var(--muted)}

/* ---------- ElevenLabs-style two-column split ---------- */
/* Sticky left column of headline + copy, scrolling content on the right. */
.split{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);gap:2.5rem 3.5rem;align-items:start}
@media(max-width:900px){.split{grid-template-columns:1fr;gap:1.8rem}}
/* Sticky headline column (ElevenLabs-style split). Only on wide, tall
   viewports — on short sections a sticky aside just jitters. */
@media(min-width:901px) and (min-height:760px){
  .split__aside{position:sticky;top:92px}
}
.split__aside .psec__head{margin-bottom:1.2rem}

/* ---------- DEFINITION BLOCK (Home + About) ---------- */
.def{border-left:2px solid var(--accent);padding-left:1.4rem}
.def--feature{position:relative;border:0;padding:1.6rem;background:linear-gradient(135deg,var(--accent-soft),#fff 62%);border:1px solid rgba(33,81,209,.18);border-radius:var(--r-lg);box-shadow:var(--shadow-sm)}
.def--feature::before{content:'';position:absolute;inset:1rem auto 1rem 0;width:4px;border-radius:99px;background:var(--accent)}
.def__word{font-size:clamp(1.9rem,4vw,2.8rem);font-weight:800;letter-spacing:-.035em;line-height:1.05}
.def__phon{display:block;color:var(--faint);font-size:.88rem;font-weight:500;margin-top:.5rem;letter-spacing:.02em}
.def__phon i{font-style:normal;color:var(--muted);font-weight:600}
.def__gloss{display:block;color:var(--muted);font-size:.88rem;font-weight:500;letter-spacing:0;margin-top:.3rem}
.def__gloss em{color:var(--accent);font-weight:600}
.def__mean{margin-top:.9rem;font-size:1.05rem;line-height:1.6;font-weight:500;max-width:34ch}
.tagline{margin-top:1.8rem;font-size:clamp(1.05rem,2vw,1.4rem);font-weight:600;letter-spacing:-.02em;line-height:1.7;max-width:24ch}
.tagline em{color:var(--accent)}
.tagline--cards{display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem;max-width:none;font-size:.9rem;line-height:1.45}
.tagline--cards span{background:var(--ink);color:#fff;border-radius:var(--r-md);padding:1rem 1.05rem}
.tagline--cards span:last-child{background:var(--accent)}
@media(max-width:640px){.tagline--cards{grid-template-columns:1fr;gap:.6rem}}

/* ---------- sample-content tag ---------- */
.sample{display:inline-block;font-size:.58rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  background:#fff6e6;color:#8a5a10;border:1px solid #ecd3a3;padding:.14rem .4rem;border-radius:4px;vertical-align:middle}

/* ---------- 5 PILLARS grid ---------- */
.pillars{display:grid;grid-template-columns:repeat(5,1fr);gap:.7rem}
@media(max-width:1000px){.pillars{grid-template-columns:repeat(3,1fr)}}
@media(max-width:640px){.pillars{grid-template-columns:repeat(2,1fr)}}
@media(max-width:420px){.pillars{grid-template-columns:1fr}}
.pillar{display:flex;flex-direction:column;background:var(--panel);border:1px solid var(--line);border-radius:var(--r-lg);
  padding:1.3rem 1.2rem;transition:border-color .25s,box-shadow .25s,transform .25s var(--ease)}
.pillar:hover{transform:translateY(-3px);box-shadow:var(--shadow-sm);border-color:var(--line-2)}
.pillar__num{font-size:.66rem;font-weight:700;letter-spacing:.13em;color:var(--accent)}
.pillar h3{margin:.6rem 0 .35rem;font-size:1.02rem;font-weight:700;letter-spacing:-.015em}
.pillar__who{font-size:.8rem;color:var(--muted);line-height:1.55;flex:1}
.pillar__go{margin-top:.9rem;font-size:.76rem;font-weight:600;color:var(--accent)}

/* ---------- PATHWAYS — four equal boxes, arrow between each ---------- */

/* Desktop: one row of four identical cards with an arrow in the gap
   between each pair. align-items:stretch keeps every box the same height. */
.paths{display:flex;flex-wrap:nowrap;align-items:stretch;gap:.65rem}

.path{flex:1 1 0;min-width:0;display:flex;flex-direction:column;
  background:var(--panel);border:1px solid var(--line);border-radius:var(--r-lg);
  padding:1.25rem 1.2rem;transition:border-color .25s,box-shadow .25s,transform .25s}
.path:hover{border-color:var(--accent);box-shadow:var(--shadow-sm);transform:translateY(-2px)}

/* The stage photo runs to the card edges, so it cancels the card padding and
   carries the card's own top corners — clipping on .path itself would zero
   the automatic minimum height its cards rely on in the single-column layout.
   4/5 is the ratio the images are supplied in; the cap stops the photo
   towering on the two-column and single-column layouts, where the box crops
   rather than grows. */
.path__media{margin:-1.25rem -1.2rem 1.1rem;aspect-ratio:4/5;max-height:400px;
  overflow:hidden;background:var(--panel-2);
  border-radius:calc(var(--r-lg) - 1px) calc(var(--r-lg) - 1px) 0 0}
.path__media img{width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .5s var(--ease)}
.path:hover .path__media img{transform:scale(1.03)}
.path:target{border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-soft)}

/* The connector between two boxes — a small blue chip, so the progression
   is a designed element rather than a loose glyph in the gap. `rotate` is
   set separately from `transform` so the narrow layouts can turn the chip
   without restating the centring. */
.path__arrow{flex:0 0 auto;align-self:center;display:grid;place-items:center;
  width:1.65rem;height:1.65rem;border-radius:50%;line-height:0;
  background:var(--accent);color:#fff;
  box-shadow:0 0 0 4px var(--accent-soft)}
.path__arrow svg{display:block}

.path__num{display:grid;place-items:center;width:2rem;height:2rem;border-radius:50%;background:var(--accent);
  color:#fff;font-size:.72rem;font-weight:800;letter-spacing:.02em;flex:none}
.path h3{margin:.6rem 0 .45rem;font-size:1.2rem;font-weight:800;letter-spacing:-.025em}
.path__headline{font-size:.7rem;font-weight:800;letter-spacing:.06em;color:var(--accent);
  line-height:1.5;margin-bottom:.75rem}
.path__hook{font-size:.9rem;font-weight:700;color:var(--ink);line-height:1.55;margin-bottom:.6rem}
.path__body{font-size:.88rem;color:var(--muted);line-height:1.65}

.path__cta{margin-top:auto;padding-top:1rem;font-size:.84rem;font-weight:600;color:var(--accent);
  display:inline-flex;align-items:center;align-self:flex-start}
.path__cta:hover{text-decoration:underline}

/* Tablet: 2 x 2. The arrow between the two rows turns to point down. */
@media(max-width:1080px){
  .paths{display:grid;grid-template-columns:1fr auto 1fr;gap:1rem .65rem}
  .path:nth-of-type(1){grid-area:1/1}
  .path:nth-of-type(2){grid-area:1/3}
  .path:nth-of-type(3){grid-area:3/1}
  .path:nth-of-type(4){grid-area:3/3}
  .path__arrow:nth-of-type(1){grid-area:1/2}
  .path__arrow:nth-of-type(3){grid-area:3/2}
  .path__arrow:nth-of-type(2){grid-area:2/1/3/4;justify-self:center;rotate:90deg}
}

/* Mobile: a single column, every arrow pointing down. */
@media(max-width:700px){
  .paths{display:flex;flex-direction:column;flex-wrap:nowrap;gap:.65rem}
  .path__arrow{rotate:90deg;margin:.15rem 0}
}

@media(prefers-reduced-motion:reduce){
  .path:hover{transform:none}
  .path:hover .path__media img{transform:none}
}

/* ---------- CLASS TYPE TABS (ElevenLabs-style) ----------
   A soft rounded rail holds two tabs (Group / Private), each with a coloured
   status dot. The active tab lifts onto a white chip. The detail block below
   swaps to match the active tab and is swipeable left/right. */
.ctabs{background:var(--bg-2);border:1px solid var(--line);border-radius:calc(var(--r-lg) + 8px);
  padding:.5rem;box-shadow:var(--shadow-sm);margin-bottom:1.4rem}
.ctabs__rail{display:flex;gap:.4rem;overflow-x:auto;scrollbar-width:none}
.ctabs__rail::-webkit-scrollbar{display:none}
.ctabs__tab{flex:1 1 0;min-width:max-content;display:inline-flex;align-items:center;justify-content:center;
  gap:.6rem;padding:.85rem 1.4rem;border:0;border-radius:calc(var(--r-lg) + 2px);cursor:pointer;
  background:transparent;color:var(--muted);font:inherit;font-weight:700;font-size:1rem;letter-spacing:-.01em;
  white-space:nowrap;transition:background .25s var(--ease),color .25s var(--ease),box-shadow .25s var(--ease)}
.ctabs__tab:hover{color:var(--ink)}
.ctabs__tab.is-active{background:var(--panel);color:var(--ink);box-shadow:var(--shadow-sm)}
.ctabs__tab:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
/* Status dots — blue for group, orange for private, echoing the class colours. */
.ctabs__dot{width:11px;height:11px;border-radius:50%;flex:0 0 auto;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.06)}
.ctabs__dot--group{background:radial-gradient(circle at 30% 25%,#7db4ff,#1e6bff 70%)}
.ctabs__dot--private{background:radial-gradient(circle at 30% 25%,#ffc27d,#ff7a1e 70%)}

/* Intro row at the top of each detail panel. */
.showcase__intro{margin-bottom:1.4rem}
.showcase__intro h3{font-size:1.4rem;font-weight:800;letter-spacing:-.03em;margin-bottom:.4rem}
.showcase__intro p{color:var(--muted);font-size:.95rem;line-height:1.6;max-width:60ch}

/* Swipeable pages: arrows flank a viewport that clips a 2-page track. The
   track slides horizontally (translateX) so the section reads as a real
   swiping page, in sync with the tabs above. */
.ctabs__pages{display:flex;align-items:flex-start;gap:.5rem}
.ctabs__viewport{flex:1 1 auto;min-width:0;overflow:hidden;transition:height .45s var(--ease)}
.ctabs__track{display:flex;align-items:flex-start;width:100%;
  transition:transform .45s var(--ease);will-change:transform}
/* Each page is exactly one viewport wide. flex-basis in % is unreliable when
   the track/viewport are themselves flex items, so pin the width to 100% of
   the viewport instead — this guarantees content can never spill past the
   clip edge and get cut off horizontally. */
.ctabs__page{flex:0 0 100%;width:100%;min-width:0;box-sizing:border-box;padding:.2rem .3rem}

/* Prev/next arrows. Disabled at the ends. */
.ctabs__arrow{flex:0 0 auto;margin-top:.4rem;display:grid;place-items:center;
  width:44px;height:44px;border-radius:50%;background:var(--panel);border:1px solid var(--line);
  color:var(--ink);cursor:pointer;box-shadow:var(--shadow-sm);
  transition:transform .2s var(--ease),border-color .2s,color .2s,opacity .2s}
.ctabs__arrow:hover{border-color:var(--line-2);transform:scale(1.08)}
.ctabs__arrow:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
.ctabs__arrow:disabled{opacity:.3;cursor:default;transform:none}

/* Detail block that swaps with the active tab. Both pages are always in the
   DOM (side by side in the track); the viewport clips to show one. */
.orbdetail{animation:showcaseFade .35s var(--ease)}
@keyframes showcaseFade{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}
@media(prefers-reduced-motion:reduce){
  .orbdetail,.ctabs__tab,.ctabs__track{transition:none;animation:none}
}
@media(max-width:560px){
  .ctabs{border-radius:var(--r-lg)}
  .ctabs__tab{padding:.75rem 1rem;font-size:.92rem}
  .showcase__intro h3{font-size:1.2rem}
  .ctabs__arrow{width:38px;height:38px}
  /* Tighten the page gutters so the panel (and its cards) never runs wider
     than the viewport once the flanking arrows take their share of the row. */
  .ctabs__pages{gap:.35rem}
  .ctabs__page{padding:.2rem 0}
}

/* Private detail content.
   Every grid track here is minmax(0,...) and every item gets min-width:0. A
   grid item's default automatic minimum size is its min-content width, so a
   single unbreakable child (a nowrap button, a long venue name) would push
   the whole track wider than the carousel viewport — which clips — and slice
   every card in the panel off at the same right edge. Pinning the minimums to
   0 lets the tracks follow the viewport instead of the content. */
.showcase__private{display:grid;grid-template-columns:minmax(0,1fr);gap:1.4rem;min-width:0}
.showcase__private > *{min-width:0}
.priv__list{list-style:none;display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:.8rem;min-width:0}
.priv__list li{background:var(--panel-2);border:1px solid var(--line);border-radius:var(--r-md);
  min-width:0;padding:1rem 1.1rem;transition:border-color .2s,box-shadow .2s,transform .2s var(--ease)}
.priv__list li:hover{border-color:var(--line-2);box-shadow:var(--shadow-sm);transform:translateY(-2px)}
.priv__list b{display:block;font-size:.95rem;font-weight:700;letter-spacing:-.01em;margin-bottom:.3rem}
.priv__list span{display:block;font-size:.85rem;color:var(--muted);line-height:1.6}
.priv__cta{display:flex;flex-wrap:wrap;gap:1rem;align-items:center;justify-content:space-between;
  padding:1.2rem 1.4rem;border-radius:var(--r-lg);
  background:linear-gradient(120deg,var(--accent-soft),#fff 70%);border:1px solid rgba(33,81,209,.18)}
.priv__cta b{display:block;font-size:1rem;font-weight:800;letter-spacing:-.02em;margin-bottom:.15rem}
.priv__cta span{display:block;font-size:.85rem;color:var(--muted);line-height:1.55}
.priv__cta .btn{flex:none}

@media(max-width:820px){
  .priv__list{grid-template-columns:minmax(0,1fr)}
}
/* On phones the CTA row can't fit its text and button side by side inside the
   narrowed carousel viewport, so stack them and let the button span full width. */
@media(max-width:560px){
  .priv__cta{flex-direction:column;align-items:stretch;padding:1.1rem 1.2rem;text-align:left}
  /* Buttons are white-space:nowrap globally, and "Enquire about private
     classes" is ~261px on one line — wider than the panel column once the
     flanking arrows have taken their share of a phone screen. It is already
     full-width and centred here, so let this label wrap onto two lines. */
  .priv__cta .btn{width:100%;text-align:center;white-space:normal}
}

/* ---------- CLASS LOCATIONS ---------- */
.showcase__locations .sched__controls{margin-top:0}
.sched__controls{display:flex;flex-wrap:wrap;gap:.45rem .8rem;align-items:center;margin-bottom:1.2rem}
.hub__count{padding-left:0;margin-left:auto;font-size:.82rem;color:var(--faint);font-weight:600}
.sched__filter{background:#fff;border:1px solid var(--line);color:var(--muted);font-family:inherit;
  font-size:.82rem;font-weight:600;padding:.5rem .9rem;min-height:40px;border-radius:99px;cursor:pointer;transition:.2s}
.sched__filter:hover{border-color:var(--line-2);color:var(--ink)}
.sched__filter.is-active{background:var(--accent);border-color:var(--accent);color:#fff}
/* Masonry-style packing via CSS columns. Venue cards vary a lot in height
   (1 session vs 8), so a normal grid leaves big gaps under short cards. Column
   flow lets each card take only the height it needs and packs the next card
   directly beneath, filling the whitespace. */
.sched__list{column-width:320px;column-gap:.9rem}
.sched__list > *{break-inside:avoid;margin-bottom:.9rem}
.vcard{background:var(--panel);border:1px solid var(--line);border-radius:var(--r-lg);padding:1.1rem 1.2rem;
  transition:border-color .25s,box-shadow .25s;display:flex;flex-direction:column;
  width:100%;-webkit-column-break-inside:avoid;break-inside:avoid}
.vcard:hover{border-color:var(--line-2);box-shadow:var(--shadow-sm)}
.vcard__top{display:flex;justify-content:space-between;gap:.8rem;align-items:baseline;flex-wrap:wrap}
.vcard h3{font-size:1.15rem;font-weight:800;margin:0;letter-spacing:-.02em}
.vcard__region{font-size:.62rem;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--accent);
  background:var(--accent-soft);padding:.18rem .45rem;border-radius:4px}
/* A single area can hold more than one venue (e.g. Aljunied = SBH + SBS).
   Each venue block sits under the area header, separated by a hairline. */
.vcard__venue{margin-top:.9rem}
.vcard__venue + .vcard__venue{border-top:1px solid var(--line);padding-top:.9rem}
.vcard__venuename{font-size:.9rem;font-weight:700;letter-spacing:-.01em;margin:0}
.vcard__addr{font-size:.82rem;color:var(--muted);margin:.25rem 0 .7rem;line-height:1.55}
.vcard__addr a{color:var(--muted);text-decoration:underline;text-underline-offset:2px;text-decoration-color:var(--line)}
.vcard__addr a:hover,.vcard__addr a:focus-visible{color:var(--accent);text-decoration-color:currentColor}
.vcard__sessions{list-style:none;display:flex;flex-direction:column;gap:.3rem}
.vcard__sessions li{display:flex;flex-wrap:wrap;gap:.45rem;align-items:center;font-size:.84rem;
  border-top:1px solid var(--line);padding-top:.4rem}
.vcard__sessions li:first-child{border-top:0;padding-top:0}
.vcard__day{font-weight:700;min-width:5.2rem}
.vcard__time{color:var(--muted)}
.vcard__lvl{margin-left:auto;font-size:.62rem;font-weight:700;padding:.16rem .45rem;border-radius:4px;letter-spacing:.04em}
.vcard__lvl--essentials{background:#e8eefc;color:#17369b}
.vcard__lvl--emergence{background:#e7f5ec;color:#1a6b3c}
.vcard__actions{display:flex;flex-wrap:wrap;gap:.5rem 1rem;align-items:center;margin-top:.9rem}
.vcard__book{font-size:.78rem;font-weight:600;color:var(--accent)}
.vcard__book:hover{text-decoration:underline}
.sched__empty{column-span:all;padding:2rem;text-align:center;color:var(--faint);font-size:.88rem}

/* ---------- CAMPS ---------- */
.camp{background:var(--panel);border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden}
.camp__head{background:var(--ink);color:#fff;padding:1.4rem 1.6rem}
.camp__head h3{font-size:1.25rem;font-weight:800;margin-bottom:.3rem;letter-spacing:-.025em}
.camp__dates{font-size:.88rem;color:rgba(255,255,255,.72);font-weight:500}
.camp__body{padding:1.5rem 1.6rem}
.camp__facts{display:grid;grid-template-columns:repeat(auto-fit,minmax(130px,1fr));gap:.9rem;margin-bottom:1.3rem}
.camp__fact span{display:block;font-size:.66rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--faint);margin-bottom:.2rem}
.camp__fact b{font-size:.88rem;font-weight:700}
.camp__price{display:flex;flex-direction:column;gap:.4rem;margin-bottom:1.3rem;padding:.9rem 1rem;
  background:var(--panel-2);border:1px solid var(--line);border-radius:var(--r-md)}
.camp__price div{display:flex;justify-content:space-between;gap:1rem;font-size:.85rem}
.camp__price span{color:var(--muted)}
.camp__price b{font-weight:700}
.camp__venues{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:1.3rem}
.camp__venues li{list-style:none;font-size:.78rem;background:var(--accent-soft);color:var(--accent-2);
  border:1px solid rgba(33,81,209,.16);padding:.3rem .7rem;border-radius:99px;font-weight:600}
.camp__bring{list-style:none;display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:1.3rem}
.camp__bring li{font-size:.76rem;background:var(--panel-2);border:1px solid var(--line);padding:.3rem .65rem;border-radius:99px;color:var(--muted)}
.timetable{list-style:none;display:flex;flex-direction:column}
.timetable li{display:grid;grid-template-columns:6rem 1fr;gap:1rem;padding:.65rem 0;border-bottom:1px solid var(--line);font-size:.85rem}
.timetable li:last-child{border-bottom:0}
.timetable b{color:var(--accent);font-weight:700}
/* Photo mosaic: 3/2 tiles, the shape the camp photos are shot in, with the
   opening tile two columns and two rows — at the section's full width that
   is a five-column grid, so a seven-photo camp fills two rows exactly. */
.gallery{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:.65rem;grid-auto-flow:dense}
.gallery__ph{aspect-ratio:4/3;background:var(--panel-2);border:1px dashed var(--line-2);border-radius:var(--r-md);
  display:flex;align-items:center;justify-content:center;text-align:center;padding:1rem;color:var(--faint);font-size:.8rem;line-height:1.5}
/* A gallery thumbnail: a button, because it opens the lightbox. */
.gallery__item{display:block;width:100%;aspect-ratio:3/2;padding:0;overflow:hidden;
  border:1px solid var(--line);border-radius:var(--r-md);background:var(--panel-2);
  cursor:pointer;transition:border-color .25s,box-shadow .25s,transform .25s var(--ease)}
.gallery__item img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.gallery__item:hover{border-color:var(--line-2);box-shadow:var(--shadow-sm);transform:translateY(-2px)}
.gallery__item:hover img{transform:scale(1.04)}
.gallery__item:focus-visible{outline:2px solid var(--accent);outline-offset:3px}
.gallery__item--lead{grid-column:span 2;grid-row:span 2;aspect-ratio:auto}
/* Two-up on a phone; the lead tile keeps its own shape across the row. */
@media(max-width:640px){
  .gallery{grid-template-columns:1fr 1fr}
  .gallery__item--lead{grid-row:auto;aspect-ratio:3/2}
}
@media(prefers-reduced-motion:reduce){
  .gallery__item:hover{transform:none}
  .gallery__item:hover img{transform:none}
}

/* ---------- EVENTS ---------- */
.etypes{display:grid;grid-template-columns:repeat(3,1fr);gap:.9rem}
@media(max-width:940px){.etypes{grid-template-columns:1fr}}
.etype{background:var(--panel);border:1px solid var(--line);border-radius:var(--r-lg);padding:1.5rem 1.4rem;display:flex;flex-direction:column;transition:border-color .25s,box-shadow .25s}
.etype:hover{border-color:var(--line-2);box-shadow:var(--shadow-sm)}
.etype__num{font-size:.66rem;font-weight:700;letter-spacing:.14em;color:var(--accent)}
.etype h3{margin:.55rem 0 .7rem;font-size:1.25rem;font-weight:800;letter-spacing:-.025em}
.etype__what{font-size:.88rem;color:var(--muted);margin-bottom:1rem;line-height:1.7}
.etype__prov{list-style:none;display:flex;flex-direction:column;gap:.3rem;font-size:.82rem;color:var(--muted);margin-bottom:1.2rem}
.etype__prov li{padding-left:1.1rem;position:relative;line-height:1.5}
.etype__prov li::before{content:'✓';position:absolute;left:0;color:var(--accent);font-weight:700}
.etype .btn{margin-top:auto;align-self:flex-start}

/* service suite */
/* Header sits on one line beside the CTA rather than in a tall side column. */
.suitebar{display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;
  gap:1rem 1.5rem;margin-bottom:1.1rem}
.suitebar__head{max-width:56ch}
.suitebar__head h2{margin-bottom:.3rem}
.suitebar__sub{font-size:.88rem;color:var(--muted);line-height:1.55}
.suitebar__cta{flex:none}
@media(max-width:680px){.suitebar{align-items:stretch}.suitebar__cta{width:100%}}

/* Four across in one shallow band instead of a 2x2 block. */
.suite{display:grid;grid-template-columns:repeat(4,1fr);gap:.55rem}
.suite__item{position:relative;overflow:hidden;background:var(--panel);border:1px solid var(--line);
  border-radius:var(--r-md);padding:.85rem .9rem .85rem;transition:border-color .25s,box-shadow .25s,transform .25s var(--ease)}
.suite__item::before{content:'';position:absolute;inset:0 auto 0 0;width:3px;background:var(--accent)}
.suite__item:hover{transform:translateY(-2px);border-color:var(--line-2);box-shadow:var(--shadow-sm)}
.suite__num{display:block;font-size:.6rem;font-weight:800;letter-spacing:.13em;color:var(--accent);margin-bottom:.3rem}
.suite__item h3{font-size:.88rem;font-weight:800;letter-spacing:-.02em;margin-bottom:.2rem}
.suite__item p{font-size:.76rem;color:var(--muted);line-height:1.45}
/* Never collapse to a single tall column — 2-up keeps the band shallow. */
@media(max-width:900px){.suite{grid-template-columns:repeat(2,1fr)}}
@media(max-width:420px){.suite{grid-template-columns:repeat(2,1fr);gap:.45rem}
  .suite__item{padding:.75rem .7rem}.suite__item p{font-size:.72rem}}

.ecards{display:grid;grid-template-columns:repeat(auto-fill,minmax(290px,1fr));gap:.8rem}
.ecard{background:var(--panel);border:1px solid var(--line);border-radius:var(--r-lg);padding:1.25rem 1.3rem;
  transition:border-color .25s,box-shadow .25s}
.ecard:hover{border-color:var(--line-2);box-shadow:var(--shadow-sm)}
.ecard--feature{border-color:rgba(33,81,209,.35);background:linear-gradient(180deg,var(--accent-soft),#fff 55%)}
.ecard__type{font-size:.6rem;font-weight:700;letter-spacing:.11em;text-transform:uppercase;color:#fff;
  background:var(--accent);padding:.2rem .5rem;border-radius:4px;display:inline-block;margin-bottom:.7rem}
.ecard h3{font-size:1rem;font-weight:700;margin-bottom:.5rem;line-height:1.35;letter-spacing:-.015em}
.ecard__meta{list-style:none;display:flex;flex-direction:column;gap:.25rem;font-size:.8rem;color:var(--muted);margin-bottom:.7rem}
.ecard__meta b{color:var(--ink);font-weight:600}
.ecard p{font-size:.84rem;color:var(--muted);line-height:1.6}
.ecard__scope{list-style:none;display:flex;flex-direction:column;gap:.25rem;font-size:.82rem;color:var(--muted);margin-top:.7rem}
.ecard__scope li{padding-left:1rem;position:relative;line-height:1.5}
.ecard__scope li::before{content:'·';position:absolute;left:.25rem;color:var(--accent);font-weight:800}

/* event photo showcase */
.eshowcase{display:grid;grid-template-columns:repeat(3,1fr);gap:.9rem}
.eshow{overflow:hidden;background:var(--panel);border:1px solid var(--line);border-radius:var(--r-lg);
  transition:transform .25s var(--ease),box-shadow .25s,border-color .25s}
.eshow:hover{transform:translateY(-3px);box-shadow:var(--shadow-sm);border-color:var(--line-2)}
.eshow__photo,.eshow__thumb,.eshow__more{font:inherit;cursor:pointer}
.eshow__photo{display:block;width:100%;border:0;background:transparent;padding:0}
.eshow__cover{width:100%;aspect-ratio:4/3;object-fit:cover;background:var(--panel-2);display:block}
.eshow__body{padding:1rem 1.05rem 1.1rem}
.eshow__type{display:inline-block;margin-bottom:.55rem;font-size:.6rem;font-weight:800;letter-spacing:.11em;
  text-transform:uppercase;color:var(--accent);background:var(--accent-soft);padding:.18rem .48rem;border-radius:4px}
.eshow h3{font-size:1rem;font-weight:800;letter-spacing:-.02em;line-height:1.35;margin-bottom:.35rem}
.eshow p{font-size:.8rem;color:var(--muted);line-height:1.5;margin-bottom:.85rem}
.eshow__thumbs{display:grid;grid-template-columns:repeat(3,1fr);gap:.38rem}
.eshow__thumb{border:0;background:transparent;padding:0;border-radius:8px;overflow:hidden}
.eshow__thumb img{width:100%;aspect-ratio:1/1;object-fit:cover;background:var(--panel-2);display:block;transition:transform .25s var(--ease)}
.eshow__thumb:hover img,.eshow__photo:hover img{transform:scale(1.03)}
.eshow__photo{position:relative}
.eshow__badge{position:absolute;right:.6rem;bottom:.6rem;padding:.28rem .55rem;border-radius:99px;
  background:rgba(8,10,16,.72);color:#fff;font-size:.66rem;font-weight:800;letter-spacing:.02em;
  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);pointer-events:none}
.eshow__thumb{position:relative}
.eshow__thumb--more img{filter:brightness(.5)}
.eshow__thumbmore{position:absolute;inset:0;display:grid;place-items:center;color:#fff;
  font-size:.82rem;font-weight:800;letter-spacing:-.01em;pointer-events:none}
.eshow__more{margin-top:.8rem;border:0;background:transparent;color:var(--accent);font-size:.78rem;font-weight:700;padding:0}
.eshow__more:hover{text-decoration:underline}
@media(max-width:1000px){.eshowcase{grid-template-columns:repeat(2,1fr)}}
@media(max-width:620px){.eshowcase{grid-template-columns:1fr}}
/* ---------- FULL-SCREEN GALLERY VIEWER ---------- */
.lightbox{position:fixed;inset:0;z-index:1000;background:rgba(8,10,16,.985);backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);
  display:grid;grid-template-rows:auto minmax(0,1fr) auto;gap:.5rem;
  padding:clamp(.6rem,2vw,1.1rem)}
.lightbox[hidden]{display:none}
body.has-lightbox{overflow:hidden}

.lightbox__bar{display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:.15rem .3rem;color:#fff}
.lightbox__meta{display:flex;align-items:baseline;gap:.7rem;min-width:0}
.lightbox__title{font-size:.92rem;font-weight:700;letter-spacing:-.01em;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.lightbox__count{flex:none;font-size:.78rem;font-weight:700;color:rgba(255,255,255,.6);
  font-variant-numeric:tabular-nums}

.lightbox__stage{display:grid;grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;gap:clamp(.4rem,1.5vw,1rem);min-height:0}
.lightbox__figure{margin:0;height:100%;display:grid;place-items:center;min-height:0}
.lightbox__img{display:block;max-width:100%;max-height:100%;object-fit:contain;
  border-radius:var(--r-md);box-shadow:0 24px 80px rgba(0,0,0,.5);background:rgba(255,255,255,.04)}

.lightbox__close,.lightbox__nav{border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.1);color:#fff;border-radius:99px;font-family:inherit;
  font-weight:800;cursor:pointer;transition:background .2s,border-color .2s}
.lightbox__close:hover,.lightbox__nav:hover{background:rgba(255,255,255,.2);border-color:rgba(255,255,255,.45)}
.lightbox__close{flex:none;padding:.5rem .85rem;font-size:.78rem}
.lightbox__nav{width:2.8rem;height:2.8rem;font-size:1.9rem;line-height:1;display:grid;place-items:center;flex:none}
.lightbox--single .lightbox__nav{visibility:hidden}

/* Thumbnail strip — jump straight to any photo in the set. */
.lightbox__strip{display:flex;gap:.35rem;overflow-x:auto;padding:.3rem .1rem;
  scrollbar-width:thin;scrollbar-color:rgba(255,255,255,.3) transparent}
.lightbox__strip::-webkit-scrollbar{height:6px}
.lightbox__strip::-webkit-scrollbar-thumb{background:rgba(255,255,255,.28);border-radius:99px}
.lightbox--single .lightbox__strip{display:none}
.lightbox__stripitem{flex:none;width:64px;height:48px;padding:0;border:2px solid transparent;
  border-radius:6px;overflow:hidden;background:rgba(255,255,255,.06);cursor:pointer;
  opacity:.55;transition:opacity .2s,border-color .2s}
.lightbox__stripitem img{width:100%;height:100%;object-fit:cover;display:block}
.lightbox__stripitem:hover{opacity:.85}
.lightbox__stripitem.is-active{opacity:1;border-color:#fff}
.lightbox__close:focus-visible,.lightbox__nav:focus-visible,.lightbox__stripitem:focus-visible{
  outline:2px solid #fff;outline-offset:2px}

@media(max-width:700px){
  .lightbox__stage{grid-template-columns:1fr}
  .lightbox__nav{position:absolute;top:50%;transform:translateY(-50%);z-index:2;
    width:2.4rem;height:2.4rem;font-size:1.6rem}
  .lightbox__nav--prev{left:.5rem}
  .lightbox__nav--next{right:.5rem}
  .lightbox__stripitem{width:52px;height:40px}
}
@media(prefers-reduced-motion:reduce){
  .lightbox__close,.lightbox__nav,.lightbox__stripitem{transition:none}
}

/* previous-events list, grouped by type */
.elog{display:grid;gap:1.8rem}
.elog__group h3{font-size:.72rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--accent);margin-bottom:.9rem}
.elog__list{list-style:none;display:flex;flex-direction:column}
.elog__list li{display:grid;grid-template-columns:1fr auto;gap:.4rem 1.5rem;padding:.85rem 0;border-top:1px solid var(--line);align-items:baseline}
.elog__list li:last-child{border-bottom:1px solid var(--line)}
.elog__name{font-size:.92rem;font-weight:600;line-height:1.4}
.elog__where{font-size:.8rem;color:var(--faint);text-align:right;white-space:nowrap}
@media(max-width:620px){
  .elog__list li{grid-template-columns:1fr}
  .elog__where{text-align:left}
}

.partners{display:flex;flex-wrap:wrap;justify-content:center;gap:1rem}
.partners__chip{display:grid;place-items:center;min-width:170px;height:96px;padding:0 1.6rem;background:var(--panel);
  border:1px dashed var(--line-2);border-radius:var(--r-md);color:var(--faint);font-size:.78rem;font-weight:600;text-align:center}
/* A real mark gets a solid tile; the dashed border stays for the partners we
   only have a name for. Wide marks are limited by the chip width, so the
   height allowance is set for the near-square ones. */
.partners__chip--logo{border-style:solid;border-color:var(--line);
  transition:border-color .25s,transform .25s,box-shadow .25s}
.partners__chip--logo:hover{border-color:var(--line-2);transform:translateY(-3px);
  box-shadow:0 8px 24px rgba(0,0,0,.08)}
/* Logos always show in full colour. */
.partners img{max-height:60px;max-width:100%;width:auto;object-fit:contain}

/* ---------- COACHES ---------- */
.coachgrid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:.8rem}

/* ---------- coach rail: one row that scrolls sideways ----------
   The team is long enough that a grid wraps into four thin rows. As a rail
   it stays one row and the reader pulls it along; .rail__nav gives mouse
   users the same affordance a trackpad or touch already has. */
.rail{position:relative}
.coachgrid--rail{display:flex;grid-template-columns:none;flex-wrap:nowrap;
  overflow-x:auto;overscroll-behavior-x:contain;scroll-snap-type:x proximity;
  scroll-behavior:smooth;
  /* The cards lift on hover — the top padding keeps that inside the scroller. */
  padding:4px 0 .9rem;margin-top:-4px;
  scrollbar-width:thin;scrollbar-color:var(--line-2) transparent}
.coachgrid--rail::-webkit-scrollbar{height:8px}
.coachgrid--rail::-webkit-scrollbar-track{background:transparent}
.coachgrid--rail::-webkit-scrollbar-thumb{background:var(--line-2);border-radius:99px}
.coachgrid--rail > .coach{flex:0 0 200px;scroll-snap-align:start}
.coachgrid--rail:focus-visible{outline:2px solid var(--accent);outline-offset:4px;border-radius:var(--r-md)}

/* 100px = half a card's square photo, so the arrows sit level with the faces. */
.rail__nav{position:absolute;top:100px;transform:translateY(-50%);z-index:2;
  width:2.4rem;height:2.4rem;border-radius:50%;display:grid;place-items:center;
  background:#fff;border:1px solid var(--line-2);color:var(--ink);
  box-shadow:var(--shadow-sm);cursor:pointer;transition:opacity .2s,background .2s,border-color .2s}
.rail__nav:hover{background:var(--bg-2);border-color:var(--ink)}
.rail__nav--prev{left:-.75rem}
.rail__nav--next{right:-.75rem}
.rail__nav[disabled]{opacity:0;pointer-events:none}
/* Touch devices scroll the rail directly — the buttons would only cover cards. */
@media(hover:none),(max-width:700px){.rail__nav{display:none}}
@media(prefers-reduced-motion:reduce){.coachgrid--rail{scroll-behavior:auto}}
.coach{display:block;background:var(--panel);border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;
  transition:transform .25s var(--ease),box-shadow .25s,border-color .25s}
.coach:hover{transform:translateY(-3px);box-shadow:var(--shadow-sm);border-color:var(--line-2)}
.coach--static:hover{transform:none;box-shadow:none;border-color:var(--line)}
.coach__img{aspect-ratio:1/1;overflow:hidden;background:var(--panel-2)}
/* The headshots are already square-cropped by tools/build-coach-photos.sh,
   so `cover` has nothing left to trim — no focal-point nudge needed. */
.coach__img img{width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .5s var(--ease)}
.coach:hover .coach__img img{transform:scale(1.04)}
.coach__initials{display:grid;place-items:center;width:100%;height:100%;font-size:2rem;font-weight:800;letter-spacing:.04em;color:var(--accent);background:var(--accent-soft)}
.coach__body{padding:.85rem .95rem 1rem}
.coach__body h3{font-size:.92rem;font-weight:700;margin-bottom:.15rem;letter-spacing:-.015em}
.coach__role{font-size:.74rem;color:var(--muted);line-height:1.4}
.coach__cert{display:inline-block;margin-top:.45rem;font-size:.6rem;font-weight:700;letter-spacing:.07em;
  text-transform:uppercase;color:var(--accent);background:var(--accent-soft);padding:.16rem .4rem;border-radius:4px}
.coach__more{margin-top:.6rem;font-size:.72rem;font-weight:600;color:var(--accent)}

.profile{display:grid;grid-template-columns:300px 1fr;gap:2.4rem;align-items:start}
@media(max-width:860px){.profile{grid-template-columns:1fr;gap:1.6rem}}
.profile__photo{border-radius:var(--r-lg);overflow:hidden;border:1px solid var(--line);position:sticky;top:96px}
@media(max-width:860px){.profile__photo{position:static;max-width:300px}}
/* height:auto is load-bearing — the generated markup carries width/height
   attributes, and that presentational height would otherwise beat
   aspect-ratio and stretch the portrait back out. */
.profile__photo img{width:100%;height:auto;aspect-ratio:1/1;object-fit:cover;object-position:center}
.profile__meta{list-style:none;display:flex;flex-direction:column;gap:.6rem;margin:1.4rem 0;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:1.1rem 0}
.profile__meta li{display:flex;gap:1rem;justify-content:space-between;font-size:.84rem}
.profile__meta span{color:var(--faint);font-weight:600}
.profile__meta b{font-weight:700;text-align:right}
.profile__bio{font-size:.98rem;color:var(--muted);line-height:1.75;max-width:60ch}
.profile__bio+.profile__bio{margin-top:1rem}
.profile__achievements{display:grid;gap:.55rem;margin:0;max-width:60ch;padding-left:1.1rem;color:var(--muted);line-height:1.6}

/* ---------- NEWS ARTICLES ---------- */
.articles{display:grid;grid-template-columns:repeat(auto-fill,minmax(min(100%,290px),1fr));gap:.8rem}
.article{display:flex;flex-direction:column;background:var(--panel);border:1px solid var(--line);border-radius:var(--r-lg);
  padding:1.3rem;transition:border-color .25s,box-shadow .25s,transform .25s var(--ease)}
.article:hover{transform:translateY(-3px);box-shadow:var(--shadow-sm);border-color:var(--line-2)}
.article__cat{font-size:.62rem;font-weight:700;letter-spacing:.11em;text-transform:uppercase;color:var(--accent);margin-bottom:.6rem}
.article h3{font-size:1.02rem;font-weight:700;line-height:1.35;margin-bottom:.5rem;letter-spacing:-.015em}
.article p{font-size:.84rem;color:var(--muted);line-height:1.6;margin-bottom:1rem}
.article__foot{margin-top:auto;display:flex;gap:.7rem;font-size:.72rem;color:var(--faint);font-weight:600}
.article__foot{justify-content:space-between;flex-wrap:wrap}
.article h3{color:var(--ink)}
.article:hover h3{color:var(--accent)}
.article:focus-visible{outline:2px solid var(--accent);outline-offset:3px}
@media(prefers-reduced-motion:reduce){.article:hover{transform:none}}

/* ---------- one article page ---------- */
.post{max-width:66ch}
.post__meta{display:flex;flex-wrap:wrap;gap:.5rem .9rem;font-size:.78rem;font-weight:600;color:var(--faint);margin-bottom:2rem}
.post__cat{color:var(--accent);text-transform:uppercase;letter-spacing:.11em;font-size:.68rem;font-weight:700}
.post p{font-size:1rem;color:var(--muted);line-height:1.8;margin-bottom:1.15rem}
.post h2{font-size:1.25rem;font-weight:800;letter-spacing:-.02em;color:var(--ink);margin:2.2rem 0 .9rem}
.post blockquote{margin:1.6rem 0;padding:.2rem 0 .2rem 1.2rem;border-left:3px solid var(--accent)}
.post blockquote p{font-size:1.05rem;color:var(--ink);font-weight:600;line-height:1.7;margin:0}
.post blockquote p+p{margin-top:.8rem}
.post__back{display:inline-flex;align-items:center;margin-top:2.6rem;font-size:.84rem;font-weight:600;color:var(--accent)}
.post__back:hover{text-decoration:underline}

/* ---------- LEAD CAPTURE FORMS ---------- */
.lead{background:var(--panel);border:1px solid var(--line);border-radius:var(--r-lg);padding:1.7rem 1.6rem}
.lead--dark{background:var(--ink);border:0;color:#fff}
.lead--dark h3{color:#fff}
.lead--dark > p{color:rgba(255,255,255,.62)}
.lead--dark .lead__field span{color:rgba(255,255,255,.6)}
.lead--dark input,.lead--dark select,.lead--dark textarea{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.2);color:#fff}
.lead--dark input::placeholder,.lead--dark textarea::placeholder{color:rgba(255,255,255,.4)}
.lead--dark .lead__consent{color:rgba(255,255,255,.65)}
.lead--dark .lead__consent a{color:#fff;text-decoration:underline}
.lead h3{font-size:1.15rem;font-weight:800;margin-bottom:.4rem;letter-spacing:-.025em}
.lead > p{color:var(--muted);font-size:.88rem;margin-bottom:1.3rem;max-width:52ch;line-height:1.65}
.lead__grid{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}
@media(max-width:640px){.lead__grid{grid-template-columns:1fr}}
.lead__field{display:flex;flex-direction:column;gap:.3rem}
.lead__field--wide{grid-column:1/-1}
.lead__field span{font-size:.7rem;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--faint)}
.lead input,.lead select,.lead textarea{font-family:inherit;font-size:.9rem;padding:.7rem .85rem;border-radius:var(--r-md);min-height:44px;
  border:1px solid var(--line-2);background:#fff;color:var(--ink);width:100%}
.lead input:focus,.lead select:focus,.lead textarea:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-soft)}
.lead textarea{resize:vertical;min-height:90px}
.lead__consent{grid-column:1/-1;display:flex;gap:.65rem;align-items:flex-start;font-size:.82rem;color:var(--muted);line-height:1.55}
.lead__consent input{width:18px;height:18px;min-height:0;flex:0 0 auto;margin-top:.15rem}
.lead__actions{grid-column:1/-1;display:flex;flex-wrap:wrap;gap:.6rem;align-items:center;margin-top:.3rem}
.lead__status{font-size:.85rem;font-weight:600}
.lead__status--ok{color:#1a6b3c}
.lead__status--err{color:#b3261e}
.lead--inline{display:flex;gap:.6rem;flex-wrap:wrap;align-items:flex-end}
.lead--inline .lead__field{flex:1 1 230px}

/* ---------- CONTACT ---------- */
.contact{display:grid;grid-template-columns:1fr 320px;gap:1.4rem;align-items:start}
@media(max-width:900px){.contact{grid-template-columns:1fr}}
.contact__side{display:flex;flex-direction:column;gap:.7rem}
.contact-actions{display:grid;grid-template-columns:1.2fr 1fr;gap:.8rem}
.contact-actions .ccard--hero{grid-row:span 2;background:linear-gradient(145deg,var(--ink),#143da3);color:#fff;border-color:transparent}
.contact-actions .ccard--hero p{color:rgba(255,255,255,.68)}
.contact-actions .ccard--hero .btn--ghost{border-color:rgba(255,255,255,.3);color:#fff;background:transparent}
.ccard{background:var(--panel);border:1px solid var(--line);border-radius:var(--r-lg);padding:1.2rem 1.3rem}
.ccard__label{display:block;margin-bottom:.55rem;font-size:.62rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--accent)}
.ccard--hero .ccard__label{color:var(--accent-light)}
.ccard h3{font-size:.95rem;font-weight:700;margin-bottom:.35rem;overflow-wrap:anywhere}
.ccard p{font-size:.85rem;color:var(--muted);line-height:1.6;margin-bottom:.8rem}
.ccard a.btn{width:100%;justify-content:center}
@media(max-width:760px){.contact-actions{grid-template-columns:1fr}.contact-actions .ccard--hero{grid-row:auto}}

/* ---------- FAQ ---------- */
.faq{display:flex;flex-direction:column;gap:.45rem;max-width:74ch}
.faq details{background:var(--panel);border:1px solid var(--line);border-radius:var(--r-md);overflow:hidden}
.faq summary{cursor:pointer;padding:.9rem 1.1rem;font-weight:600;font-size:.92rem;list-style:none;min-height:50px;
  display:flex;justify-content:space-between;gap:1rem;align-items:center}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:'+';color:var(--accent);font-size:1.2rem;font-weight:400;line-height:1}
.faq details[open] summary::after{content:'−'}
.faq details[open] summary{border-bottom:1px solid var(--line)}
.faq__a{padding:.9rem 1.1rem;font-size:.88rem;color:var(--muted);line-height:1.7}

/* ---------- misc ---------- */
.cols2{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:start}
.cols2--single{grid-template-columns:1fr;max-width:38rem}
@media(max-width:860px){.cols2{grid-template-columns:1fr;gap:1.6rem}}
.prose p{color:var(--muted);margin-bottom:.9rem;max-width:62ch;font-size:.95rem;line-height:1.75}
.prose p:last-child{margin-bottom:0}
.prose strong{color:var(--ink);font-weight:600}
.grid-auto{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:.8rem}

/* ---------- ÉLEVER PERFORMANCE LAB (black page) ---------- */
body.is-dark{background:#000;color:#fff}
body.is-dark .nav,body.is-dark .nav--solid{background:transparent;border-color:transparent;backdrop-filter:none;-webkit-backdrop-filter:none}
body.is-dark .nav.scrolled{background:rgba(0,0,0,.7);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-color:rgba(255,255,255,.09)}
body.is-dark .nav__logo,body.is-dark .nav.scrolled .nav__logo{color:#fff}
/* The page is black at every scroll position, so the logo stays the white
   mark — .scrolled must not swap in the black one the light pages use. */
body.is-dark .nav__logo__img--dark,body.is-dark .nav.scrolled .nav__logo__img--dark{opacity:0}
body.is-dark .nav__logo__img--light,body.is-dark .nav.scrolled .nav__logo__img--light{opacity:1}
body.is-dark .nav__logo span,body.is-dark .nav.scrolled .nav__logo span{color:var(--accent-light)}
body.is-dark .nav__link,body.is-dark .nav.scrolled .nav__link{color:rgba(255,255,255,.7)}
body.is-dark .nav__link:hover,body.is-dark .nav.scrolled .nav__link:hover{color:#fff;background:rgba(255,255,255,.08)}
body.is-dark .nav__link.is-current,body.is-dark .nav.scrolled .nav__link.is-current{color:#fff}
body.is-dark .nav__burger span,body.is-dark .nav.scrolled .nav__burger span{background:#fff}
body.is-dark .nav.open .nav__burger span{background:var(--ink)}
body.is-dark .footer{border-top:1px solid rgba(255,255,255,.09)}
/* Mobile: the burger panel is a solid white sheet, even here. Without these
   the white `body.is-dark` link colours above carry into the open panel and
   the menu reads as blank. `.nav.open` is deliberate on two counts: it is
   exactly the state where the panel exists, and this page pins the nav to
   `.scrolled`, whose is-dark rules would otherwise win on specificity. */
@media(max-width:900px){
  body.is-dark .nav.open .nav__links .nav__link{color:var(--ink)}
  body.is-dark .nav.open .nav__links .nav__link:hover{color:var(--ink);background:transparent}
  body.is-dark .nav.open .nav__links .nav__link.is-current{color:var(--accent)}
}

.lab{min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;
  padding:9rem clamp(1.25rem,5vw,3rem) 6rem;background:#000;color:#fff}
.lab__mark{font-size:.68rem;font-weight:700;letter-spacing:.32em;text-transform:uppercase;color:var(--accent-light);margin-bottom:2.2rem}
.lab__title{font-size:clamp(2.6rem,11vw,8rem);font-weight:800;line-height:.95;letter-spacing:-.04em;text-transform:uppercase;color:#fff}
.lab__label{margin-top:3.2rem;font-size:.66rem;font-weight:700;letter-spacing:.3em;text-transform:uppercase;color:rgba(255,255,255,.42)}
.lab__addr{font-style:normal;margin-top:.9rem;font-size:.92rem;line-height:1.9;color:rgba(255,255,255,.72)}
.lab__addr a{color:var(--accent-light);text-decoration:underline;text-underline-offset:3px}
.lab__label + .lab__foot{margin-top:.9rem}
.lab__foot{margin-top:3rem;display:flex;gap:.6rem;flex-wrap:wrap;justify-content:center}
.lab__social{display:grid;place-items:center;width:2.9rem;height:2.9rem;border-radius:50%;
  color:rgba(255,255,255,.72);border:1px solid rgba(255,255,255,.22);
  transition:color .2s,border-color .2s,background .2s}
.lab__social:hover{color:#fff;border-color:#fff;background:rgba(255,255,255,.08)}
.lab__social:focus-visible{outline:2px solid var(--accent-light);outline-offset:3px}
.lab .btn--ghost{border-color:rgba(255,255,255,.28);color:#fff;background:transparent}
.lab .btn--ghost:hover{border-color:#fff;background:rgba(255,255,255,.08)}

/* =====================================================================
   RACKET RATINGS + RECREATIONAL PLAY GROUPS  (SG Hub → Groups tab)
   ===================================================================== */
.rr{margin-bottom:3rem}
.rr__head{max-width:68ch;margin-bottom:1.4rem}
.rr__eyebrow{display:block;font-size:.66rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;
  color:var(--accent);margin-bottom:.6rem}
.rr__head h3{font-size:clamp(1.35rem,2.6vw,1.9rem);font-weight:800;letter-spacing:-.03em;margin-bottom:.6rem}
.rr__lead{color:var(--muted);font-size:.92rem;line-height:1.7}
.rr__metrics{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1.2rem}
.rr__metric{background:var(--accent-soft);border:1px solid rgba(33,81,209,.16);border-radius:var(--r-md);
  padding:.55rem .85rem;display:flex;flex-direction:column;gap:.05rem;min-width:145px}
.rr__metric b{font-size:.8rem;font-weight:700;color:var(--accent-2)}
.rr__metric span{font-size:.74rem;color:var(--muted)}

.rr__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:.7rem}
@media(max-width:1000px){.rr__grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.rr__grid{grid-template-columns:1fr}}
.rrcard{display:flex;flex-direction:column;background:var(--panel);border:1px solid var(--line);
  border-radius:var(--r-lg);padding:1.2rem 1.15rem;transition:transform .25s var(--ease),box-shadow .25s,border-color .25s}
.rrcard:hover{transform:translateY(-3px);box-shadow:var(--shadow-sm);border-color:var(--line-2)}
.rrcard--primary{border-color:rgba(33,81,209,.4);background:linear-gradient(180deg,var(--accent-soft),var(--panel) 58%)}
.rrcard__icon{font-size:1.3rem;line-height:1;margin-bottom:.6rem}
.rrcard h4{font-size:.95rem;font-weight:700;margin-bottom:.4rem;display:flex;flex-wrap:wrap;gap:.4rem;align-items:center}
.rrcard__flag{font-size:.56rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  background:var(--accent);color:#fff;padding:.14rem .38rem;border-radius:4px}
.rrcard p{font-size:.82rem;color:var(--muted);line-height:1.55;margin-bottom:.9rem}
.rrcard__go{margin-top:auto;font-size:.74rem;font-weight:600;color:var(--accent)}

.rr__foot{display:flex;flex-wrap:wrap;gap:.9rem 1.5rem;align-items:center;margin-top:1.4rem;
  padding-top:1.3rem;border-top:1px solid var(--line)}
.rr__note{flex:1 1 300px;font-size:.76rem;color:var(--faint);line-height:1.6;max-width:68ch}

.grp{margin-bottom:2.8rem}
.grp__head{max-width:68ch;margin-bottom:1.2rem}
.grp__head h3{font-size:clamp(1.25rem,2.4vw,1.65rem);font-weight:800;letter-spacing:-.03em;margin-bottom:.5rem}
.grp__grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:.7rem}
.grpcard{background:var(--panel);border:1px solid var(--line);border-radius:var(--r-lg);padding:1.1rem 1.15rem}
.grpcard__top{display:flex;justify-content:space-between;gap:.7rem;align-items:baseline;margin-bottom:.8rem}
.grpcard__top h4{font-size:.94rem;font-weight:700;line-height:1.35}
.grpcard__region{flex:0 0 auto;font-size:.6rem;font-weight:700;letter-spacing:.09em;text-transform:uppercase;
  color:var(--accent);background:var(--accent-soft);padding:.18rem .45rem;border-radius:4px}
.grpcard__meta{display:flex;flex-direction:column;gap:.38rem;margin:0}
.grpcard__meta > div{display:grid;grid-template-columns:4.4rem 1fr;gap:.65rem;font-size:.8rem;
  border-top:1px solid var(--line);padding-top:.38rem}
.grpcard__meta > div:first-child{border-top:0;padding-top:0}
.grpcard__meta dt{font-size:.62rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:var(--faint);padding-top:.15rem}
.grpcard__meta dd{margin:0;color:var(--muted)}
.grpcard__rr{display:inline-block;margin-top:.85rem;font-size:.74rem;font-weight:600;color:var(--accent)}
.grpcard__rr:hover{text-decoration:underline}

.grpempty{grid-column:1/-1;background:var(--panel-2);border:1px dashed var(--line-2);border-radius:var(--r-lg);
  padding:2rem 1.5rem;text-align:center}
.grpempty p{color:var(--muted);font-size:.88rem;max-width:54ch;margin:0 auto 1.1rem;line-height:1.65}

.grp__add{display:flex;flex-wrap:wrap;gap:.9rem;align-items:center;justify-content:space-between;
  margin-top:1.1rem;background:var(--panel-2);border:1px solid var(--line);border-radius:var(--r-lg);padding:1.1rem 1.3rem}
.grp__add b{display:block;font-size:.9rem;font-weight:700;margin-bottom:.2rem}
.grp__add span{font-size:.82rem;color:var(--muted);max-width:58ch;display:block;line-height:1.6}

@media(max-width:560px){
  .psec{padding:3rem 1.25rem}
  .phead{padding:7rem 1.25rem 2.4rem}
  .phead h1{max-width:none}
  .sched__controls{align-items:stretch}
  #schedFilters{display:flex;flex-wrap:wrap;gap:.45rem;width:100%}
  .sched__filter{flex:1 1 120px}
  .vcard__lvl{margin-left:0}
  .timetable li{grid-template-columns:1fr;gap:.2rem}
  .profile__meta li{display:block}
  .profile__meta span,.profile__meta b{display:block;text-align:left}
  .profile__photo{max-width:100%}
}

/* =====================================================================
   SG BADMINTON HUB — structure layer
   The hub previously opened with three stacked intros (page header, a
   floating SEO paragraph, then a second full headline) before the user
   reached anything usable. It now leads with one dark header carrying
   the proof-points, and the tabs act as the real entry point.
   ===================================================================== */

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0 0 0 0);clip-path:inset(50%);white-space:nowrap;border:0}

/* ---------- header stat row ---------- */
.phead__stats{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:2rem}
.phead__stats > div{
  flex:0 1 auto;min-width:136px;padding:.85rem 1.2rem;
  background:linear-gradient(180deg,rgba(33,81,209,.22),rgba(255,255,255,.04));
  border:1px solid rgba(143,171,245,.28);
  border-radius:var(--r-md);backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px)
}
.phead__stats dt{font-size:.62rem;font-weight:700;letter-spacing:.13em;text-transform:uppercase;color:var(--accent-light)}
.phead__stats dd{margin:.25rem 0 0;font-size:1.45rem;font-weight:800;letter-spacing:-.03em;color:#fff;line-height:1}
@media(max-width:560px){
  .phead__stats > div{flex:1 1 calc(50% - .3rem);min-width:0}
  .phead__stats dd{font-size:1.25rem}
}

/* ---------- hub shell ---------- */
.hub{padding:0 0 4.5rem}

/* Tabs become a real segmented control that sticks under the nav, so the
   section you are in is always visible while scrolling a long card list. */
/* --nav-h keeps the sticky offset in step with the fixed nav so the tab
   bar parks directly beneath it rather than sliding underneath. */
.hub{--nav-h:62px}
.hub__tabs{
  position:sticky;top:var(--nav-h);z-index:80;
  max-width:none;margin:0 0 1.6rem;padding:.85rem clamp(1.25rem,5vw,3rem);
  gap:.4rem;background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line)
}
/* centre the tab row on the same grid as the rest of the page */
.hub__tabs{display:flex;justify-content:flex-start}
.hub__tabs-inner{max-width:var(--maxw);margin:0 auto;width:100%;display:flex;gap:.4rem;flex-wrap:wrap}

.hub__tab{
  padding:.6rem 1.15rem;min-height:42px;border-radius:100px;
  border:1px solid var(--line);background:#fff;color:var(--muted);
  font-family:inherit;font-size:.86rem;font-weight:600;cursor:pointer;
  transition:background .2s var(--ease),color .2s,border-color .2s
}
.hub__tab:hover{color:var(--ink);border-color:var(--line-2);background:var(--bg-2)}
.hub__tab.is-active{background:var(--ink);color:#fff;border-color:var(--ink)}

/* ---------- controls: one bordered toolbar, not loose parts ---------- */
/* The toolbar is a bordered card that still lines up with the page grid:
   the gutter comes from a wrapper's padding, not a width calculation, so
   it cannot overflow the viewport on narrow screens. */
.hub__controls{
  max-width:var(--maxw);margin:0 auto 1.1rem;
  padding:1.15rem clamp(1rem,2.5vw,1.4rem);
  background:var(--bg-2);border:1px solid var(--line);border-radius:var(--r-lg);
  gap:1rem 1.4rem;align-items:end
}
.hub__toolbar{
  max-width:var(--maxw);margin:0 auto;
  padding-left:clamp(1.25rem,5vw,3rem);padding-right:clamp(1.25rem,5vw,3rem)
}
.hub__search input{background:#fff}
.hub__count{padding-bottom:1rem;font-weight:600;color:var(--muted)}
/* Inside the groups panel the parent section already applies the page
   gutter, so the count must not add a second one. */
.grp .hub__count{max-width:none;padding-left:0;padding-right:0}

/* ---------- cards ---------- */
.hub__grid{gap:1rem}
.hcard{padding:1.35rem 1.4rem}
/* accent rail on all cards */
.hcard{position:relative;overflow:hidden}
.hcard::before{
  content:'';position:absolute;left:0;top:0;bottom:0;width:3px;
  background:var(--accent);opacity:1;transition:opacity .25s
}
.hcard:hover{border-color:var(--line-2);box-shadow:var(--shadow-sm)}


/* ---------- how-to-book cards ---------- */
.hub__book{gap:1rem}
.bcard{display:flex;flex-direction:column}
.bcard__list{margin-top:auto;padding-top:1rem}
.bcard h3{margin-top:.45rem}

/* ---------- notes ---------- */
.hub__note{margin-top:1.6rem}
.hub__note + .hub__note{margin-top:.7rem}
.hub__note strong{color:var(--muted);font-weight:700}

/* ---------- book / groups panels get the page gutter back ---------- */
.hub__panel > .rr,.hub__panel > .grp,.hub__panel > .hub__groups,.hub__panel > .teamhub{
  max-width:var(--maxw);margin-left:auto;margin-right:auto;
  padding-left:clamp(1.25rem,5vw,3rem);padding-right:clamp(1.25rem,5vw,3rem)
}
.hub__panel > .hub__groups{padding-top:0}
.teamhub__head{max-width:68ch;margin-bottom:1.4rem}
.teamhub__head h3{font-size:clamp(1.35rem,2.6vw,1.9rem);font-weight:800;letter-spacing:-.03em;margin-bottom:.6rem}

/* ---- player cards ---- */
.teamhub__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.8rem;margin-bottom:1rem}
.tcard{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.15rem 1.2rem;
  display:flex;flex-direction:column;transition:border-color .25s,box-shadow .25s,transform .25s}
.tcard:hover{border-color:var(--accent);box-shadow:var(--shadow-sm);transform:translateY(-2px)}
.tcard__top{display:flex;align-items:flex-start;justify-content:space-between;gap:.9rem;margin-bottom:.7rem}
.tcard__disc{display:block;font-size:.6rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;
  color:var(--accent);margin-bottom:.35rem}
.tcard__name{font-size:1.05rem;font-weight:800;letter-spacing:-.025em;line-height:1.25}

/* Ranking badge — the number people come to this panel for. */
.tcard__rank{flex:none;text-align:center;min-width:4.6rem;padding:.45rem .5rem;border-radius:var(--r-md);
  background:var(--accent-soft);border:1px solid rgba(33,81,209,.16)}
.tcard__rank b{display:block;font-size:1.25rem;font-weight:900;letter-spacing:-.04em;color:var(--accent);line-height:1.1}
.tcard__rank span{display:block;margin-top:.15rem;font-size:.55rem;font-weight:700;line-height:1.3;
  letter-spacing:.03em;text-transform:uppercase;color:var(--muted)}
.tcard__rank--none{background:var(--panel-2);border-color:var(--line)}
.tcard__rank--none b{color:var(--faint)}

.tcard__note{font-size:.83rem;color:var(--muted);line-height:1.6;margin-bottom:.7rem}
.tcard__highlights{list-style:none;margin:0 0 .9rem;padding:0;display:flex;flex-wrap:wrap;gap:.3rem}
.tcard__highlights li{font-size:.66rem;font-weight:700;color:var(--muted);background:var(--panel-2);
  border:1px solid var(--line);border-radius:99px;padding:.2rem .5rem}
.tcard__links{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:auto;padding-top:.2rem}
.tcard__links a{font-size:.75rem;font-weight:700;color:var(--accent);background:var(--accent-soft);
  border:1px solid rgba(33,81,209,.16);border-radius:99px;padding:.4rem .65rem}
.tcard__links a:hover{background:#fff;border-color:var(--accent)}

/* ---- next competitions + news, side by side ---- */
.teamhub__cols{display:grid;grid-template-columns:1fr 1fr;gap:.8rem;margin-bottom:1rem}
.tpanel{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.15rem 1.2rem;
  display:flex;flex-direction:column}
.tpanel__title{font-size:.95rem;font-weight:800;letter-spacing:-.02em;margin-bottom:.35rem}
.tpanel__lead{font-size:.79rem;color:var(--muted);line-height:1.55;margin-bottom:.9rem}
.tpanel__more{margin-top:auto;padding-top:.8rem;font-size:.76rem;font-weight:700;color:var(--accent)}
.tpanel__more:hover{text-decoration:underline}

.tnext{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.45rem}
.tnext__item{display:grid;grid-template-columns:1fr auto;gap:.15rem .7rem;padding-bottom:.45rem;
  border-bottom:1px dotted var(--line)}
.tnext__item:last-child{border-bottom:0;padding-bottom:0}
.tnext__when{grid-column:1;font-size:.68rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:var(--accent)}
.tnext__name{grid-column:1;font-size:.86rem;font-weight:700;letter-spacing:-.015em}
.tnext__grade{grid-column:2;grid-row:1/3;align-self:center;flex:none;font-size:.58rem;letter-spacing:.08em;
  text-transform:uppercase;color:var(--faint);border:1px solid var(--line);padding:.16rem .45rem;border-radius:99px}
.tnext__item.is-live .tnext__when{color:#13a65b}
.tnext__empty{font-size:.82rem;color:var(--muted);line-height:1.6}

.tnews{display:flex;flex-wrap:wrap;gap:.4rem}
.tnews__chip{font-size:.75rem;font-weight:700;color:var(--ink);background:var(--panel-2);
  border:1px solid var(--line);border-radius:99px;padding:.42rem .7rem;transition:.2s}
.tnews__chip:hover{border-color:var(--accent);color:var(--accent);background:#fff}

.teamhub__live{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.25rem}
.teamhub__live h4{font-size:1rem;font-weight:800;letter-spacing:-.02em;margin-bottom:.45rem}
.teamhub__live p{font-size:.84rem;color:var(--muted);line-height:1.6}
.teamhub__links{display:flex;flex-wrap:wrap;gap:.55rem;margin-top:1rem}
.teamhub__live{display:flex;justify-content:space-between;align-items:center;gap:1rem;
  background:linear-gradient(135deg,var(--accent-soft),#fff)}

@media(max-width:1000px){.teamhub__grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:900px){
  .teamhub__cols{grid-template-columns:1fr}
  .teamhub__live{display:block}
  .teamhub__links{margin-top:1rem}
}
@media(max-width:620px){.teamhub__grid{grid-template-columns:1fr}}
@media(prefers-reduced-motion:reduce){.tcard:hover{transform:none}}

@media(max-width:900px){
  .hub__tabs{position:static;top:auto;padding:1rem clamp(1.25rem,5vw,3rem)}
  .hub__tabs .hub__tab{flex:1 1 auto;justify-content:center;text-align:center}
}
