/* =====================================================================
   V3 · LOCKER ROOM EDITORIAL · True Performance (Phase 1.5-R, round 1)
   Sports-magazine editorial. Type contrast is the design: Archivo (variable
   width) for display, Bodoni Moda italic for pull-quotes, Onest (brand) body.
   Colour: bone paper + ink, ONE accent (brand crimson), brand wine as the
   full-bleed "spread" field. Motion lives in assets/js/v3.js (GSAP only);
   CSS carries hover transitions only, never @keyframes.
   Content is fully visible with JS off: nothing is hidden in CSS.
   ===================================================================== */
:root {
  --paper: #edeae5;
  --paper-2: #e2ded7;
  --ink: #1a1517;
  --ink-2: #3a3235;
  --muted: #625a5d;
  --crimson: #ab1e34;
  --crimson-hi: #c02540;
  --wine: #631232;
  --wine-deep: #3f0b20;
  --bone-on-dark: #efe9e4;
  --gold: #fbbc04;
  --line: rgba(26, 21, 23, .13);
  --line-light: rgba(239, 233, 228, .16);

  --f-display: 'Archivo', 'Arial Narrow', sans-serif;
  --f-serif: 'Bodoni Moda', 'Didot', Georgia, serif;
  --f-body: 'Onest', system-ui, sans-serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.32, .72, 0, 1);
  --r-lg: 1.75rem;
  --r-md: 1.1rem;
  --wrap: 1320px;
  --gut: clamp(16px, 4vw, 48px);
  --sec: clamp(5.5rem, 11vw, 10rem);

  /* eyecandy token contract mapped to this world (library parts read these) */
  --ec-font-display: var(--f-display);
  --ec-font-body: var(--f-body);
  --ec-accent: var(--crimson);
  --ec-ink: var(--ink);
  --ec-dark: var(--ink);
  --ec-surface: var(--paper);
  --ec-radius: var(--r-lg);
  --ec-ease: var(--ease-io);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink-2);
  font-family: var(--f-body); font-size: 1.0625rem; line-height: 1.62;
  overflow-x: clip; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, p, figure, blockquote, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--crimson); outline-offset: 3px; border-radius: 4px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: var(--paper); padding: .6rem 1rem; border-radius: 999px; z-index: 60; }
.skip:focus { left: 12px; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gut); }
main { overflow-x: clip; }

/* fixed grain: pointer-events none, fixed layer only (TASTE §3) */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 40; opacity: .06; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- type ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .92rem;
  letter-spacing: .01em; color: var(--crimson); margin-bottom: 1.1rem;
}
.kicker::before { content: '\276F\276F\276F'; letter-spacing: -.12em; font-size: .78em; }
.kicker--light { color: #f0a3ae; }
.h2 {
  font-family: var(--f-display); font-variation-settings: 'wdth' 88; font-weight: 800;
  font-size: clamp(2.2rem, 4.6vw, 4.3rem); line-height: .96; letter-spacing: -.03em; color: var(--ink);
  text-wrap: balance; max-width: 20ch;
}
.h2--light { color: var(--bone-on-dark); }
.h3 {
  font-family: var(--f-display); font-variation-settings: 'wdth' 92; font-weight: 750;
  font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.05; letter-spacing: -.02em; color: var(--ink);
}
.display-sm {
  font-family: var(--f-display); font-variation-settings: 'wdth' 112; font-weight: 850;
  font-size: clamp(2.3rem, 5.6vw, 5.4rem); line-height: .92; letter-spacing: -.035em; color: var(--ink); max-width: 16ch;
}
.sechead { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.sechead--row { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.5rem 3rem; }
.fineprint { font-size: .85rem; color: var(--muted); margin-top: 2rem; }
.fineprint--light { color: rgba(239, 233, 228, .64); }

/* ---------- links + buttons ---------- */
.textlink {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--ink);
  text-decoration: none; background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1.5px no-repeat;
  padding-bottom: 2px; transition: color .35s var(--ease-out);
}
.textlink::after { content: ''; width: .5em; height: .5em; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .45s var(--ease-out); }
.textlink:hover { color: var(--crimson); }
.textlink:hover::after { transform: translateX(4px) rotate(45deg); }
.textlink--light { color: var(--bone-on-dark); }
.textlink--light:hover { color: #f0a3ae; }

.btn {
  display: inline-flex; align-items: center; gap: .9rem; padding: .45rem .45rem .45rem 1.45rem;
  border-radius: 999px; background: var(--crimson); color: #fff; font-weight: 600; font-size: 1rem;
  text-decoration: none; transition: transform .45s var(--ease-out), background-color .45s var(--ease-out);
  box-shadow: 0 14px 30px -18px rgba(99, 18, 50, .7);
}
.btn:hover { background: var(--crimson-hi); }
.btn:active { transform: scale(.98); }
.btn__icon {
  width: 2.5rem; height: 2.5rem; border-radius: 999px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .16); transition: transform .5s var(--ease-out);
}
.btn__icon svg { width: 1.05rem; height: 1.05rem; fill: none; stroke: currentColor; stroke-width: 1.6; }
.btn:hover .btn__icon { transform: translate(3px, -2px) scale(1.06); }
.btn--sm { padding: .3rem .3rem .3rem 1.05rem; font-size: .92rem; gap: .6rem; }
.btn--sm .btn__icon { width: 2rem; height: 2rem; }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--ghost .btn__icon { background: var(--ink); color: var(--paper); }
.btn--ghost:hover { background: rgba(26, 21, 23, .06); }
.btn--light { background: var(--bone-on-dark); color: var(--wine); }
.btn--light .btn__icon { background: var(--wine); color: #fff; }
.btn--light:hover { background: #fff; }
.telink { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.telink svg { width: 1.1rem; height: 1.1rem; fill: none; stroke: currentColor; stroke-width: 1.5; }
.telink:hover { color: var(--crimson); }
.telink--light { color: var(--bone-on-dark); }
.telink--light:hover { color: #fff; }

/* ---------- double bezel ---------- */
.bezel {
  padding: 6px; border-radius: var(--r-lg);
  background: rgba(26, 21, 23, .045); box-shadow: inset 0 0 0 1px rgba(26, 21, 23, .08);
}
.bezel__core {
  border-radius: calc(var(--r-lg) - 6px); overflow: hidden; background: var(--paper-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5); position: relative;
}
.bezel__core > img, .bezel__core > video { width: 100%; height: 100%; object-fit: cover; }
.bezel--dark { background: rgba(239, 233, 228, .06); box-shadow: inset 0 0 0 1px var(--line-light); }
.bezel--wine { background: rgba(239, 233, 228, .08); box-shadow: inset 0 0 0 1px rgba(239, 233, 228, .18); }
.ratio-45 { aspect-ratio: 4 / 5; }
.ratio-916 { aspect-ratio: 9 / 16; }

/* ---------- masthead (floating island) ---------- */
.masthead { position: fixed; top: 12px; left: 0; right: 0; z-index: 30; padding-inline: 12px; pointer-events: none; }
.masthead__bar {
  pointer-events: auto; margin: 0 auto; max-width: 1240px; display: flex; align-items: center; gap: 1.4rem;
  padding: .45rem .5rem .45rem 1.2rem; border-radius: 999px;
  background: rgba(237, 234, 229, .82); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: inset 0 0 0 1px rgba(26, 21, 23, .09), inset 0 1px 0 rgba(255, 255, 255, .6), 0 18px 40px -28px rgba(63, 11, 32, .5);
}
.masthead__logo img { width: 150px; height: auto; }
.masthead__nav { display: flex; gap: 1.35rem; margin-left: auto; font-size: .93rem; font-weight: 500; }
.masthead__nav a { text-decoration: none; color: var(--ink-2); transition: color .3s var(--ease-out); }
.masthead__nav a:hover { color: var(--crimson); }
.masthead__tel { font-weight: 600; font-size: .93rem; text-decoration: none; color: var(--ink); white-space: nowrap; }
.menu { display: none; position: relative; }
.menu summary { list-style: none; width: 2.6rem; height: 2.6rem; border-radius: 999px; background: var(--ink); cursor: pointer; display: grid; place-content: center; gap: 5px; }
.menu summary::-webkit-details-marker { display: none; }
.menu summary span { display: block; width: 16px; height: 1.5px; background: var(--paper); transition: transform .45s var(--ease-out); }
.menu[open] summary span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu[open] summary span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.menu__panel {
  position: absolute; right: 0; top: calc(100% + 12px); width: min(86vw, 340px); padding: 1.2rem;
  display: grid; gap: .2rem; border-radius: 1.4rem; background: rgba(26, 21, 23, .94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.menu__panel a { color: var(--bone-on-dark); text-decoration: none; font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; padding: .35rem .2rem; letter-spacing: -.02em; }

/* ---------- HERO: editorial cover ---------- */
.cover { position: relative; padding-top: clamp(6.5rem, 12vh, 8.5rem); padding-bottom: clamp(3.5rem, 7vw, 6rem); min-height: 100dvh; }
.cover__spine {
  position: absolute; left: clamp(4px, 1.1vw, 18px); top: 50%; transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl; font-size: .74rem; letter-spacing: .32em; text-transform: uppercase; color: var(--muted);
}
.cover__grid { display: grid; grid-template-columns: minmax(0, 7.3fr) minmax(0, 4.7fr); gap: clamp(2rem, 4vw, 4.5rem); align-items: center; }
.cover__h1 {
  display: inline-flex; align-items: center; gap: .6rem; font-family: var(--f-body); font-weight: 600;
  font-size: clamp(.95rem, 1.1vw, 1.05rem); line-height: 1.3; color: var(--crimson); letter-spacing: .005em;
  padding: .45rem .95rem .45rem .8rem; border-radius: 999px; background: rgba(171, 30, 52, .07);
  box-shadow: inset 0 0 0 1px rgba(171, 30, 52, .18);
}
.cover__h1::before { content: '\276F\276F\276F'; letter-spacing: -.14em; font-size: .72em; }
.cover__display {
  margin-top: clamp(1.2rem, 2.2vw, 1.9rem);
  font-family: var(--f-display); font-variation-settings: 'wdth' 88; font-weight: 850;
  font-size: clamp(2.55rem, 6.4vw, 6.5rem); line-height: .88; letter-spacing: -.048em; color: var(--ink);
  max-width: 11em; text-wrap: balance;
}
.plus { color: var(--crimson); font-weight: 700; font-variation-settings: 'wdth' 70; letter-spacing: 0; padding-inline: .04em; }
.cover__deck { margin-top: clamp(1.4rem, 2.4vw, 2rem); max-width: 58ch; font-size: clamp(1.02rem, 1.25vw, 1.16rem); color: var(--ink-2); }
.cover__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.8rem; margin-top: 2rem; }
.trust { display: flex; flex-wrap: wrap; gap: .6rem 1.8rem; margin-top: 2.2rem; padding-top: 1.3rem; border-top: 1px solid var(--line); font-size: .88rem; color: var(--muted); max-width: 62ch; }
.trust li { display: flex; align-items: center; gap: .45rem; }
.trust a { display: inline-flex; align-items: center; gap: .45rem; color: var(--ink-2); text-decoration-color: rgba(26, 21, 23, .3); text-underline-offset: 3px; }
.trust a strong { color: var(--ink); }
.stars { display: inline-flex; gap: 1px; }
.stars svg { width: .95rem; height: .95rem; fill: var(--gold); }

/* reel: vertical clips at native ratios, never letterboxed. Desktop = a Z-axis
   cascade (lead 4:5 card + overlapping 9:16 card); tablet/mobile = swipe rail. */
.reel { position: relative; }
.reel__track { position: relative; padding-bottom: 3.5rem; }
.reel__card { position: relative; }
.reel__card figcaption { margin-top: .6rem; font-size: .82rem; color: var(--muted); line-height: 1.35; }
.reel__card figcaption strong { display: block; color: var(--ink); font-family: var(--f-display); font-variation-settings: 'wdth' 90; font-weight: 750; font-size: 1rem; letter-spacing: -.01em; }
.reel__card--lead { width: 84%; margin-left: auto; }
.reel__card--lead figcaption { padding-left: 24%; }
.reel__card--lead .bezel__core { max-height: 70vh; aspect-ratio: 4 / 5; }
.reel__card--tall { position: absolute; left: -4%; bottom: 0; width: 38%; rotate: -4deg; z-index: 2; }
.reel__card--tall .bezel { background: rgba(237, 234, 229, .9); box-shadow: inset 0 0 0 1px rgba(26, 21, 23, .1), 0 40px 60px -30px rgba(63, 11, 32, .55); }
.reel__card--tall figcaption { rotate: 4deg; transform-origin: left top; }
.reel__card--short { display: none; }
.reel video { background: var(--ink); }
.reel__play {
  position: absolute; left: 50%; bottom: 1.1rem; translate: -50% 0; display: inline-flex; align-items: center; gap: .7rem;
  padding: .4rem 1.1rem .4rem .4rem; border: 0; border-radius: 999px; cursor: pointer; font: 600 .9rem/1 var(--f-body);
  background: rgba(237, 234, 229, .92); color: var(--ink); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .6), 0 16px 30px -16px rgba(0, 0, 0, .6);
  transition: transform .45s var(--ease-out); white-space: nowrap;
}
.reel__play span { width: 2.2rem; height: 2.2rem; border-radius: 999px; background: var(--crimson); display: grid; place-items: center; transition: transform .45s var(--ease-out); }
.reel__play svg { width: .8rem; height: .8rem; fill: #fff; margin-left: 2px; }
.reel__play:hover span { transform: scale(1.08); }
.reel__play:active { transform: scale(.98); }
.reel__play[hidden] { display: none; }

/* ---------- sections ---------- */
.section { padding-block: var(--sec); }

/* why-us: gapless dense bento, 12 cols: A 7x2 | B 5x1 | C 5x1 | D 12x1 */
.bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-flow: dense; gap: 1rem; }
.bento > * { border-radius: var(--r-lg); background: #f6f4f0; box-shadow: inset 0 0 0 1px var(--line), inset 0 1px 0 #fff; overflow: hidden; }
.bento__a { grid-column: span 7; grid-row: span 2; display: flex; flex-direction: column; }
.bento__b { grid-column: span 5; padding: clamp(1.6rem, 3vw, 2.6rem); display: flex; flex-direction: column; justify-content: flex-end; gap: .9rem; background: var(--ink); box-shadow: none; }
.bento__b .h3 { color: var(--bone-on-dark); font-size: clamp(1.6rem, 2.6vw, 2.4rem); }
.bento__b p { color: rgba(239, 233, 228, .76); max-width: 42ch; }
.bento__c { grid-column: span 5; display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); }
.bento__d { grid-column: span 12; background: var(--wine); box-shadow: none; padding: clamp(2rem, 5vw, 4.5rem); }
.bento__media { overflow: hidden; flex: 1; min-height: 260px; }
.bento__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.bento__a:hover .bento__media img, .bento__c:hover .bento__media img { transform: scale(1.04); }
.bento__media--short { min-height: 100%; }
.bento__body { padding: clamp(1.4rem, 2.6vw, 2.2rem); display: grid; gap: .7rem; align-content: start; }
.bento__body p { max-width: 56ch; }
.bento__quote {
  font-family: var(--f-serif); font-style: italic; font-weight: 500; color: var(--bone-on-dark);
  font-size: clamp(1.45rem, 2.9vw, 2.65rem); line-height: 1.22; max-width: 40ch; letter-spacing: -.01em;
}

/* ---------- PROOF (ink spread) ---------- */
.proof { background: var(--ink); color: rgba(239, 233, 228, .8); padding-bottom: var(--sec); }
.story { padding-top: var(--sec); padding-bottom: clamp(3rem, 6vw, 5rem); }
.story__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 5.5rem); align-items: center; }
.story__media .bezel__core img { aspect-ratio: 900 / 789; }
.story__cap { font-size: .82rem; margin-top: .7rem; color: rgba(239, 233, 228, .56); }
.story__quote p {
  font-family: var(--f-serif); font-style: italic; font-weight: 500; color: var(--bone-on-dark);
  font-size: clamp(1.9rem, 4.1vw, 4rem); line-height: 1.08; letter-spacing: -.02em; text-wrap: pretty;
}
.story__who { margin-top: 1.8rem; font-size: .95rem; }
.story__who strong { display: block; font-family: var(--f-display); font-variation-settings: 'wdth' 110; font-weight: 800; font-size: 1.4rem; color: var(--bone-on-dark); letter-spacing: -.02em; }

/* marquee: wraps as a static list by default (no-JS / reduced motion); JS switches it to one running line */
.marquee { border-block: 1px solid var(--line-light); padding-block: 1.2rem; overflow: hidden; margin-bottom: clamp(3.5rem, 7vw, 6rem); }
.marquee__track { display: flex; flex-wrap: wrap; gap: .2rem 2.2rem; padding-inline: var(--gut); }
.marquee__track li {
  font-family: var(--f-display); font-variation-settings: 'wdth' 125; font-weight: 800; letter-spacing: -.03em;
  font-size: clamp(1.8rem, 4.2vw, 4rem); line-height: 1.05; color: transparent; -webkit-text-stroke: 1px rgba(239, 233, 228, .55);
  white-space: nowrap;
}
.marquee__track li:nth-child(3n + 1) { color: var(--bone-on-dark); -webkit-text-stroke: 0; }
.marquee.is-running .marquee__track { flex-wrap: nowrap; width: max-content; padding-inline: 0; }

.strip {
  display: flex; gap: 1.1rem; overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain;
  padding: 0 var(--gut) 1.2rem; padding-left: max(var(--gut), calc((100vw - var(--wrap)) / 2 + var(--gut)));
  scroll-padding-left: max(var(--gut), calc((100vw - var(--wrap)) / 2 + var(--gut))); scrollbar-width: thin; scrollbar-color: #555 transparent;
}
.strip__card { flex: none; width: min(78vw, 340px); scroll-snap-align: start; }
.strip__img { border-radius: var(--r-md); overflow: hidden; background: #2a2326; }
.strip__img img { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: filter .6s var(--ease-out), transform 1s var(--ease-out); }
.strip__card:hover img { filter: grayscale(0); transform: scale(1.04); }
.strip__card h3 { margin-top: 1rem; font-family: var(--f-display); font-variation-settings: 'wdth' 92; font-weight: 750; font-size: 1.25rem; line-height: 1.1; color: var(--bone-on-dark); letter-spacing: -.015em; }
.strip__card p { margin-top: .35rem; font-size: .88rem; line-height: 1.45; color: rgba(239, 233, 228, .6); }

.reviews { margin-top: clamp(5rem, 10vw, 8.5rem); }
.rating { display: inline-flex; align-items: center; gap: 1rem; text-decoration: none; color: var(--bone-on-dark); }
.rating__num { font-family: var(--f-display); font-variation-settings: 'wdth' 110; font-weight: 850; font-size: 3.6rem; line-height: 1; letter-spacing: -.04em; }
.rating__txt { display: grid; gap: .25rem; font-size: .9rem; color: rgba(239, 233, 228, .72); }
.wall { columns: 3 300px; column-gap: 1.1rem; }
.pull {
  break-inside: avoid; margin-bottom: 1.1rem; padding: 1.7rem 1.6rem 1.5rem; border-radius: var(--r-lg);
  background: rgba(239, 233, 228, .045); box-shadow: inset 0 0 0 1px var(--line-light), inset 0 1px 0 rgba(255, 255, 255, .05);
}
.pull blockquote { font-family: var(--f-serif); font-style: italic; font-size: 1.28rem; line-height: 1.38; color: var(--bone-on-dark); margin-top: .9rem; }
.pull--xl blockquote { font-size: clamp(1.6rem, 2.3vw, 2.05rem); line-height: 1.2; }
.pull--xl { background: var(--wine); box-shadow: none; }
.pull figcaption { margin-top: 1.1rem; font-weight: 600; font-size: .9rem; color: rgba(239, 233, 228, .78); }
.pull figcaption::before { content: ''; display: inline-block; width: 1.4rem; height: 1px; background: currentColor; vertical-align: middle; margin-right: .6rem; opacity: .6; }
.tag { display: inline-block; font-size: .75rem; font-weight: 600; padding: .28rem .7rem; border-radius: 999px; background: rgba(171, 30, 52, .22); color: #f3b8c1; }
.pull--xl .tag { background: rgba(239, 233, 228, .14); color: var(--bone-on-dark); }

/* ---------- BOOKING (wine spread) ---------- */
.book { background: var(--wine); color: rgba(239, 233, 228, .84); padding-block: var(--sec); position: relative; overflow: hidden; }
.book::before { content: ''; position: absolute; inset: auto -10% -40% auto; width: 60vw; height: 60vw; border-radius: 50%; background: radial-gradient(closest-side, rgba(171, 30, 52, .55), transparent); pointer-events: none; }
.book__grid { position: relative; display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.book__steps { counter-reset: s; margin: 2rem 0 2.2rem; display: grid; gap: 1rem; max-width: 46ch; }
.book__steps li { counter-increment: s; display: grid; grid-template-columns: 2.4rem 1fr; gap: .8rem; align-items: baseline; }
.book__steps li::before { content: counter(s); font-family: var(--f-serif); font-style: italic; font-size: 1.6rem; color: #f0a3ae; line-height: 1; }
.book__core { background: #f4f1ec; }
.poptin-host { min-height: 560px; padding: 1.4rem; display: grid; align-content: start; gap: 1rem;
  background: repeating-linear-gradient(-45deg, rgba(99, 18, 50, .035) 0 12px, transparent 12px 24px); }
.poptin-host__label { font-size: .88rem; color: var(--muted); border: 1px dashed rgba(99, 18, 50, .35); border-radius: .8rem; padding: .9rem 1rem; }
.poptin-host__label code { font-size: .85em; color: var(--wine); }

/* ---------- CONTENTS (entity routing) ---------- */
.features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2.4vw, 2rem); margin-bottom: clamp(4rem, 8vw, 7rem); }
.feature--offset { margin-top: clamp(0rem, 6vw, 5rem); }
.feature__link { display: grid; gap: .8rem; text-decoration: none; color: inherit; }
.feature__img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; background: var(--paper-2); }
.feature__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.feature__link:hover .feature__img img { transform: scale(1.05); }
.feature .h3 { margin-top: .6rem; }
.feature p { max-width: 42ch; }
.feature .textlink { justify-self: start; }

.rows { border-top: 1.5px solid var(--ink); }
.row {
  position: relative; display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 5fr) minmax(0, 2.4fr);
  gap: 1.2rem 2.5rem; padding-block: clamp(1.6rem, 3vw, 2.4rem); border-bottom: 1px solid var(--line); align-items: start;
}
.row__h {
  font-family: var(--f-display); font-variation-settings: 'wdth' 84; font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1; letter-spacing: -.03em; color: var(--ink); transition: color .4s var(--ease-out), transform .6s var(--ease-out);
}
.row__p { font-size: .98rem; max-width: 60ch; }
.row__a { justify-self: end; font-weight: 600; font-size: .92rem; color: var(--crimson); text-decoration: none; text-align: right; }
.row__a:hover { text-decoration: underline; text-underline-offset: 4px; }
.row:hover .row__h { color: var(--crimson); transform: translateX(10px); }
.peek { position: fixed; left: 0; top: 0; width: 240px; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 1rem; pointer-events: none; opacity: 0; z-index: 20; box-shadow: 0 30px 60px -30px rgba(63, 11, 32, .6); }
.peek[src=""] { display: none; }

/* ---------- STATS ---------- */
.stats { background: var(--paper-2); padding-block: clamp(4.5rem, 8vw, 7rem); border-block: 1.5px solid var(--ink); }
.stats__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; }
.stat { border-left: 1px solid var(--line); padding-left: 1.4rem; }
.stat__n { font-family: var(--f-display); font-variation-settings: 'wdth' 118; font-weight: 850; font-size: clamp(3.4rem, 7vw, 6.6rem); line-height: .9; letter-spacing: -.05em; color: var(--ink); font-variant-numeric: tabular-nums; }
.stat__n small { font-size: .3em; letter-spacing: 0; margin-left: .3rem; font-variation-settings: 'wdth' 90; color: var(--crimson); }
.stat__l { margin-top: .9rem; font-size: .92rem; max-width: 26ch; }

/* ---------- ROUTER ---------- */
.router__grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.router__head { position: sticky; top: 7rem; }
.router__head .h2 { margin-bottom: 1.6rem; }
.router__groups { display: grid; gap: 2.4rem; }
.chipset h3 { font-size: .9rem; font-weight: 600; color: var(--muted); margin-bottom: .9rem; }
.chipset ul { display: flex; flex-wrap: wrap; gap: .6rem; }
.chipset a {
  display: inline-block; padding: .7rem 1.25rem; border-radius: 999px; text-decoration: none; color: var(--ink);
  font-family: var(--f-display); font-variation-settings: 'wdth' 94; font-weight: 700; font-size: clamp(1.02rem, 1.4vw, 1.25rem); letter-spacing: -.01em;
  background: #f6f4f0; box-shadow: inset 0 0 0 1px var(--line), inset 0 1px 0 #fff;
  transition: background-color .4s var(--ease-out), color .4s var(--ease-out), transform .4s var(--ease-out);
}
.chipset a:hover { background: var(--ink); color: var(--bone-on-dark); transform: translateY(-2px); }
.chipset a:active { transform: scale(.98); }

/* ---------- PROVIDERS ---------- */
.profile { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.profile__img .bezel__core { aspect-ratio: 4 / 5; }
.profile__img img { transform-origin: center; scale: 1.12; }
.profile__role { font-family: var(--f-serif); font-style: italic; font-size: clamp(1.25rem, 1.8vw, 1.6rem); color: var(--crimson); margin: .8rem 0 1.5rem; }
.profile__lede { font-size: 1.16rem; color: var(--ink); margin-bottom: 1rem; max-width: 56ch; }
.profile__text > p:not(.kicker):not(.profile__role) { max-width: 58ch; }
.profile__links { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.8rem; margin-top: 2rem; }
.team { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1rem; margin-top: clamp(3.5rem, 7vw, 6rem); }
.team__card { grid-column: span 4; }
.team__card:nth-child(2) { grid-column: span 5; }
.team__card--link { grid-column: span 3 !important; }
.team__card a {
  display: grid; grid-template-columns: 6.5rem 1fr; gap: 1.2rem; align-items: center; height: 100%; padding: 1rem; border-radius: var(--r-lg);
  text-decoration: none; color: inherit; background: #f6f4f0; box-shadow: inset 0 0 0 1px var(--line), inset 0 1px 0 #fff;
  transition: transform .5s var(--ease-out), background-color .4s var(--ease-out);
}
.team__card a:hover { transform: translateY(-3px); background: #fbfaf7; }
.team__card--link a { grid-template-columns: 1fr; align-content: space-between; background: var(--ink); box-shadow: none; color: var(--bone-on-dark); }
.team__card--link a:hover { background: var(--wine); }
.team__card--link h3 { color: var(--bone-on-dark) !important; }
.team__card--link p { color: rgba(239, 233, 228, .7); font-size: .88rem; }
.btn__icon--solo { background: var(--crimson); color: #fff; justify-self: end; }
.team__photo, .team__mono { width: 6.5rem; aspect-ratio: 1; border-radius: 1rem; overflow: hidden; }
.team__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter .6s var(--ease-out); }
.team__card a:hover .team__photo img { filter: grayscale(0); }
.team__mono { display: grid; place-items: center; background: var(--wine); color: var(--bone-on-dark); font-family: var(--f-serif); font-style: italic; font-size: 2.2rem; }
.team__card h3 { font-family: var(--f-display); font-variation-settings: 'wdth' 92; font-weight: 750; font-size: 1.25rem; color: var(--ink); letter-spacing: -.015em; line-height: 1.1; }
.team__cred { font-size: .8rem; font-weight: 600; color: var(--crimson); margin: .3rem 0 .45rem; }
.team__card p:not(.team__cred) { font-size: .9rem; line-height: 1.45; }

/* ---------- PROCESS (library phase-rail, re-skinned) ---------- */
.process { background: var(--ink); color: rgba(239, 233, 228, .78); padding-block: var(--sec); }
.process__hint { font-size: .88rem; color: rgba(239, 233, 228, .5); }
.rail {
  display: flex; gap: 1.3rem; overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; scrollbar-width: none;
  padding: 0 var(--gut) .4rem; padding-left: max(var(--gut), calc((100vw - var(--wrap)) / 2 + var(--gut)));
  scroll-padding-left: max(var(--gut), calc((100vw - var(--wrap)) / 2 + var(--gut)));
}
.rail::-webkit-scrollbar { display: none; }
.rail__card { flex: none; width: min(80vw, 420px); scroll-snap-align: start; }
.rail__img { border-radius: var(--r-lg); overflow: hidden; box-shadow: inset 0 0 0 1px var(--line-light); }
.rail__img img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }
.rail__n { display: block; margin-top: 1.3rem; font-family: var(--f-serif); font-style: italic; font-size: 1.5rem; color: #f0a3ae; }
.rail__card h3 { margin-top: .2rem; font-family: var(--f-display); font-variation-settings: 'wdth' 100; font-weight: 800; font-size: 2rem; letter-spacing: -.03em; color: var(--bone-on-dark); }
.rail__card p { margin-top: .6rem; font-size: .96rem; max-width: 38ch; }
.rail__bar { margin-top: 2.2rem; height: 2px; background: var(--line-light); border-radius: 2px; overflow: hidden; }
.rail__bar i { display: block; height: 100%; background: var(--crimson); transform-origin: left; transform: scaleX(.25); }

/* ---------- PAY ---------- */
.pay { padding-block: clamp(3.5rem, 6vw, 5rem); border-bottom: 1px solid var(--line); }
.pay__grid { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 6fr) minmax(0, 3fr); gap: 1.5rem 3rem; align-items: center; }
.pay__grid p { max-width: 62ch; }
.pay__grid .textlink { justify-self: end; }

/* ---------- GALLERY: locker wall ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-flow: dense; gap: 1.1rem; align-items: start; }
.gallery__head { grid-column: 1 / span 5; }
.gallery__head p:not(.kicker) { margin-top: 1.3rem; max-width: 44ch; }
.g--ring { grid-column: 7 / span 6; grid-row: span 2; }
.g--ring .bezel__core { aspect-ratio: 1; }
.jerseys { grid-column: 1 / span 6; position: relative; height: clamp(400px, 40vw, 560px); margin-top: 1.5rem; }
.j { position: absolute; border-radius: .6rem; box-shadow: 0 30px 50px -30px rgba(26, 21, 23, .55), 0 0 0 5px #f6f4f0; background: #f6f4f0; }
.j1 { width: 38%; left: 2%; top: 4%; rotate: -4deg; }
.j2 { width: 33%; left: 36%; top: 12%; rotate: 3deg; z-index: 1; }
.j3 { width: 22%; left: 70%; top: 0%; rotate: -2deg; }
.j4 { width: 22%; left: 72%; top: 46%; rotate: 5deg; }
.jerseys__cap { position: absolute; left: 2%; bottom: 0; font-size: .85rem; color: var(--muted); font-family: var(--f-serif); font-style: italic; }
.g--hbot { grid-column: 1 / span 7; }
.g--hbot .bezel__core { aspect-ratio: 3 / 2; }
.g--iv { grid-column: 8 / span 5; }
.g--iv .bezel__core { aspect-ratio: 1; }
.g figcaption { margin-top: .6rem; font-size: .85rem; color: var(--muted); }

/* ---------- LOCATIONS ---------- */
.locs__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 1.1rem; align-items: stretch; }
.loc { border-radius: var(--r-lg); padding: clamp(1.8rem, 4vw, 3.4rem); background: #f6f4f0; box-shadow: inset 0 0 0 1px var(--line), inset 0 1px 0 #fff; }
.loc address { font-style: normal; font-size: 1.15rem; color: var(--ink); margin: 1.4rem 0 1rem; line-height: 1.5; }
.loc--main .h2 { font-size: clamp(2.6rem, 5.4vw, 5rem); }
.hours { border-collapse: collapse; margin-top: 1.6rem; width: 100%; max-width: 30rem; font-size: .95rem; }
.hours caption { text-align: left; font-weight: 600; color: var(--muted); font-size: .85rem; padding-bottom: .5rem; }
.hours th, .hours td { text-align: left; padding: .65rem 0; border-top: 1px solid var(--line); vertical-align: top; font-weight: 500; }
.hours th { color: var(--ink); padding-right: 1.5rem; }
.loc__links { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.8rem; margin-top: 2rem; }
.loc--sat { background: var(--ink); box-shadow: none; color: rgba(239, 233, 228, .76); align-self: end; }
.loc--sat .h3 { color: var(--bone-on-dark); }
.loc--sat address { color: var(--bone-on-dark); font-size: 1rem; }
.loc--sat p { font-size: .93rem; margin-bottom: 1.4rem; }
.loc--sat .textlink { color: var(--bone-on-dark); }

/* ---------- FAQ ---------- */
.scope { border-top: 1.5px solid var(--ink); margin-bottom: clamp(3.5rem, 7vw, 6rem); }
.scope__row { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 1rem 2.5rem; padding-block: 1.3rem; border-bottom: 1px solid var(--line); }
.scope__who { font-family: var(--f-display); font-variation-settings: 'wdth' 90; font-weight: 750; font-size: 1.25rem; color: var(--ink); letter-spacing: -.015em; }
.scope__row--us { background: rgba(171, 30, 52, .06); padding-inline: 1rem; border-radius: .8rem; border-bottom-color: transparent; margin-top: .4rem; }
.scope__row--us .scope__who { color: var(--crimson); }
.qa { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 3rem; }
.qa__item { border-top: 1px solid var(--line); padding-block: 1.4rem; }
.qa__item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.qa__item summary::-webkit-details-marker { display: none; }
.qa__item summary::after { content: '+'; font-family: var(--f-serif); font-size: 1.8rem; line-height: 1; color: var(--crimson); transition: transform .45s var(--ease-out); }
.qa__item[open] summary::after { transform: rotate(45deg); }
.qa__item h3 { font-family: var(--f-display); font-variation-settings: 'wdth' 94; font-weight: 750; font-size: 1.22rem; line-height: 1.2; letter-spacing: -.015em; color: var(--ink); }
.qa__item p { margin-top: .9rem; max-width: 60ch; }

/* ---------- BACK COVER ---------- */
.back { background: var(--wine); padding-block: clamp(6rem, 13vw, 11rem); overflow: hidden; }
.back__grid { display: grid; gap: 2.5rem; }
.back__display {
  font-family: var(--f-display); font-variation-settings: 'wdth' 110; font-weight: 850; color: var(--bone-on-dark);
  font-size: clamp(2.6rem, 7.6vw, 8rem); line-height: .88; letter-spacing: -.05em; max-width: 12em; text-wrap: balance;
}
.back__ctas { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; }

/* ---------- FOOTER ---------- */
.foot { background: var(--ink); color: rgba(239, 233, 228, .7); padding: clamp(4rem, 8vw, 6rem) 0 7rem; font-size: .92rem; }
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.foot__brand img { width: 210px; }
.foot__brand p { margin-top: 1.3rem; max-width: 34ch; }
.foot__rev { display: inline-block; margin-top: 1rem; color: var(--bone-on-dark); }
.foot__col { display: grid; gap: .45rem; align-content: start; }
.foot__col h2 { font-family: var(--f-display); font-variation-settings: 'wdth' 92; font-size: 1.05rem; font-weight: 750; color: var(--bone-on-dark); margin-bottom: .4rem; }
.foot__col address { font-style: normal; }
.foot a { color: rgba(239, 233, 228, .82); text-decoration: none; }
.foot a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.foot__hours { font-size: .85rem; line-height: 1.55; margin-top: .4rem; }
.foot__legal { display: flex; flex-wrap: wrap; gap: .6rem 1.8rem; margin-top: 3.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line-light); font-size: .85rem; }

/* mobile dock */
.dock { display: none; }

/* V-badge */
.vbadge {
  position: fixed; right: 14px; bottom: 14px; z-index: 50; padding: .5rem .9rem; border-radius: 999px;
  background: var(--crimson); color: #fff; font: 600 .78rem/1 var(--f-body); letter-spacing: .02em;
  box-shadow: 0 10px 30px -12px rgba(99, 18, 50, .8);
}

/* =================== responsive =================== */
@media (max-width: 1180px) {
  .masthead__nav { display: none; }
  .menu { display: block; }
  .masthead__tel { margin-left: auto; }
}
@media (max-width: 1023px) {
  .cover__grid, .story__grid, .book__grid, .profile, .router__grid, .locs__grid { grid-template-columns: minmax(0, 1fr); }
  .router__head { position: static; }
  .reel__track { display: flex; gap: .9rem; overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: calc(var(--gut) * -1); padding: 0 var(--gut) .6rem; scrollbar-width: none; }
  .reel__track::-webkit-scrollbar { display: none; }
  .reel__card { flex: none; scroll-snap-align: start; }
  .reel__track { padding-bottom: .6rem; }
  .reel__card--lead { width: min(66vw, 340px); margin-left: 0; }
  .reel__card--lead figcaption { padding-left: 0; }
  .reel__card--lead .bezel__core { max-height: none; }
  .reel__card--tall { position: relative; width: min(46vw, 230px); rotate: 0deg; }
  .reel__card--tall figcaption { rotate: 0deg; }
  .reel__card--short { display: block; width: min(58vw, 300px); }
  .features { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .features .feature:last-child { grid-column: span 2; }
  .feature--offset { margin-top: 0; }
  .stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team__card, .team__card:nth-child(2), .team__card--link { grid-column: span 12 !important; }
  .gallery__head, .g--ring, .jerseys, .g--hbot, .g--iv { grid-column: 1 / -1; grid-row: auto; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  body { font-size: 1rem; }
  .cover { min-height: auto; padding-top: 6.2rem; }
  .cover__spine { display: none; }
  .cover__h1 { font-size: .9rem; }
  .masthead__tel { display: none; }
  .masthead__logo img { width: 128px; }
  .masthead__bar { gap: .6rem; }
  .masthead .btn--sm { margin-left: auto; }
  .bento__a, .bento__b, .bento__c, .bento__d { grid-column: span 12; grid-row: auto; }
  .bento__c { grid-template-columns: 1fr; }
  .bento__media--short { min-height: 220px; }
  .features { grid-template-columns: minmax(0, 1fr); }
  .features .feature:last-child { grid-column: auto; }
  .feature__img { aspect-ratio: 4 / 3; }
  .row { grid-template-columns: minmax(0, 1fr); gap: .8rem; }
  .row__a { justify-self: start; text-align: left; }
  .row:hover .row__h { transform: none; }
  .stats__grid { grid-template-columns: minmax(0, 1fr); gap: 2.2rem; }
  .pay__grid { grid-template-columns: minmax(0, 1fr); }
  .pay__grid .textlink { justify-self: start; }
  .jerseys { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; height: auto; }
  .j { position: static; width: 100%; rotate: 0deg; aspect-ratio: 3 / 4; object-fit: cover; }
  .jerseys__cap { position: static; grid-column: 1 / -1; }
  .scope__row { grid-template-columns: minmax(0, 1fr); gap: .3rem; }
  .qa { grid-template-columns: minmax(0, 1fr); }
  .team__card a { grid-template-columns: 5rem 1fr; }
  .team__card--link a { grid-template-columns: 1fr auto; align-items: center; }
  .team__photo, .team__mono { width: 5rem; }
  .foot__grid { grid-template-columns: minmax(0, 1fr); }
  .dock {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 30;
    border-radius: 999px; overflow: hidden; background: rgba(26, 21, 23, .92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 0 0 1px rgba(239, 233, 228, .12);
  }
  .dock a { text-align: center; padding: .95rem; font-weight: 600; color: var(--bone-on-dark); text-decoration: none; }
  .dock__book { background: var(--crimson); }
  .vbadge { bottom: 76px; right: 12px; font-size: .7rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
