/* VIGOR Strength — design system v2
   Bolder type, editorial rhythm, transparent header, ticker, richer cards. No framework. */

:root {
  --black: #0a0a0a;
  --ink: #111111;
  --graphite: #2a2a2a;
  --steel: #6a6a6a;
  --ash: #a8a8a8;
  --line: #e6e4df;
  --line-dark: rgba(255,255,255,.14);
  --bone: #f3f1ec;
  --white: #ffffff;
  --cream: #ede6d6;
  --teal: #0b9aa8;

  --font-display: "Jost", "Poppins", "Futura", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --max: 1520px;
  --gutter: clamp(20px, 4vw, 72px);
  --section: clamp(80px, 11vw, 176px);
  --ease: cubic-bezier(.16,.84,.3,1);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, figure { margin: 0; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
::selection { background: var(--ink); color: var(--white); }

/* ---------- Typography ---------- */
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.025em; line-height: .98; }
h1 { font-size: clamp(48px, 8.2vw, 128px); }
h2 { font-size: clamp(34px, 5vw, 72px); }
h3 { font-size: clamp(20px, 2vw, 28px); letter-spacing: -0.01em; line-height: 1.1; }
.caps { text-transform: uppercase; letter-spacing: -0.02em; }
.eyebrow { font-family: var(--font-display); font-size: 11px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--steel); display: inline-flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; opacity: .6; }
.eyebrow--bare::before { display: none; }
.lede { font-size: clamp(16px, 1.35vw, 19px); line-height: 1.55; color: var(--graphite); max-width: 44ch; }
.small { font-size: 13px; }
.muted { color: var(--steel); }
.inverse { color: var(--white); }
.inverse .eyebrow { color: var(--ash); }
.inverse .lede { color: #cfcfcf; }
.inverse .muted { color: var(--ash); }
.num { font-family: var(--font-display); font-size: 11px; letter-spacing: .3em; color: var(--ash); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section--tight { padding-block: calc(var(--section) * .55); }
.section--top0 { padding-top: 0; }
.grid { display: grid; gap: clamp(14px, 1.6vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } .keep-2 { grid-template-columns: repeat(2, 1fr) !important; } }
.dark { background: var(--black); color: var(--white); }
.bone { background: var(--bone); }
.rule { border-top: 1px solid var(--line); }
.dark .rule { border-color: var(--line-dark); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; height: 56px; padding: 0 34px; border: 1px solid var(--ink); background: var(--ink); color: var(--white); position: relative; overflow: hidden; transition: color .35s var(--ease), border-color .35s var(--ease); }
.btn::before { content: ""; position: absolute; inset: 0; background: var(--white); transform: translateY(101%); transition: transform .45s var(--ease); z-index: 0; }
.btn > * , .btn { z-index: 1; }
.btn span { position: relative; z-index: 1; }
.btn:hover { color: var(--ink); }
.btn:hover::before { transform: none; }
.btn--white { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--white::before { background: var(--ink); }
.btn--white:hover { color: var(--white); }
.btn--outline { background: transparent; color: var(--ink); }
.btn--outline::before { background: var(--ink); }
.btn--outline:hover { color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn--outline-white::before { background: var(--white); }
.btn--outline-white:hover { color: var(--ink); border-color: var(--white); }
.btn--block { width: 100%; }
.link { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; }
.link::after { content: "→"; transition: transform .3s var(--ease); }
.link:hover::after { transform: translateX(6px); }
.arrow { display: inline-block; transition: transform .3s var(--ease); }

/* ---------- Announcement ---------- */
.announce { background: var(--ink); color: var(--white); font-family: var(--font-display); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; text-align: center; padding: 11px var(--gutter); }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: 1px solid var(--line); transition: background .4s var(--ease), border-color .4s var(--ease); }
.header__row { height: var(--header-h); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.header__nav { display: flex; gap: 34px; }
.header__nav a, .header__util a, .header__util button { font-family: var(--font-display); font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }
.header__nav a { position: relative; padding: 6px 0; }
.header__nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: currentColor; transition: right .35s var(--ease); }
.header__nav a:hover::after, .header__nav a[aria-current="page"]::after { right: 0; }
.header__logo { display: flex; justify-content: center; }
.header__logo img { height: 32px; width: auto; }
.header .logo-white { display: none; }
.header__util { display: flex; justify-content: flex-end; align-items: center; gap: 30px; }
.cart-count { display: inline-flex; min-width: 18px; height: 18px; padding: 0 5px; margin-left: 8px; align-items: center; justify-content: center; border-radius: 9px; background: currentColor; font-size: 10px; letter-spacing: 0; }
.cart-count > i { font-style: normal; color: var(--white); mix-blend-mode: difference; }
.cart-count:empty { display: none; }
.burger { display: none; width: 44px; height: 44px; margin-left: -12px; align-items: center; justify-content: center; }
.burger span { display: block; width: 22px; height: 1.5px; background: currentColor; position: relative; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 100%; height: 1.5px; background: currentColor; }
.burger span::before { top: -7px; } .burger span::after { top: 7px; }

/* Transparent header on hero pages until scrolled */
body.has-hero .header { position: fixed; left: 0; right: 0; background: transparent; border-color: transparent; color: var(--white); }
body.has-hero .header .logo-black { display: none; } body.has-hero .header .logo-white { display: block; }
body.has-hero.scrolled .header { background: rgba(255,255,255,.94); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-color: var(--line); color: var(--ink); }
body.has-hero.scrolled .header .logo-black { display: block; } body.has-hero.scrolled .header .logo-white { display: none; }
body.has-hero .announce { display: none; }
.hero__actions .btn { min-width: 200px; }

@media (max-width: 960px) {
  :root { --header-h: 64px; }
  .header__row { grid-template-columns: auto 1fr auto; }
  .header__nav { display: none; }
  .burger { display: inline-flex; }
  .header__util a.hide-m { display: none; }
  .header__logo img { height: 26px; }
}
.mobile-nav { position: fixed; inset: 0; z-index: 60; background: var(--black); color: var(--white); padding: 96px var(--gutter) 40px; transform: translateY(-100%); transition: transform .5s var(--ease); display: flex; flex-direction: column; }
.mobile-nav { visibility: hidden; transition: transform .5s var(--ease), visibility 0s .5s; }
.mobile-nav.open { transform: none; visibility: visible; transition: transform .5s var(--ease), visibility 0s; }
.mobile-nav a { font-family: var(--font-display); font-size: clamp(38px, 9vw, 56px); font-weight: 600; letter-spacing: -0.02em; padding: 10px 0; border-bottom: 1px solid var(--line-dark); display: flex; justify-content: space-between; align-items: center; }
.mobile-nav a small { font-size: 11px; letter-spacing: .3em; color: var(--ash); font-weight: 500; }
.mobile-nav .secondary { margin-top: auto; display: flex; gap: 24px; }
.mobile-nav .secondary a { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ash); border: 0; padding: 0; font-weight: 500; }
.mobile-nav__close { position: absolute; top: 12px; right: var(--gutter); width: 44px; height: 44px; font-size: 30px; font-weight: 300; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; background: var(--black); color: var(--white); }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transform: scale(1.06); animation: kb 14s var(--ease) forwards; }
@keyframes kb { to { transform: scale(1); } }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,.2) 60%, rgba(0,0,0,.82) 100%); }
.hero__content { position: relative; width: 100%; padding-top: 160px; padding-bottom: clamp(36px, 5vw, 72px); display: grid; grid-template-columns: 1.4fr 1fr; align-items: end; gap: 32px; }
.hero__content h1 { margin: 18px 0 0; text-transform: uppercase; letter-spacing: -0.03em; }
.hero__side { justify-self: end; max-width: 380px; }
.hero__side .lede { color: #e2e2e2; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero__scroll { position: absolute; right: var(--gutter); top: 50%; transform: rotate(90deg) translateX(-50%); transform-origin: right; font-family: var(--font-display); font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: rgba(255,255,255,.55); }
@media (max-width: 960px) { .hero__content { grid-template-columns: 1fr; padding-top: 120px; } .hero__side { justify-self: start; } .hero__scroll { display: none; } }
@media (max-width: 600px) { .hero__media img { object-position: 62% 30%; } }

/* ---------- Ticker ---------- */
.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; white-space: nowrap; }
.dark .ticker, .ticker.dark { border-color: var(--line-dark); }
.ticker__track { display: inline-flex; gap: 0; animation: tick 40s linear infinite; }
.ticker span { font-family: var(--font-display); font-size: clamp(13px, 1.2vw, 16px); font-weight: 500; letter-spacing: .3em; text-transform: uppercase; padding: 0 28px; display: inline-flex; align-items: center; gap: 28px; }
.ticker span::after { content: ""; width: 6px; height: 6px; background: currentColor; opacity: .5; }
@keyframes tick { to { transform: translateX(-50%); } }
.ticker--big span { font-size: clamp(48px, 9vw, 140px); font-weight: 600; letter-spacing: -0.02em; padding: 0 40px; line-height: 1; }
.ticker--big span::after { width: 14px; height: 14px; }
.ticker--big { padding: 28px 0; border: 0; }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } .hero__media img { animation: none; transform: none; } }

/* ---------- Media ---------- */
.media { position: relative; overflow: hidden; background: var(--bone); }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.media--3x4 { aspect-ratio: 3 / 4; } .media--4x5 { aspect-ratio: 4 / 5; } .media--1x1 { aspect-ratio: 1 / 1; } .media--16x9 { aspect-ratio: 16 / 9; } .media--21x9 { aspect-ratio: 21 / 9; } .media--2x3 { aspect-ratio: 2 / 3; }
a:hover .media img, .card:hover .media img { transform: scale(1.04); }

/* ---------- Category tiles ---------- */
.tile { position: relative; display: block; overflow: hidden; background: var(--black); color: var(--white); }
.tile .media { background: var(--black); }
.tile .media img { opacity: .9; }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.7)); pointer-events: none; }
.tile__label { position: absolute; left: 26px; right: 26px; bottom: 24px; z-index: 1; display: flex; justify-content: space-between; align-items: end; }
.tile__label h3 { font-size: clamp(24px, 2.4vw, 34px); font-weight: 600; text-transform: uppercase; letter-spacing: -0.02em; }
.tile__label .num { display: block; margin-bottom: 8px; }
.tile__go { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.6); display: grid; place-items: center; font-size: 18px; transition: background .3s, color .3s; }
.tile:hover .tile__go { background: var(--white); color: var(--ink); }
.tiles { grid-template-columns: 1.3fr 1fr 1fr; }
@media (max-width: 960px) { .tiles { grid-template-columns: 1fr 1fr; } .tiles > :first-child { grid-column: 1 / -1; } }
@media (max-width: 600px) { .tiles { grid-template-columns: 1fr; } }

/* ---------- Product cards ---------- */
.card { display: block; position: relative; }
.card .media { background: var(--bone); }
.card .media img.alt { position: absolute; inset: 0; opacity: 0; transition: opacity .5s var(--ease); }
.card:hover .media img.alt { opacity: 1; }
.card__quick { position: absolute; left: 12px; right: 12px; bottom: 12px; height: 46px; background: var(--white); color: var(--ink); font-family: var(--font-display); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; display: grid; place-items: center; transform: translateY(8px); opacity: 0; transition: all .35s var(--ease); }
.card:hover .card__quick { transform: none; opacity: 1; }
@media (hover: none) { .card__quick { display: none; } }
.card__body { padding: 16px 0 0; display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.card__name { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .02em; text-transform: uppercase; }
.card__name .muted { font-weight: 400; text-transform: none; letter-spacing: 0; }
.card__meta { font-size: 12px; color: var(--steel); margin-top: 3px; }
.card__price { font-family: var(--font-display); font-size: 14px; font-weight: 500; white-space: nowrap; }
.swatches { display: flex; gap: 6px; margin-top: 10px; }
.swatch { width: 11px; height: 11px; border-radius: 50%; border: 1px solid rgba(0,0,0,.18); }
.badge { position: absolute; top: 12px; left: 12px; z-index: 1; font-family: var(--font-display); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; background: var(--ink); color: var(--white); padding: 7px 10px; }

/* ---------- Split / editorial ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(32px, 6vw, 112px); }
.split--flip > :first-child { order: 2; }
.split__copy { max-width: 520px; }
.split__copy h2 { margin: 18px 0 22px; }
.split__copy .btn, .split__copy .link { margin-top: 32px; }
@media (max-width: 960px) { .split { grid-template-columns: 1fr; } .split--flip > :first-child { order: 0; } }

.bleed { position: relative; min-height: 80vh; display: grid; align-items: center; overflow: hidden; background: var(--black); color: var(--white); }
.bleed .hero__media img { object-position: 50% 40%; }
.bleed__inner { position: relative; padding-block: clamp(64px, 9vw, 140px); }
.bleed h2 { text-transform: uppercase; font-size: clamp(40px, 7vw, 112px); letter-spacing: -0.03em; }
.chips-float { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chips-float span { font-family: var(--font-display); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; border: 1px solid rgba(255,255,255,.45); padding: 10px 14px; backdrop-filter: blur(6px); }

/* Spec list */
.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 24px; border-top: 1px solid var(--line); margin-top: 30px; }
.specs div { padding: 16px 0; border-bottom: 1px solid var(--line); }
.specs dt { font-family: var(--font-display); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--steel); }
.specs dd { margin: 5px 0 0; font-size: 14px; }
.inverse .specs, .inverse .specs div { border-color: var(--line-dark); } .inverse .specs dt { color: var(--ash); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.stats div { padding: 28px 24px 28px 0; border-bottom: 1px solid var(--line); }
.stats b { display: block; font-family: var(--font-display); font-size: clamp(32px, 4vw, 56px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.stats span { display: block; margin-top: 10px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--steel); font-family: var(--font-display); }
.inverse .stats, .inverse .stats div { border-color: var(--line-dark); } .inverse .stats span { color: var(--ash); }
@media (max-width: 600px) { .stats { grid-template-columns: 1fr; } }

/* Section heads */
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: clamp(28px, 4vw, 56px); }
.section-head h2 { margin-top: 14px; text-transform: uppercase; }
@media (max-width: 600px) { .section-head { flex-direction: column; align-items: flex-start; } }

/* Community */
.mosaic { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 1fr; gap: 10px; }
.mosaic .media { filter: saturate(.85) contrast(1.05); }
.mosaic > :nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic > :nth-child(4) { grid-column: span 2; grid-row: span 2; }
.mosaic .media { aspect-ratio: 1; height: 100%; }
@media (max-width: 960px) { .mosaic { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .mosaic { grid-template-columns: repeat(2, 1fr); } .mosaic > :nth-child(1), .mosaic > :nth-child(4) { grid-column: span 2; } }

/* Press */
.press { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 96px); align-items: center; }
.press blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 52px); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; text-transform: uppercase; }
.press cite { display: block; margin-top: 18px; font-style: normal; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--steel); font-family: var(--font-display); }
.press__frames { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.press__frames > :first-child { grid-column: 1 / -1; }
@media (max-width: 960px) { .press { grid-template-columns: 1fr; } }

/* Manifesto */
.manifesto { text-align: center; }
.manifesto h2 { font-size: clamp(44px, 9vw, 160px); text-transform: uppercase; letter-spacing: -0.04em; line-height: .9; }
.manifesto p { max-width: 52ch; margin: 28px auto 0; }

/* Newsletter */
.signup { max-width: 560px; }
.signup form { display: flex; margin-top: 24px; border-bottom: 1px solid currentColor; }
.signup input { flex: 1; min-width: 0; background: none; border: 0; padding: 16px 0; font: inherit; font-size: 16px; color: inherit; }
.signup input::placeholder { color: var(--ash); }
.signup button { font-family: var(--font-display); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; padding: 0 0 0 20px; }
.signup .note { font-size: 12px; color: var(--ash); margin-top: 12px; }

/* ---------- Footer ---------- */
.footer { background: var(--black); color: var(--white); padding-block: clamp(64px, 8vw, 120px) 28px; overflow: hidden; }
.footer__top { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: end; padding-bottom: clamp(40px, 6vw, 80px); border-bottom: 1px solid var(--line-dark); }
.footer__top h2 { text-transform: uppercase; font-size: clamp(34px, 4.5vw, 64px); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-top: clamp(40px, 6vw, 72px); }
.footer h4 { font-family: var(--font-display); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--ash); margin-bottom: 18px; font-weight: 500; }
.footer li { margin-bottom: 10px; font-size: 14px; }
.footer li a:hover { opacity: .6; }
.footer__mark img { height: 140px; width: auto; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--line-dark); font-size: 12px; color: var(--ash); }
.footer__wordmark { pointer-events: none; position: relative; z-index: 0; margin-top: 72px; padding-top: 40px; font-family: var(--font-display); font-weight: 600; font-size: clamp(64px, 17vw, 300px); line-height: .8; letter-spacing: -0.05em; color: #1c1c1c; user-select: none; text-align: center; }
@media (max-width: 960px) { .footer__top { grid-template-columns: 1fr; } .footer__grid { grid-template-columns: 1fr 1fr; } .footer__mark { grid-column: 1 / -1; } .footer__mark img { height: 96px; } }

/* ---------- Cart drawer ---------- */
.drawer { position: fixed; inset: 0 0 0 auto; width: min(460px, 100%); z-index: 80; background: var(--white); color: var(--ink); transform: translateX(100%); transition: transform .5s var(--ease); display: flex; flex-direction: column; box-shadow: -30px 0 80px rgba(0,0,0,.2); }
.drawer.open { transform: none; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 22px var(--gutter); border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; font-weight: 600; }
.drawer__body { flex: 1; overflow-y: auto; padding: 8px var(--gutter); }
.drawer__foot { padding: 20px var(--gutter) 28px; border-top: 1px solid var(--line); }
.drawer__total { display: flex; justify-content: space-between; font-family: var(--font-display); font-weight: 600; margin-bottom: 16px; }
.line-item { display: grid; grid-template-columns: 76px 1fr auto; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: center; }
.line-item .media { aspect-ratio: 3 / 4; }
.line-item__name { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: .04em; }
.line-item__meta { font-size: 12px; color: var(--steel); }
.qty { display: inline-flex; border: 1px solid var(--line); margin-top: 8px; }
.qty button { width: 30px; height: 30px; } .qty span { min-width: 30px; text-align: center; line-height: 30px; font-size: 13px; }
.remove { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); }
.scrim { position: fixed; inset: 0; z-index: 70; background: rgba(0,0,0,.5); opacity: 0; pointer-events: none; transition: opacity .35s; }
.scrim.show { opacity: 1; pointer-events: auto; }
.empty { padding: 56px 0; text-align: center; color: var(--steel); }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); z-index: 90; background: var(--ink); color: var(--white); font-family: var(--font-display); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; padding: 14px 22px; opacity: 0; transition: all .35s var(--ease); pointer-events: none; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Shop ---------- */
.page-head { padding-block: clamp(56px, 8vw, 120px) clamp(24px, 3vw, 40px); display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.page-head h1 { text-transform: uppercase; font-size: clamp(44px, 7vw, 112px); margin-top: 14px; }
.page-head .count { font-family: var(--font-display); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--steel); }
.filters { position: sticky; top: var(--header-h); z-index: 20; background: rgba(255,255,255,.94); backdrop-filter: blur(10px); display: flex; gap: 28px; flex-wrap: wrap; align-items: center; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: clamp(24px, 3vw, 48px); }
.filters button { font-family: var(--font-display); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--steel); padding: 6px 0; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.filters button:hover { color: var(--ink); }
.filters button[aria-pressed="true"] { color: var(--ink); border-color: var(--ink); }
.shop-grid { grid-template-columns: repeat(3, 1fr); }
.shop-grid > :first-child { grid-column: span 2; grid-row: span 2; }
.shop-grid > :first-child { display: flex; flex-direction: column; }
.shop-grid > :first-child .media { aspect-ratio: auto; flex: 1; min-height: 0; }
@media (max-width: 960px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } .shop-grid > :first-child { grid-column: 1 / -1; grid-row: auto; } .shop-grid > :first-child .media { aspect-ratio: 4 / 5; flex: none; } }
@media (max-width: 600px) { .shop-grid { grid-template-columns: 1fr 1fr; gap: 12px; } .shop-grid > :first-child { grid-column: 1 / -1; } .shop-grid .card__name { font-size: 13px; } }

/* ---------- PDP ---------- */
.crumbs { font-family: var(--font-display); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--steel); padding: 24px 0 0; display: flex; gap: 12px; }
.pdp { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 5vw, 96px); padding-top: clamp(20px, 3vw, 40px); }
.pdp__gallery { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
.pdp__gallery .media:first-child { grid-column: 1 / -1; }
.pdp__info { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; }
.pdp__title { text-transform: uppercase; font-size: clamp(34px, 3.6vw, 56px); margin-top: 12px; }
.pdp__title .muted { font-weight: 400; text-transform: none; letter-spacing: 0; }
.pdp__price { font-family: var(--font-display); font-size: 20px; font-weight: 500; margin-top: 14px; }
.pdp__desc { margin-top: 22px; color: var(--graphite); max-width: 46ch; font-size: 15px; }
.option { margin-top: 30px; }
.option__label { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--steel); margin-bottom: 12px; }
.option__label b { color: var(--ink); font-weight: 500; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { min-width: 56px; height: 48px; padding: 0 16px; border: 1px solid var(--line); font-family: var(--font-display); font-size: 12px; letter-spacing: .1em; transition: all .2s; }
.chip[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: var(--white); }
.chip:hover { border-color: var(--ink); }
.swatch-lg { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(0,0,0,.18); position: relative; }
.swatch-lg[aria-pressed="true"]::after { content: ""; position: absolute; inset: -6px; border: 1px solid var(--ink); border-radius: 50%; }
.pdp__cta { margin-top: 32px; display: grid; gap: 10px; }
.trust { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.trust div { border: 1px solid var(--line); padding: 12px; font-family: var(--font-display); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--steel); text-align: center; line-height: 1.4; }
.acc { border-top: 1px solid var(--line); margin-top: 32px; }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-family: var(--font-display); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-size: 20px; font-weight: 300; }
.acc details[open] summary::after { content: "–"; }
.acc .acc__body { padding: 0 0 22px; color: var(--graphite); font-size: 14px; }
.acc ul { padding-left: 18px; list-style: disc; } .acc li { margin-bottom: 6px; }
.sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; background: var(--white); border-top: 1px solid var(--line); padding: 12px var(--gutter); display: none; align-items: center; justify-content: space-between; gap: 16px; transform: translateY(100%); transition: transform .4s var(--ease); }
.sticky-bar.show { transform: none; }
.sticky-bar .btn { height: 48px; padding: 0 24px; }
@media (max-width: 960px) { .pdp { grid-template-columns: 1fr; gap: 28px; } .pdp__info { position: static; } .pdp__gallery { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 8px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scrollbar-width: none; } .pdp__gallery::-webkit-scrollbar { display: none; } .pdp__gallery .media { flex: 0 0 84%; scroll-snap-align: start; } .sticky-bar { display: flex; } body.has-sticky { padding-bottom: 76px; } }

/* ---------- Story ---------- */
.story-hero { position: relative; min-height: 78vh; display: grid; align-items: end; background: var(--black); color: var(--white); overflow: hidden; }
.story-hero .hero__media img { object-position: center 30%; }
.story-hero .hero__content { grid-template-columns: 1fr; }
.prose { max-width: 60ch; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.65; color: var(--graphite); }
.prose p + p { margin-top: 1.2em; }
.inverse .prose { color: #d0d0d0; }
.pull { font-family: var(--font-display); font-size: clamp(30px, 4.6vw, 68px); font-weight: 600; line-height: 1; letter-spacing: -0.03em; max-width: 16ch; text-transform: uppercase; }
.chapters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-dark); }
.chapters > div { padding: 40px 32px 40px 0; border-bottom: 1px solid var(--line-dark); }
.chapters .num { font-size: clamp(40px, 5vw, 72px); letter-spacing: -0.03em; color: #333; font-weight: 600; }
.chapters h3 { margin-top: 18px; text-transform: uppercase; font-size: 22px; }
.chapters p { margin-top: 12px; color: #cfcfcf; max-width: 32ch; }
@media (max-width: 960px) { .chapters { grid-template-columns: 1fr; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; } .reveal[data-delay="2"] { transition-delay: .2s; } .reveal[data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .media img { transition: none; } }

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; } .mt-4 { margin-top: 64px; }
.center { text-align: center; } .center .lede { margin-inline: auto; }
@media (max-width: 600px) { .hide-m { display: none !important; } }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* =================== Pass 3 =================== */

/* Header lockup */
.header__logo img { height: 22px; }
@media (max-width: 960px) { .header__logo img { height: 18px; } }
.header__nav { gap: 30px; }

/* Hero text reveal: line-by-line rise */
.lines { overflow: hidden; }
.lines > span { display: block; overflow: hidden; }
.lines > span > span { display: block; transform: translateY(110%); animation: rise 1s var(--ease) forwards; }
.lines > span:nth-child(1) > span { animation-delay: .15s; }
.lines > span:nth-child(2) > span { animation-delay: .27s; }
.lines > span:nth-child(3) > span { animation-delay: .39s; }
.lines > span:nth-child(4) > span { animation-delay: .51s; }
@keyframes rise { to { transform: none; } }
.fade-up { opacity: 0; transform: translateY(16px); animation: fadeup 1s var(--ease) .7s forwards; }
@keyframes fadeup { to { opacity: 1; transform: none; } }
.hero__media::after { background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.05) 30%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.9) 100%); }

/* Parallax */
[data-parallax] { will-change: transform; }

/* Clip reveal for media */
.reveal-clip { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s var(--ease); }
.reveal-clip.in { clip-path: inset(0 0 0 0); }
.reveal-clip img { transform: scale(1.12); transition: transform 1.4s var(--ease); }
.reveal-clip.in img { transform: none; }

/* Anatomy block (Signature Tee) */
.anatomy { position: relative; background: var(--black); color: var(--white); overflow: hidden; }
.anatomy__bg { position: absolute; inset: 0; background: url("../images/backdrop-blur-dark.jpg") center / cover; opacity: .55; }
.anatomy__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 30% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,.6) 100%); }
.anatomy__inner { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; padding-block: var(--section); }
.anatomy__figure { position: relative; }
.anatomy__figure { padding: 4% 10%; } .anatomy__figure img { width: 100%; height: auto; filter: drop-shadow(0 40px 80px rgba(0,0,0,.7)) brightness(1.15) contrast(1.05); }
.hotspot { position: absolute; width: 18px; height: 18px; transform: translate(-50%, -50%); }
.hotspot::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--white); }
.hotspot::after { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 1px solid rgba(255,255,255,.7); animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }
.hotspot span { position: absolute; left: 28px; top: 50%; transform: translateY(-50%); white-space: nowrap; font-family: var(--font-display); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; background: rgba(0,0,0,.6); backdrop-filter: blur(6px); padding: 8px 12px; border: 1px solid rgba(255,255,255,.2); opacity: 0; transform: translate(-6px, -50%); transition: all .5s var(--ease); }
.hotspot.left span { left: auto; right: 28px; }
.anatomy.in .hotspot span { opacity: 1; transform: translateY(-50%); }
.anatomy.in .hotspot:nth-child(2) span { transition-delay: .3s; } .anatomy.in .hotspot:nth-child(3) span { transition-delay: .5s; } .anatomy.in .hotspot:nth-child(4) span { transition-delay: .7s; } .anatomy.in .hotspot:nth-child(5) span { transition-delay: .9s; }
.anatomy__copy h2 { text-transform: uppercase; }
.points { margin-top: 32px; border-top: 1px solid var(--line-dark); }
.points > div { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-dark); align-items: start; }
.points b { font-family: var(--font-display); font-size: 12px; letter-spacing: .3em; color: var(--ash); font-weight: 500; padding-top: 3px; }
.points strong { display: block; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 14px; }
.points p { color: #bdbdbd; font-size: 14px; margin-top: 4px; max-width: 40ch; }
.anatomy__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; align-items: center; }
.counter { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 5vw, 72px); letter-spacing: -0.03em; line-height: 1; }
.stats--inline { display: flex; gap: 40px; margin-top: 28px; }
.stats--inline div { padding: 0; border: 0; }
.stats--inline b { font-size: clamp(32px, 3.6vw, 52px); }
@media (max-width: 960px) { .anatomy__inner { grid-template-columns: 1fr; } .hotspot span { font-size: 10px; padding: 6px 9px; } .stats--inline { gap: 24px; } }

/* Product lines strip (home) */
.lines-strip { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lines-strip a { padding: 28px 20px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; transition: background .3s; }
.lines-strip a:last-child { border-right: 0; }
.lines-strip a:hover { background: var(--bone); }
.lines-strip h3 { text-transform: uppercase; font-size: 18px; }
.lines-strip p { font-size: 13px; color: var(--steel); }
@media (max-width: 960px) { .lines-strip { grid-template-columns: repeat(2, 1fr); } .lines-strip a { border-bottom: 1px solid var(--line); } }
@media (max-width: 600px) { .lines-strip { grid-template-columns: 1fr; } .lines-strip a { border-right: 0; } }

/* Soon state */
.card--soon .media { background: #151515; }
.card--soon .card__price { color: var(--steel); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.card--soon .badge { background: var(--white); color: var(--ink); }
.notify { display: grid; gap: 10px; }
.notify form { display: flex; border: 1px solid var(--ink); }
.notify input { flex: 1; min-width: 0; border: 0; background: none; padding: 0 16px; font: inherit; }
.notify button { height: 54px; padding: 0 22px; background: var(--ink); color: var(--white); font-family: var(--font-display); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }

/* Filters extended */
.filters { gap: 22px; }

/* Brand page */
.brand-hero { position: relative; min-height: 100svh; display: grid; place-items: center; background: var(--black); color: var(--white); overflow: hidden; text-align: center; }
.brand-hero .hero__media img { object-position: center 40%; opacity: .55; }
.brand-hero__inner { position: relative; padding: 140px var(--gutter) 80px; }
.brand-hero__mark { width: clamp(90px, 12vw, 160px); margin: 0 auto 32px; }
.brand-hero h1 { text-transform: uppercase; font-size: clamp(44px, 9vw, 150px); letter-spacing: -0.04em; line-height: .9; }
.brand-hero .lede { margin: 28px auto 0; color: #d6d6d6; }
.marks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.marks > div { aspect-ratio: 1; display: grid; place-items: center; padding: 12%; border: 1px solid var(--line); position: relative; }
.marks > div.dark { border-color: var(--line-dark); }
.marks img { width: 100%; height: auto; max-height: 60%; object-fit: contain; }
.marks span { position: absolute; left: 16px; bottom: 14px; font-family: var(--font-display); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--steel); }
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
.pillars > div { padding: clamp(28px, 4vw, 56px) clamp(20px, 3vw, 48px) clamp(28px, 4vw, 56px) 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 72px 1fr; gap: 20px; }
.pillars .num { font-size: clamp(28px, 3vw, 44px); letter-spacing: -0.02em; color: #cfcbc2; font-weight: 600; }
.pillars h3 { text-transform: uppercase; }
.pillars p { margin-top: 10px; color: var(--graphite); max-width: 42ch; }
@media (max-width: 960px) { .pillars { grid-template-columns: 1fr; } .marks { grid-template-columns: 1fr 1fr; } }
.dna { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.dna > div { padding: clamp(32px, 5vw, 72px); border: 1px solid var(--line-dark); }
.dna h3 { text-transform: uppercase; font-size: clamp(22px, 2.4vw, 32px); }
.dna ul { margin-top: 20px; }
.dna li { padding: 10px 0; border-top: 1px solid var(--line-dark); font-size: 14px; color: #d0d0d0; display: flex; justify-content: space-between; gap: 16px; }
.dna li b { font-family: var(--font-display); font-weight: 500; color: var(--white); letter-spacing: .04em; text-transform: uppercase; font-size: 12px; }
@media (max-width: 960px) { .dna { grid-template-columns: 1fr; } }
.flag-band { background: var(--black); padding: 0; overflow: hidden; }
.flag-band img { width: 100%; height: auto; opacity: .9; }

/* Story timeline */
.timeline { position: relative; }
.timeline::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--line); }
.tl { display: grid; grid-template-columns: 200px 1fr 1fr; gap: clamp(24px, 4vw, 64px); padding: clamp(40px, 6vw, 96px) 0 clamp(40px, 6vw, 96px) clamp(24px, 4vw, 56px); border-bottom: 1px solid var(--line); align-items: start; }
.tl:last-child { border-bottom: 0; }
.tl .year { font-family: var(--font-display); font-weight: 600; font-size: clamp(32px, 4vw, 56px); letter-spacing: -0.03em; line-height: 1; }
.tl .year small { display: block; font-size: 11px; letter-spacing: .28em; color: var(--steel); font-weight: 500; margin-top: 10px; }
.tl h3 { text-transform: uppercase; font-size: clamp(22px, 2.6vw, 34px); }
.tl p { margin-top: 14px; color: var(--graphite); max-width: 46ch; }
@media (max-width: 960px) { .tl { grid-template-columns: 1fr; } }
.quote-band { text-align: center; }
.quote-band blockquote { margin: 0 auto; max-width: 22ch; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: clamp(30px, 5vw, 76px); letter-spacing: -0.03em; line-height: .95; }

/* Support / legal pages */
.doc { display: grid; grid-template-columns: 260px 1fr; gap: clamp(32px, 6vw, 112px); padding-block: clamp(40px, 6vw, 96px) var(--section); }
.doc__nav { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; }
.doc__nav a { display: block; padding: 10px 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--steel); }
.doc__nav a[aria-current="page"] { color: var(--ink); }
.doc__nav a:hover { color: var(--ink); }
.doc__body { max-width: 68ch; }
.doc__body h1 { text-transform: uppercase; font-size: clamp(36px, 5vw, 72px); }
.doc__body .updated { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--steel); font-family: var(--font-display); margin-top: 16px; }
.doc__body h2 { font-size: clamp(20px, 2vw, 26px); text-transform: uppercase; letter-spacing: .02em; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); }
.doc__body h3 { font-size: 16px; margin-top: 28px; }
.doc__body p { margin-top: 14px; color: var(--graphite); line-height: 1.7; }
.doc__body ul { margin-top: 12px; padding-left: 20px; list-style: disc; color: var(--graphite); }
.doc__body li { margin-bottom: 8px; line-height: 1.6; }
.doc__body a { text-decoration: underline; text-underline-offset: 3px; }
.doc__body table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 14px; }
.doc__body th, .doc__body td { padding: 12px 10px; border-bottom: 1px solid var(--line); text-align: left; }
.doc__body th { font-family: var(--font-display); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--steel); font-weight: 500; }
.doc__body .table-wrap { overflow-x: auto; }
.callout { margin-top: 24px; padding: 20px 24px; background: var(--bone); border-left: 2px solid var(--ink); font-size: 14px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-family: var(--font-display); font-weight: 600; display: flex; justify-content: space-between; }
.faq summary::-webkit-details-marker { display: none; } .faq summary::after { content: "+"; font-weight: 300; font-size: 20px; } .faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 0 20px; color: var(--graphite); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.contact-grid > div { border: 1px solid var(--line); padding: 24px; }
.contact-grid h3 { text-transform: uppercase; font-size: 12px; letter-spacing: .2em; color: var(--steel); font-weight: 500; }
.contact-grid p { margin-top: 10px; font-size: 15px; }
.form { display: grid; gap: 12px; margin-top: 32px; }
.form label { font-family: var(--font-display); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--steel); display: block; margin-bottom: 8px; }
.form input, .form textarea, .form select { width: 100%; border: 1px solid var(--line); padding: 14px 16px; font: inherit; background: var(--white); }
.form input:focus, .form textarea:focus, .form select:focus { outline: 0; border-color: var(--ink); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 960px) { .doc { grid-template-columns: 1fr; } .doc__nav { position: static; display: flex; flex-wrap: wrap; gap: 4px 20px; } .doc__nav a { border: 0; padding: 6px 0; } .contact-grid { grid-template-columns: 1fr; } .form .row { grid-template-columns: 1fr; } }

/* =================== Pass 4 =================== */
.header__left { display: flex; align-items: center; gap: 28px; }
.header__v img { height: 22px; width: auto; display: block; }
.header__logo img { height: 20px; }
@media (max-width: 960px) { .header__v img { height: 18px; } .header__logo img { height: 16px; } .header__left { gap: 6px; } }
.footer__grid { position: relative; z-index: 1; }

.doc__body { min-width: 0; }
@media (max-width: 960px) { .doc { grid-template-columns: minmax(0, 1fr); } }
.table-wrap { -webkit-overflow-scrolling: touch; }

@media (max-width: 960px) {
  .hotspot span { white-space: normal; max-width: 150px; line-height: 1.35; }
  .header__v img { height: 20px; }
}

/* Header: true-centered wordmark */
.header__row { position: relative; grid-template-columns: 1fr 1fr; }
.header__logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.header__nav { gap: 24px; }
.header__nav a { letter-spacing: .16em; font-size: 11.5px; }
@media (max-width: 1180px) { .header__nav { gap: 18px; } .header__nav a { letter-spacing: .12em; } }
@media (max-width: 960px) { .header__row { grid-template-columns: 1fr 1fr; } }
.header__v img { height: 26px; }
@media (max-width: 960px) { .header__v img { height: 20px; } .header__left { gap: 10px; } }
