/* ==========================================================================
   VORAX ATHLETICS — website
   Direction: cool stone ground, white cards on tight technical radii, one
   royal accent, and product photography always sitting on its own constant
   light plate so the studio background never fights the layout.
   Type: Archivo (expanded, uppercase) for statements, Assistant for the rest.
   The tokens below are shared with the iOS app so the two read as one brand.
   ========================================================================== */

/* -- tokens ------------------------------------------------------------- */
:root {
  color-scheme: light;

  --royal:       #334FB4;
  --royal-deep:  #263990;
  --royal-ink:   #22357C;
  --royal-soft:  #E6EAF7;

  --ink:         #121212;
  --ink-2:       #33363D;
  --muted:       #6B7080;
  --muted-2:     #9AA0AD;

  --ground:      #EFEFED;
  --surface:     #FFFFFF;
  --surface-2:   #F6F6F5;
  --surface-sunk:#EAEAE8;
  --hairline:    #E4E4E2;
  --hairline-2:  #D3D3D0;

  --plate:       #F1F1F0;
  --night:       #0E0F0A;      /* sampled from the hero photograph */
  --night-2:     #171812;

  --alert:       #E5484D;
  --go:          #1F9D55;
  --go-soft:     #E0F4E9;
  --on-royal:    #FFFFFF;
  --on-ink:      #FFFFFF;

  --chrome:      rgba(239,239,237,.82);
  --chrome-line: rgba(18,18,18,.09);
  --scrim:       rgba(10,11,14,.46);
  --press:       rgba(18,18,18,.05);

  --edge: inset 0 1px 0 rgba(255,255,255,.75);
  --shadow-1: 0 1px 1px rgba(20,24,40,.04), 0 3px 8px -3px rgba(20,24,40,.07), var(--edge);
  --shadow-2: 0 2px 4px rgba(20,24,40,.05), 0 14px 30px -10px rgba(20,24,40,.14), var(--edge);
  --shadow-3: 0 30px 70px -24px rgba(16,20,34,.34), 0 12px 28px -12px rgba(16,20,34,.18);

  --r-card: 16px;
  --r-lg:   22px;
  --r-chip: 10px;
  --r-pill: 999px;

  --gut: clamp(20px, 4.4vw, 64px);
  --maxw: 1500px;
  --sec: clamp(76px, 9vw, 136px);
  --head-h: 68px;

  --ease: cubic-bezier(.16,1,.3,1);
  --ease-io: cubic-bezier(.65,0,.35,1);

  --ui: "Assistant", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: "Archivo", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

[data-theme="dark"] {
  color-scheme: dark;
  --royal:       #7A99F7;
  --royal-deep:  #A8BEFF;
  --royal-ink:   #C3D2FF;
  --royal-soft:  #1B2340;

  --ink:         #F3F3F1;
  --ink-2:       #C8C9C6;
  --muted:       #969AA5;
  --muted-2:     #6E7280;

  --ground:      #0A0B0E;
  --surface:     #16181E;
  --surface-2:   #1D1F26;
  --surface-sunk:#212430;
  --hairline:    #272A33;
  --hairline-2:  #373B47;

  --plate:       #EDEDEB;      /* photography keeps its light plate in dark */
  --alert:       #FF6B6B;
  --go:          #3ED285;
  --go-soft:     #0E2E1E;
  --on-royal:    #0A0F20;
  --on-ink:      #101216;      /* --ink inverts in dark, so its foreground must too */

  --chrome:      rgba(10,11,14,.8);
  --chrome-line: rgba(255,255,255,.1);
  --scrim:       rgba(0,0,0,.64);
  --press:       rgba(255,255,255,.06);

  --edge: inset 0 1px 0 rgba(255,255,255,.05);
  --shadow-1: 0 1px 2px rgba(0,0,0,.5), var(--edge);
  --shadow-2: 0 14px 30px -10px rgba(0,0,0,.66), var(--edge);
  --shadow-3: 0 30px 70px -24px rgba(0,0,0,.8);
}

/* -- reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
/* No global smooth scrolling: it would animate the scroll-to-top on every
   route change. Smooth is opted into per call where it is actually wanted. */
html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--head-h) + 20px);
  overflow-x: clip;
  /* reserve the scrollbar gutter so route changes never reflow the grid */
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* `clip`, not `hidden`: `hidden` would make body its own scroll container,
     which can oscillate the scrollbar against an auto-fill grid and lock up
     layout. `clip` contains overflow without creating a scroll container. */
  overflow-x: clip;
}
body.locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--royal); color: #fff; }

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

.skip {
  position: fixed; top: 8px; left: 8px; z-index: 300;
  background: var(--ink); color: var(--on-ink);
  padding: 10px 16px; border-radius: var(--r-chip);
  transform: translateY(-180%);
}
.skip:focus { transform: none; }

.tnum { font-variant-numeric: tabular-nums; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* -- type scale --------------------------------------------------------- */
.display {
  font-family: var(--display);
  font-variation-settings: "wdth" 112, "wght" 700;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -.015em;
  white-space: pre-line;
}
/* capped against viewport height too, so short windows never eat the fold */
.d-xl { font-size: min(clamp(36px, 5.8vw, 78px), 13vh); }
.d-lg { font-size: clamp(32px, 5.2vw, 70px); }
.d-md { font-size: clamp(26px, 3.3vw, 44px); }
.d-sm { font-size: clamp(19px, 2vw, 27px); font-variation-settings: "wdth" 108, "wght" 700; }

.eyebrow {
  font-family: var(--display);
  font-variation-settings: "wdth" 104, "wght" 650;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--muted);
}
.eyebrow.accent { color: var(--royal); }

.lede { font-size: clamp(16px, 1.3vw, 19px); color: var(--ink-2); line-height: 1.62; max-width: 56ch; }
.small { font-size: 13px; color: var(--muted); }

/* -- layout ------------------------------------------------------------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.sec { padding-block: var(--sec); }
.sec-tight { padding-block: clamp(48px, 5.5vw, 84px); }

.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 3.4vw, 52px);
}
.sec-head .t { display: grid; gap: 12px; }
.rule { height: 1px; background: var(--hairline); border: 0; }

/* -- buttons ------------------------------------------------------------ */
.btn {
  --bg: var(--ink); --fg: var(--on-ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg); color: var(--fg);
  border-radius: var(--r-pill);
  padding: 0 26px; height: 50px;
  font-family: var(--display);
  font-variation-settings: "wdth" 104, "wght" 660;
  text-transform: uppercase; font-size: 12.5px; letter-spacing: .09em;
  white-space: nowrap;
  box-shadow: var(--shadow-1);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background-color .25s, color .25s, opacity .25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn:active { transform: translateY(0) scale(.985); }
.btn[disabled] { opacity: .42; pointer-events: none; }
.btn.royal { --bg: var(--royal); --fg: var(--on-royal); }
.btn.ghost { --bg: transparent; --fg: var(--ink); box-shadow: inset 0 0 0 1.4px var(--hairline-2); }
.btn.ghost:hover { --bg: var(--surface); box-shadow: inset 0 0 0 1.4px var(--ink), var(--shadow-1); }
.btn.light { --bg: rgba(255,255,255,.12); --fg: #fff; box-shadow: inset 0 0 0 1.4px rgba(255,255,255,.34); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.btn.light:hover { --bg: #fff; --fg: var(--night); box-shadow: none; }
.btn.block { width: 100%; }
.btn.lg { height: 56px; padding-inline: 34px; font-size: 13px; }

.link-u {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display);
  font-variation-settings: "wdth" 104, "wght" 640;
  text-transform: uppercase; font-size: 12px; letter-spacing: .1em;
  padding-bottom: 3px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1.4px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .45s var(--ease), gap .3s var(--ease);
}
.link-u:hover { background-size: 0 1.4px; gap: 13px; }
.link-u svg { transition: transform .4s var(--ease); }
.link-u:hover svg { transform: translateX(3px); }

.icon-btn {
  position: relative;
  width: 40px; height: 40px; border-radius: var(--r-pill);
  display: grid; place-items: center; color: var(--ink);
  transition: background-color .22s, transform .3s var(--ease);
}
.icon-btn:hover { background: var(--press); }
.icon-btn:active { transform: scale(.93); }
.icon-btn .count {
  position: absolute; top: 1px; right: 0;
  min-width: 17px; height: 17px; padding: 0 5px;
  border-radius: var(--r-pill);
  background: var(--royal); color: var(--on-royal);
  font-size: 10.5px; font-weight: 700; line-height: 17px; text-align: center;
  box-shadow: 0 0 0 2px var(--chrome);
  font-variant-numeric: tabular-nums;
}
.icon-btn .dot {
  position: absolute; top: 6px; right: 7px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--royal); box-shadow: 0 0 0 2px var(--chrome);
}

.chip {
  display: inline-flex; align-items: center; gap: 7px;
  height: 34px; padding: 0 14px;
  border-radius: var(--r-pill);
  background: var(--surface); color: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--hairline);
  font-size: 13.5px; font-weight: 600;
  white-space: nowrap;
  transition: .22s;
}
.chip:hover { color: var(--ink); box-shadow: inset 0 0 0 1px var(--hairline-2); }
.chip.on { background: var(--ink); color: var(--on-ink); box-shadow: none; }

.tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 6px;
  background: var(--surface-sunk); color: var(--muted);
}
.tag.royal { background: var(--royal-soft); color: var(--royal-ink); }
[data-theme="dark"] .tag.royal { color: var(--royal-deep); }

/* -- announcement bar --------------------------------------------------- */
.announce {
  position: relative;
  background: var(--ink); color: var(--on-ink);
  height: 38px; display: flex; align-items: center; overflow: hidden;
}
.announce[hidden] { display: none; }
.announce-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: slide 44s linear infinite;
  will-change: transform;
}
.announce:hover .announce-track { animation-play-state: paused; }
.announce-track span {
  display: inline-flex; align-items: center; gap: 46px;
  padding-right: 46px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  opacity: .92;
}
.announce-track span::after { content: "\2022"; opacity: .4; }
@keyframes slide { to { transform: translateX(-50%); } }
.announce-x {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; display: grid; place-items: center;
  color: var(--on-ink); opacity: .6; border-radius: 50%;
}
.announce-x:hover { opacity: 1; background: rgba(255,255,255,.12); }
@media (prefers-reduced-motion: reduce) { .announce-track { animation: none; } }

/* -- header ------------------------------------------------------------- */
.head {
  position: sticky; top: 0; z-index: 90;
  background: var(--chrome);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background-color .3s, box-shadow .3s;
}
.head.stuck { border-bottom-color: var(--chrome-line); box-shadow: 0 6px 24px -14px rgba(16,20,34,.3); }
.head-in {
  max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gut);
  height: var(--head-h);
  display: flex; align-items: center; gap: 14px;
}

.brand { display: block; flex: none; }
.brand img { width: 128px; height: auto; }
[data-theme="dark"] .brand img { filter: invert(1) brightness(1.9); }

.burger { display: none; flex-direction: column; gap: 5px; }
.burger span { width: 18px; height: 1.6px; background: currentColor; border-radius: 2px; transition: .3s var(--ease); }

.mainnav { display: flex; align-items: center; gap: 2px; margin-left: 22px; flex: 1; }
.navitem { position: relative; }
.navitem > a {
  display: block; padding: 10px 14px; border-radius: var(--r-chip);
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  transition: color .2s, background-color .2s;
}
.navitem > a:hover { color: var(--ink); background: var(--press); }
.navitem > a.on { color: var(--ink); }
.navitem > a.on::after {
  content: ""; display: block; height: 1.6px; background: var(--ink);
  margin: 6px 14px -8px; border-radius: 2px;
}

.head-actions { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.i-moon { display: none; }
[data-theme="dark"] .i-sun { display: none; }
[data-theme="dark"] .i-moon { display: block; }

/* mega menu */
.mega {
  position: absolute; top: calc(100% + 14px); left: -20px;
  width: min(760px, 78vw);
  background: var(--surface); color: var(--ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-3), inset 0 0 0 1px var(--hairline);
  padding: 22px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: none; }
.mega-card { display: grid; gap: 10px; border-radius: var(--r-card); }
.mega-card .ph {
  aspect-ratio: 1 / 1.08; border-radius: var(--r-card); overflow: hidden; background: var(--plate);
}
.mega-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.mega-card:hover .ph img { transform: scale(1.05); }
.mega-card b { font-size: 14px; font-weight: 700; display: block; }
.mega-card small { font-size: 12px; color: var(--muted); line-height: 1.4; display: block; }

/* -- hero --------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--night);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-in {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut);
  padding-top: clamp(38px, 5vw, 78px);
  position: relative; z-index: 2;
}
/* the headline carries its own line break, so it needs no character cap */
.hero .display { color: #fff; }
.hero-sub { color: rgba(255,255,255,.72); font-size: clamp(15px, 1.2vw, 18px); max-width: 44ch; margin-top: clamp(14px, 1.6vw, 22px); line-height: 1.6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(20px, 2.4vw, 32px); }
.hero .eyebrow { color: rgba(255,255,255,.6); margin-bottom: clamp(12px, 1.6vw, 20px); display: block; }

/* the photograph bleeds out of the dark ground it was shot on */
.hero-shot { position: relative; margin-top: clamp(20px, 2.6vw, 44px); }
/* Keeps the natural 2.75:1 ratio when there is room, and crops from the top
   when there is not — the phone on the lid and the athlete both sit high in
   the frame, so the floor is the only safe thing to lose. */
.hero-shot img {
  width: 100%; display: block;
  height: auto;
  max-height: min(54vh, 520px);
  object-fit: cover; object-position: center top;
}
.hero-shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--night) 0%, transparent 22%, transparent 74%, rgba(14,15,10,.55) 100%);
  pointer-events: none;
}
.hero-badges {
  position: absolute; left: var(--gut); right: var(--gut); bottom: clamp(16px, 2.4vw, 30px);
  z-index: 3;
  display: flex; flex-wrap: wrap; gap: 8px;
  max-width: var(--maxw); margin-inline: auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.1);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.92);
  white-space: nowrap;
}
.hero-badge svg { opacity: .8; flex: none; }

/* Short viewports (small laptops, lots of browser chrome): compress the
   hero so the photograph still reaches the fold. */
@media (min-width: 721px) and (max-height: 760px) {
  .hero .d-xl { font-size: min(clamp(36px, 4.4vw, 64px), 11vh); }
  .hero-in { padding-top: 28px; }
  .hero-sub { margin-top: 12px; font-size: 15px; }
  .hero-cta { margin-top: 18px; }
  .hero .eyebrow { margin-bottom: 10px; }
  .btn.lg { height: 48px; }
  .hero-shot { margin-top: 18px; }
  .hero-shot img { max-height: 46vh; }
}

/* -- marquee ------------------------------------------------------------ */
.marquee {
  background: var(--ink); color: var(--on-ink);
  padding-block: 16px; overflow: hidden; display: flex;
}
.marquee-track { display: flex; white-space: nowrap; animation: slide 38s linear infinite; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 34px; padding-right: 34px;
  font-family: var(--display);
  font-variation-settings: "wdth" 116, "wght" 700;
  text-transform: uppercase; font-size: clamp(18px, 2.4vw, 34px); letter-spacing: -.01em;
}
.marquee-track span::after {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--royal); flex: none;
}
[data-theme="dark"] .marquee-track span::after { background: var(--royal); }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* -- product card ------------------------------------------------------- */
.grid-p {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
  gap: clamp(14px, 1.5vw, 26px) clamp(12px, 1.2vw, 20px);
}
.pcard { position: relative; display: block; }
/* positioning context for the overlay controls: the photograph, not the card */
.pcard .frame { position: relative; }
.pcard .shot {
  /* it is an <a>/<span>, so it must be blockified or aspect-ratio is ignored
     and the absolutely positioned shots collapse to zero height */
  display: block;
  position: relative; aspect-ratio: 1 / 1.16;
  border-radius: var(--r-card); overflow: hidden;
  background: var(--plate);
  box-shadow: var(--shadow-1);
}
.pcard .shot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .55s var(--ease), transform .8s var(--ease);
}
.pcard .shot .b { opacity: 0; }
.pcard:hover .shot .a { opacity: 0; }
.pcard:hover .shot .b { opacity: 1; }
.pcard:hover .shot img { transform: scale(1.035); }
.pcard .shot.one:hover img { transform: scale(1.045); }

.pcard .meta { padding: 13px 3px 0; display: grid; gap: 4px; }
.pcard .n {
  font-family: var(--display);
  font-variation-settings: "wdth" 104, "wght" 660;
  text-transform: uppercase; font-size: 12.5px; letter-spacing: .045em;
  line-height: 1.3;
}
.pcard .t { font-size: 13px; color: var(--muted); }
.pcard .pr { font-size: 14px; font-weight: 700; margin-top: 2px; }
.pcard .swatches { display: flex; gap: 5px; margin-top: 7px; }
.pcard .sw { width: 12px; height: 12px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.16); }
.pcard .more { font-size: 11px; color: var(--muted-2); align-self: center; }

.pcard .fav {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  /* No backdrop-filter here: these repeat once per card, and a grid of 25
     products would cost ~50 blurred backdrop layers. Product shots always
     sit on the constant light --plate, so a solid tint reads the same. */
  background: rgba(255,255,255,.92);
  box-shadow: 0 2px 8px rgba(16,20,34,.12);
  color: #121212;
  opacity: 0; transform: scale(.85);
  transition: .3s var(--ease);
}
.pcard:hover .fav, .pcard .fav.on, .pcard .fav:focus-visible { opacity: 1; transform: none; }
.pcard .fav.on { color: var(--alert); }
.pcard .fav.on svg { fill: currentColor; }

.pcard .quick {
  position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 2;
  height: 42px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.94);
  color: #121212;
  display: grid; place-items: center;
  font-family: var(--display);
  font-variation-settings: "wdth" 104, "wght" 650;
  text-transform: uppercase; font-size: 11.5px; letter-spacing: .09em;
  box-shadow: 0 6px 20px -8px rgba(16,20,34,.4);
  opacity: 0; transform: translateY(8px);
  transition: .35s var(--ease);
}
.pcard:hover .quick, .pcard .quick:focus-visible { opacity: 1; transform: none; }
.pcard .quick:hover { background: var(--ink); color: var(--on-ink); }

.pcard .flag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  padding: 5px 10px; border-radius: 7px;
  background: var(--ink); color: var(--on-ink);
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
@media (hover: none) {
  .pcard .fav, .pcard .quick { opacity: 1; transform: none; }
}

/* -- collection tiles --------------------------------------------------- */
.grid-c {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.1vw, 18px);
}
.ctile {
  position: relative; display: block;
  aspect-ratio: 1 / 1.22;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--plate);
  box-shadow: var(--shadow-1);
}
.ctile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.ctile:hover img { transform: scale(1.06); }
.ctile .veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,11,8,.78) 0%, rgba(10,11,8,.18) 45%, transparent 72%);
}
.ctile .c {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 20px;
  color: #fff; display: grid; gap: 5px;
}
.ctile .c b {
  font-family: var(--display);
  font-variation-settings: "wdth" 110, "wght" 700;
  text-transform: uppercase; font-size: clamp(17px, 1.7vw, 24px); letter-spacing: -.005em;
}
.ctile .c small { font-size: 12.5px; color: rgba(255,255,255,.76); line-height: 1.4; }
.ctile .go {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.16);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
  display: grid; place-items: center; color: #fff;
  transform: scale(.85); opacity: 0; transition: .4s var(--ease);
}
.ctile:hover .go { transform: none; opacity: 1; }

/* -- halo colour story -------------------------------------------------- */
.halo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--tint, var(--surface-2));
  transition: background-color .7s var(--ease);
  display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: center;
  box-shadow: inset 0 0 0 1px var(--hairline);
}
.halo-copy { padding: clamp(28px, 3.6vw, 60px); display: grid; gap: 18px; }
.halo-stage {
  position: relative; aspect-ratio: 1 / 1;
  background: var(--plate);
  display: grid; place-items: center;
}
.halo-stage img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transform: scale(.97);
  transition: opacity .55s var(--ease), transform .7s var(--ease);
}
.halo-stage img.on { opacity: 1; transform: none; }
.halo-name {
  position: absolute; left: 0; right: 0; bottom: 18px; text-align: center;
  font-family: var(--display);
  font-variation-settings: "wdth" 104, "wght" 640;
  text-transform: uppercase; font-size: 11.5px; letter-spacing: .14em;
  color: #6B7080;
}
.sw-row { display: flex; flex-wrap: wrap; gap: 9px; }
.sw-btn {
  width: 30px; height: 30px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.18);
  position: relative;
  transition: transform .3s var(--ease);
}
.sw-btn:hover { transform: scale(1.12); }
.sw-btn.on { transform: scale(1.06); }
.sw-btn.on::after {
  content: ""; position: absolute; inset: -5px;
  border-radius: 50%; border: 1.6px solid var(--ink);
}
.cap-row { display: flex; gap: 10px; flex-wrap: wrap; }
.cap {
  display: grid; gap: 1px; text-align: left;
  padding: 11px 18px; border-radius: var(--r-chip);
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--hairline);
  transition: .25s;
}
.cap b { font-size: 14px; font-weight: 700; }
.cap small { font-size: 12px; color: var(--muted); }
.cap.on { background: var(--ink); color: var(--on-ink); box-shadow: none; }
/* inherits the inverted foreground, so it stays legible in both themes */
.cap.on small { color: inherit; opacity: .62; }

/* -- feature row -------------------------------------------------------- */
.feats { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(10px, 1vw, 18px); }
.feat {
  padding: clamp(18px, 1.9vw, 28px);
  border-radius: var(--r-card);
  background: var(--surface);
  box-shadow: var(--shadow-1);
  display: grid; gap: 9px; align-content: start;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.feat .ic {
  width: 38px; height: 38px; border-radius: var(--r-chip);
  background: var(--royal-soft); color: var(--royal);
  display: grid; place-items: center; margin-bottom: 4px;
}
[data-theme="dark"] .feat .ic { color: var(--royal-deep); }
.feat b { font-size: 14.5px; font-weight: 700; line-height: 1.3; }
.feat small { font-size: 13px; color: var(--muted); line-height: 1.45; }

/* -- split editorial ---------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 56px); align-items: center; }
.split.flip .s-img { order: 2; }
.s-img { border-radius: var(--r-lg); overflow: hidden; background: var(--plate); box-shadow: var(--shadow-1); }
.s-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.2; transition: transform 1.1s var(--ease); }
.s-img:hover img { transform: scale(1.04); }
.s-copy { display: grid; gap: 18px; align-content: center; }

/* -- sports ------------------------------------------------------------- */
.sports { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(10px, 1vw, 18px); }
.sport {
  position: relative; border-radius: var(--r-card); overflow: hidden;
  aspect-ratio: 1 / 1.5; background: var(--plate);
  box-shadow: var(--shadow-1);
}
.sport img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.sport:hover img { transform: scale(1.07); }
.sport .veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,11,8,.7), transparent 55%); }
.sport b {
  position: absolute; left: 14px; right: 14px; bottom: 14px; color: #fff;
  font-family: var(--display);
  font-variation-settings: "wdth" 106, "wght" 680;
  text-transform: uppercase; font-size: 13px; letter-spacing: .05em;
}

/* -- social feed -------------------------------------------------------- */
.feed { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
.feed a { position: relative; aspect-ratio: 1/1; border-radius: var(--r-chip); overflow: hidden; background: var(--plate); }
.feed img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .4s; }
.feed a:hover img { transform: scale(1.08); }
.feed a::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(18,18,18,.28); opacity: 0; transition: opacity .3s;
}
.feed a:hover::after { opacity: 1; }

/* -- signup ------------------------------------------------------------- */
.signup {
  border-radius: var(--r-lg);
  background: var(--ink); color: var(--on-ink);
  padding: clamp(32px, 4.4vw, 68px);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 3vw, 56px); align-items: center;
  position: relative; overflow: hidden;
}
.signup::before {
  content: ""; position: absolute; right: -14%; top: -40%;
  width: 60%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(51,79,180,.55), transparent 62%);
  pointer-events: none;
}
.signup .display { color: var(--on-ink); position: relative; }
.signup p { color: rgba(255,255,255,.7); position: relative; }
[data-theme="dark"] .signup { background: var(--surface-2); box-shadow: inset 0 0 0 1px var(--hairline); }
[data-theme="dark"] .signup p { color: var(--muted); }

.field { position: relative; display: grid; gap: 8px; }
.field > label { font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.input {
  height: 52px; border-radius: var(--r-chip);
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--hairline);
  padding: 0 16px; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
textarea.input { height: auto; padding: 14px 16px; min-height: 130px; resize: vertical; line-height: 1.55; }
.input::placeholder { color: var(--muted-2); }
.input:focus { outline: none; border-color: var(--royal); box-shadow: 0 0 0 3px var(--royal-soft); }
.signup .input { border-color: transparent; }

.inline-form { display: flex; gap: 10px; position: relative; }
.inline-form .input { flex: 1; }
@media (max-width: 560px) { .inline-form { flex-direction: column; } }

/* -- footer ------------------------------------------------------------- */
.foot { background: var(--surface); border-top: 1px solid var(--hairline); }
.foot-in {
  max-width: var(--maxw); margin-inline: auto; padding: clamp(48px, 5vw, 76px) var(--gut) 28px;
  display: grid; grid-template-columns: 1.6fr repeat(3, 1fr) 1.3fr; gap: clamp(22px, 3vw, 48px);
}
.foot h4 {
  font-family: var(--display);
  font-variation-settings: "wdth" 104, "wght" 660;
  text-transform: uppercase; font-size: 11.5px; letter-spacing: .13em;
  color: var(--muted); margin-bottom: 14px;
}
.foot li + li { margin-top: 9px; }
.foot li a { font-size: 14px; color: var(--ink-2); transition: color .2s; }
.foot li a:hover { color: var(--royal); }
.foot .fbrand img { width: 140px; margin-bottom: 16px; }
[data-theme="dark"] .foot .fbrand img { filter: invert(1) brightness(1.9); }
.socials { display: flex; gap: 8px; flex-wrap: wrap; }
.social {
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px; padding: 0 14px; border-radius: var(--r-pill);
  background: var(--surface-2); box-shadow: inset 0 0 0 1px var(--hairline);
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  transition: .22s;
}
.social:hover { background: var(--ink); color: var(--on-ink); box-shadow: none; }
.foot-base {
  max-width: var(--maxw); margin-inline: auto; padding: 20px var(--gut) 34px;
  border-top: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; justify-content: space-between;
}
.foot-base .legal { display: flex; flex-wrap: wrap; gap: 18px; }
.foot-base a, .foot-base span { font-size: 12.5px; color: var(--muted); }
.foot-base a:hover { color: var(--ink); }

/* -- drawers / overlays ------------------------------------------------- */
.scrim {
  position: fixed; inset: 0; z-index: 100;
  background: var(--scrim);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .35s var(--ease);
}
.scrim.show { opacity: 1; }
.scrim[hidden] { display: none; }

.drawer {
  position: fixed; top: 0; bottom: 0; z-index: 110;
  width: min(430px, 92vw);
  background: var(--ground);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-3);
  transition: transform .45s var(--ease);
  visibility: hidden;
}
.drawer.bag { right: 0; transform: translateX(102%); }
.drawer.menu { left: 0; transform: translateX(-102%); width: min(380px, 88vw); }
.drawer.open { transform: none; visibility: visible; }

.dhead {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px; border-bottom: 1px solid var(--hairline);
  flex: none;
}
.dhead .t { font-family: var(--display); font-variation-settings: "wdth" 106, "wght" 680; text-transform: uppercase; font-size: 15px; letter-spacing: .04em; }
.dbody { flex: 1; overflow-y: auto; padding: 18px 20px; -webkit-overflow-scrolling: touch; }
.dfoot { flex: none; padding: 18px 20px calc(18px + env(safe-area-inset-bottom)); border-top: 1px solid var(--hairline); background: var(--surface); display: grid; gap: 12px; }

.ship-bar { display: grid; gap: 8px; margin-bottom: 18px; }
.ship-track { height: 5px; border-radius: 3px; background: var(--surface-sunk); overflow: hidden; }
.ship-fill { height: 100%; background: var(--royal); border-radius: 3px; transition: width .6s var(--ease); }

.line { display: grid; grid-template-columns: 78px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.line:last-child { border-bottom: 0; }
.line .ph { aspect-ratio: 1/1.1; border-radius: var(--r-chip); overflow: hidden; background: var(--plate); }
.line .ph img { width: 100%; height: 100%; object-fit: cover; }
.line .info { display: grid; gap: 3px; align-content: start; min-width: 0; }
.line .n { font-size: 13px; font-weight: 700; line-height: 1.3; }
.line .v { font-size: 12.5px; color: var(--muted); }
.line .qty { display: inline-flex; align-items: center; gap: 2px; margin-top: 6px; background: var(--surface); border-radius: var(--r-pill); box-shadow: inset 0 0 0 1px var(--hairline); padding: 2px; }
.line .qty button { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; color: var(--ink-2); }
.line .qty button:hover { background: var(--press); color: var(--ink); }
.line .qty span { min-width: 22px; text-align: center; font-size: 13px; font-weight: 700; font-variant-numeric: tabular-nums; }
.line .pr { font-size: 13.5px; font-weight: 700; font-variant-numeric: tabular-nums; }
.line .rm { font-size: 12px; color: var(--muted); margin-top: 8px; text-align: right; display: block; width: 100%; }
.line .rm:hover { color: var(--alert); }

.sumrow { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 14px; }
.sumrow + .sumrow { margin-top: 8px; }
.sumrow .k { color: var(--muted); }
.sumrow .v { font-weight: 700; font-variant-numeric: tabular-nums; }
.sumrow.total { padding-top: 12px; margin-top: 12px; border-top: 1px solid var(--hairline); font-size: 17px; }
.sumrow.total .v { font-size: 19px; }
.sumrow .off { color: var(--go); }

.empty { text-align: center; padding: 56px 12px; display: grid; gap: 12px; justify-items: center; }
.empty .ic { width: 58px; height: 58px; border-radius: 50%; background: var(--surface-sunk); display: grid; place-items: center; color: var(--muted-2); }

.mnav { display: grid; }
.mnav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 2px; border-bottom: 1px solid var(--hairline);
  font-family: var(--display);
  font-variation-settings: "wdth" 108, "wght" 680;
  text-transform: uppercase; font-size: 19px; letter-spacing: -.005em;
}
.mnav a svg { color: var(--muted-2); }

/* -- search ------------------------------------------------------------- */
.searchwrap {
  position: fixed; inset: 0; z-index: 120;
  display: grid; align-items: start; justify-items: center;
  padding: clamp(54px, 10vh, 130px) 20px 20px;
  background: var(--scrim);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.searchwrap.open { opacity: 1; visibility: visible; }
.searchbox {
  width: min(680px, 100%);
  background: var(--surface); border-radius: var(--r-lg);
  box-shadow: var(--shadow-3);
  overflow: hidden;
  transform: translateY(-14px) scale(.98);
  transition: transform .38s var(--ease);
  max-height: min(70vh, 640px); display: flex; flex-direction: column;
}
.searchwrap.open .searchbox { transform: none; }
.searchbar { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--hairline); flex: none; color: var(--muted); }
.searchbar input { flex: 1; border: 0; background: none; font-size: 17px; outline: none; color: var(--ink); }
.searchbar input::-webkit-search-cancel-button { display: none; }
.searchbar kbd {
  font: inherit; font-size: 11px; font-weight: 700; color: var(--muted);
  padding: 3px 7px; border-radius: 5px; background: var(--surface-2);
  box-shadow: inset 0 0 0 1px var(--hairline);
}
.searchres { overflow-y: auto; padding: 8px; }
.sres {
  display: grid; grid-template-columns: 50px 1fr auto; gap: 12px; align-items: center;
  padding: 9px 10px; border-radius: var(--r-chip);
  transition: background-color .18s;
}
.sres:hover, .sres.cur { background: var(--surface-2); }
.sres .ph { aspect-ratio: 1/1.1; border-radius: 8px; overflow: hidden; background: var(--plate); }
.sres .ph img { width: 100%; height: 100%; object-fit: cover; }
/* both are inline spans inside a blockified grid item, so they must stack */
.sres .n { display: block; font-size: 13.5px; font-weight: 700; line-height: 1.3; }
.sres .t { display: block; font-size: 12px; color: var(--muted); }
.sres .pr { font-size: 13px; font-weight: 700; font-variant-numeric: tabular-nums; }
.shint { padding: 10px 12px; font-size: 12px; color: var(--muted); }

/* -- toast -------------------------------------------------------------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 200;
  transform: translate(-50%, 120%);
  background: var(--ink); color: var(--on-ink);
  padding: 13px 20px; border-radius: var(--r-pill);
  font-size: 13.5px; font-weight: 600;
  box-shadow: var(--shadow-3);
  display: flex; align-items: center; gap: 10px;
  transition: transform .5s var(--ease), opacity .4s;
  opacity: 0; pointer-events: none;
  max-width: calc(100vw - 32px);
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast .ok { color: var(--go); flex: none; }
[data-theme="dark"] .toast { background: var(--surface-2); color: var(--ink); box-shadow: var(--shadow-3), inset 0 0 0 1px var(--hairline); }

/* -- reveal on scroll --------------------------------------------------- */
/* Content is visible by default. The hidden state only exists while <html>
   carries .rv-on, which JS adds and removes again the moment the reveal
   transition looks like it is not running — so a stalled or unsupported
   transition can never leave the page blank. */
.rv-on .rv { opacity: 0; transform: translateY(24px); }
.rv-on .rv.in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* -- page transition ---------------------------------------------------- */
.view { min-height: 60vh; }
.view.fade { animation: pagein .5s var(--ease) both; }
@keyframes pagein { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* -- breadcrumb --------------------------------------------------------- */
.crumb { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); padding-top: 22px; flex-wrap: wrap; }
.crumb a:hover { color: var(--ink); }
.crumb .sep { opacity: .5; }

/* -- shop layout -------------------------------------------------------- */
.shop-head { display: grid; gap: 14px; padding-block: clamp(24px, 3vw, 44px) clamp(18px, 2vw, 28px); }
.filters { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; padding-bottom: 22px; }
.filters .group { display: flex; gap: 7px; flex-wrap: wrap; }
.filters .sp { flex: 1; }
.fsel {
  height: 34px; border-radius: var(--r-pill); padding: 0 34px 0 14px;
  background: var(--surface); color: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--hairline); border: 0;
  font-size: 13.5px; font-weight: 600; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B7080' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
}
.fsel:focus { outline: none; box-shadow: inset 0 0 0 1.5px var(--royal); }
.count-line { font-size: 13px; color: var(--muted); }

/* -- product detail ----------------------------------------------------- */
.pdp { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(22px, 3.4vw, 64px); align-items: start; padding-block: clamp(20px, 2.6vw, 40px) var(--sec); }
.gal { display: grid; gap: 10px; position: sticky; top: calc(var(--head-h) + 18px); }
.gal-main { position: relative; aspect-ratio: 1/1.08; border-radius: var(--r-lg); overflow: hidden; background: var(--plate); box-shadow: var(--shadow-1); }
.gal-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s var(--ease); }
.gal-main img.on { opacity: 1; }
.gal-thumbs { display: flex; gap: 10px; }
.thumb { width: 74px; aspect-ratio: 1/1.08; border-radius: var(--r-chip); overflow: hidden; background: var(--plate); box-shadow: inset 0 0 0 1px var(--hairline); transition: box-shadow .25s; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.on { box-shadow: inset 0 0 0 2px var(--ink); }

.pinfo { display: grid; gap: 20px; align-content: start; padding-top: 6px; }
.pinfo .price { font-size: 26px; font-weight: 700; font-variant-numeric: tabular-nums; }
.opt { display: grid; gap: 10px; }
.opt .lab { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.opt .lab b { font-size: 12.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.opt .lab span { font-size: 13px; color: var(--muted); }
.size-row { display: flex; gap: 8px; flex-wrap: wrap; }
.size {
  min-width: 52px; height: 44px; padding: 0 14px; border-radius: var(--r-chip);
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--hairline);
  font-size: 14px; font-weight: 700; display: grid; place-items: center;
  transition: .2s;
}
.size:hover { box-shadow: inset 0 0 0 1.5px var(--hairline-2); }
.size.on { background: var(--ink); color: var(--on-ink); box-shadow: none; }

.acc { border-top: 1px solid var(--hairline); }
.acc-item { border-bottom: 1px solid var(--hairline); }
.acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 17px 2px; text-align: left;
  font-size: 14.5px; font-weight: 700;
}
.acc-btn svg { color: var(--muted); transition: transform .35s var(--ease); flex: none; }
.acc-item.open .acc-btn svg { transform: rotate(45deg); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.acc-item.open .acc-panel { grid-template-rows: 1fr; }
.acc-panel > div { overflow: hidden; }
.acc-panel p { padding-bottom: 18px; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }
.acc-panel ul { padding-bottom: 18px; display: grid; gap: 7px; }
.acc-panel li { font-size: 14px; color: var(--ink-2); padding-left: 16px; position: relative; }
.acc-panel li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--hairline-2); }

.trust { display: grid; gap: 10px; padding: 18px; border-radius: var(--r-card); background: var(--surface-2); box-shadow: inset 0 0 0 1px var(--hairline); }
.trust div { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); }
.trust svg { flex: none; margin-top: 2px; color: var(--royal); }
[data-theme="dark"] .trust svg { color: var(--royal-deep); }

/* -- about / stats ------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.4vw, 22px); }
.stat { padding: clamp(20px, 2.2vw, 32px); border-radius: var(--r-card); background: var(--surface); box-shadow: var(--shadow-1); display: grid; gap: 4px; }
.stat b { font-family: var(--display); font-variation-settings: "wdth" 112, "wght" 750; font-size: clamp(30px, 3.4vw, 46px); line-height: 1; }
.stat small { font-size: 12.5px; color: var(--muted); letter-spacing: .03em; }

.vals { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 26px); }
.val { display: grid; gap: 10px; padding-top: 22px; border-top: 2px solid var(--ink); }
.val b { font-family: var(--display); font-variation-settings: "wdth" 108, "wght" 700; text-transform: uppercase; font-size: clamp(17px, 1.7vw, 22px); }
.val p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

.strip3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 1.1vw, 18px); }
.strip3 figure { border-radius: var(--r-card); overflow: hidden; background: var(--plate); aspect-ratio: 3/4; }
.strip3 img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.strip3 figure:hover img { transform: scale(1.05); }

/* -- contact ------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(26px, 3.4vw, 64px); align-items: start; }
.crow { padding: 18px 0; border-bottom: 1px solid var(--hairline); display: grid; gap: 3px; }
.crow:first-child { border-top: 1px solid var(--hairline); }
.crow .k { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.crow .v { font-size: 16px; font-weight: 600; }
.crow .note { font-size: 13px; color: var(--muted-2); }
.form-card { background: var(--surface); border-radius: var(--r-lg); padding: clamp(22px, 2.6vw, 40px); box-shadow: var(--shadow-1); display: grid; gap: 18px; }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* -- journal ------------------------------------------------------------ */
.jgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(16px, 2vw, 30px); }
.jcard { display: grid; gap: 14px; }
.jcard .ph { aspect-ratio: 4/3; border-radius: var(--r-card); overflow: hidden; background: var(--plate); box-shadow: var(--shadow-1); }
.jcard .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.jcard:hover .ph img { transform: scale(1.05); }
.jcard .kicker { display: flex; align-items: center; gap: 10px; }
.jcard h3 { font-size: clamp(17px, 1.6vw, 21px); font-weight: 700; line-height: 1.28; }
.jcard p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* -- faq ---------------------------------------------------------------- */
.faq { max-width: 860px; }

/* -- responsive --------------------------------------------------------- */
@media (max-width: 1180px) {
  .grid-c { grid-template-columns: repeat(2, 1fr); }
  .feats { grid-template-columns: repeat(3, 1fr); }
  .foot-in { grid-template-columns: 1fr 1fr 1fr; }
  .foot .fbrand { grid-column: 1 / -1; }
  .foot .fnews { grid-column: 1 / -1; }
}
@media (max-width: 1000px) {
  .mainnav, .head-actions .icon-btn[data-toggle-theme] { display: none; }
  .burger { display: flex; }
  .brand { margin-inline: auto; position: absolute; left: 50%; transform: translateX(-50%); }
  .head-in { position: relative; }
  .pdp { grid-template-columns: 1fr; }
  .gal { position: static; }
  .halo { grid-template-columns: 1fr; }
  .halo-copy { padding: clamp(24px, 4vw, 40px); }
  .split { grid-template-columns: 1fr; }
  .split.flip .s-img { order: 0; }
  .signup { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sports { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .vals { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
}
@media (max-width: 720px) {
  :root { --head-h: 60px; }
  .feats { grid-template-columns: repeat(2, 1fr); }
  .sports { grid-template-columns: repeat(2, 1fr); }
  .strip3 { grid-template-columns: 1fr; }
  .strip3 figure:nth-child(n+3) { display: none; }
  .grid-p { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .f2 { grid-template-columns: 1fr; }
  .foot-in { grid-template-columns: 1fr 1fr; }
  .hero-shot img { max-height: 46vh; }
  .hero-badges { position: static; margin-top: 18px; padding-inline: 0; }
  .hero { padding-bottom: 26px; }
  .brand img { width: 108px; }
}
@media (max-width: 460px) {
  .grid-c { grid-template-columns: 1fr; }
  .feats { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .line { grid-template-columns: 62px 1fr auto; gap: 10px; }
}
