/* ==========================================================================
   Pic 'N' Pay Shoes · Direction A: "The Atelier"
   Warm ink ground, bone type, one brass accent. Shoes lit like sculpture.
   ========================================================================== */

:root {
  --ink: oklch(0.155 0.007 60);
  --ink-2: oklch(0.185 0.009 60);
  --ink-3: oklch(0.225 0.011 62);
  --ink-4: oklch(0.28 0.013 64);
  --bone: oklch(0.935 0.017 85);
  --bone-2: oklch(0.82 0.014 80);
  --bone-3: oklch(0.69 0.012 76);
  --brass: oklch(0.79 0.105 77);
  --brass-2: oklch(0.70 0.10 72);
  --brass-glow: oklch(0.72 0.12 68);
  --line: oklch(0.935 0.017 85 / 0.13);
  --line-2: oklch(0.935 0.017 85 / 0.24);

  --f-display: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  --f-sans: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --gutter: clamp(20px, 5vw, 72px);
  --max: 1296px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font: 400 17px/1.6 var(--f-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
/* Film grain over everything: keeps the dark from looking digital. */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
::selection { background: var(--brass); color: var(--ink); }

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

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: fixed; left: 16px; top: 12px; z-index: 200;
  padding: 10px 16px; background: var(--bone); color: var(--ink);
  font-weight: 600; text-decoration: none;
  transform: translateY(-160%);
}
.skip:focus { transform: none; }

.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }

/* ---------- Type ---------- */
.cap {
  font: 500 11px/1.4 var(--f-sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-3);
}
.display {
  font-family: var(--f-display);
  font-weight: 300;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 144;
  font-size: clamp(42px, 6.2vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: var(--bone);
}
.display em, .hero-title em, .footer-tag em {
  font-style: italic;
  font-weight: 300;
  color: var(--brass);
}
.body {
  max-width: 46ch;
  color: var(--bone-2);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  text-wrap: pretty;
}
.sec-label { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.sec-no {
  font-family: var(--f-display); font-style: italic; letter-spacing: 0;
  font-size: 15px; text-transform: none; color: var(--brass);
}
.sec-label::after { content: ""; width: 48px; height: 1px; background: var(--line-2); }

/* ---------- Buttons ---------- */
.btn {
  --h: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--h);
  padding: 0 26px;
  font: 500 13px/1 var(--f-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--bone);
  transition: background-color .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.btn-solid { background: var(--bone); color: var(--ink); }
.btn-solid:hover { background: var(--brass); border-color: var(--brass); }
.btn-line { background: transparent; color: var(--bone); border-color: var(--line-2); }
.btn-line:hover { border-color: var(--brass); color: var(--brass); }
.btn-sm { --h: 40px; padding: 0 16px; font-size: 12px; letter-spacing: 0.1em; }
.cta-pair { display: flex; flex-wrap: wrap; gap: 12px; }

.arrow {
  width: 48px; height: 48px;
  display: inline-grid; place-items: center;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  transition: border-color .3s var(--ease), color .3s var(--ease), opacity .3s;
}
.arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.3; }
.arrow:hover { border-color: var(--brass); color: var(--brass); }
.arrow:disabled { opacity: .3; cursor: default; }
.arrow:disabled:hover { border-color: var(--line-2); color: inherit; }

.link-line {
  display: inline-flex; gap: 10px; align-items: center;
  padding-bottom: 6px;
  font: 500 12px/1.3 var(--f-sans); letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--line-2);
  transition: border-color .3s, color .3s;
}
.link-line::after { content: "→"; letter-spacing: 0; }
.link-line:hover { color: var(--brass); border-color: var(--brass); }

/* ---------- Status ---------- */
.status {
  display: inline-flex; align-items: center; gap: 8px;
  font: 500 12px/1.3 var(--f-sans); letter-spacing: 0.06em;
  color: var(--bone-2);
  white-space: nowrap;
}
.status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid var(--bone-3);
  flex: none;
}
.status[data-open="true"] .dot { background: var(--brass); border-color: var(--brass); box-shadow: 0 0 0 0 oklch(0.79 0.105 77 / .6); }
.status[data-open="true"] .status-label { color: var(--bone); }
.status-detail { color: var(--bone-3); }
.status-detail:not(:empty)::before { content: "·"; margin: 0 8px 0 0; color: var(--bone-3); }
@media (prefers-reduced-motion: no-preference) {
  .status[data-open="true"] .dot { animation: pulse 2.6s var(--ease) infinite; }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.79 0.105 77 / .55); }
  70%, 100% { box-shadow: 0 0 0 9px oklch(0.79 0.105 77 / 0); }
}

/* ==========================================================================
   1 · HEADER
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  transition: background-color .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: oklch(0.155 0.007 60 / 0.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.header-inner {
  height: 100%;
  width: min(100% - 2 * var(--gutter), 1440px);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.wordmark { display: grid; gap: 2px; text-decoration: none; line-height: 1; }
.wordmark-name {
  font-family: var(--f-display); font-weight: 400;
  font-variation-settings: "opsz" 48;
  font-size: 23px; letter-spacing: -0.01em; color: var(--bone);
  white-space: nowrap;
}
.wordmark-sub {
  display: flex; align-items: center; gap: 8px;
  font: 500 9.5px/1 var(--f-sans); letter-spacing: 0.28em; text-transform: uppercase; color: var(--bone-3);
}
.wordmark-sub i { width: 14px; height: 1px; background: var(--brass); }

.primary-nav ul { display: flex; gap: clamp(14px, 1.6vw, 26px); }
.primary-nav a {
  position: relative;
  font: 500 11.5px/1 var(--f-sans); letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; color: var(--bone-2);
  padding: 10px 0;
  white-space: nowrap;
  transition: color .3s;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px;
  background: var(--brass); transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.primary-nav a:hover { color: var(--bone); }
.primary-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.menu-btn {
  display: none;
  align-items: center; gap: 12px;
  height: 44px; padding: 0 2px 0 14px;
  background: none; border: 0;
  font: 500 11.5px/1 var(--f-sans); letter-spacing: 0.18em; text-transform: uppercase;
}
.menu-btn-lines { display: grid; gap: 6px; width: 24px; }
.menu-btn-lines i { display: block; height: 1px; background: var(--bone); }
.menu-btn-lines i:last-child { width: 16px; justify-self: end; background: var(--brass); }

@media (max-width: 1239px) {
  .primary-nav { display: none; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 719px) {
  :root { --header-h: 64px; }
  .header-actions .status, .header-call { display: none; }
  .wordmark-name { font-size: 21px; }
}

/* ---------- Mobile menu (native dialog: Escape + focus handled) ---------- */
.menu {
  width: 100%; max-width: none; height: 100%; max-height: none;
  margin: 0; padding: 0; border: 0;
  background: var(--ink); color: var(--bone);
}
.menu::backdrop { background: oklch(0.1 0.005 60 / .6); }
.menu-inner {
  min-height: 100%;
  display: grid; grid-template-rows: auto 1fr auto;
  padding: 0 var(--gutter) max(28px, env(safe-area-inset-bottom));
  background:
    radial-gradient(ellipse 70% 40% at 80% 0%, oklch(0.55 0.1 66 / .16), transparent 70%),
    var(--ink);
}
.menu-top { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.menu-close {
  height: 44px; padding: 0 14px; background: none;
  border: 1px solid var(--line-2);
  font: 500 11.5px/1 var(--f-sans); letter-spacing: 0.18em; text-transform: uppercase;
}
.menu-list { padding: 24px 0; align-self: center; }
.menu-list a {
  display: flex; align-items: baseline; gap: 18px;
  padding: 9px 0;
  font-family: var(--f-display); font-weight: 300; font-variation-settings: "opsz" 144;
  font-size: clamp(32px, 8.5vw, 56px); line-height: 1.05; letter-spacing: -0.02em;
  text-decoration: none;
}
.menu-list a span { font: italic 400 14px/1 var(--f-display); color: var(--brass); min-width: 22px; letter-spacing: 0; }
.menu-list a:hover { color: var(--brass); }
.menu-foot { display: grid; gap: 16px; padding-top: 22px; border-top: 1px solid var(--line); }
.menu-addr { color: var(--bone-2); font-size: 15px; }
@media (prefers-reduced-motion: no-preference) {
  .menu[open] .menu-inner { animation: menuIn .6s var(--ease) both; }
  .menu[open] .menu-list li { animation: rise .7s var(--ease) both; }
  .menu[open] .menu-list li:nth-child(n) { animation-delay: calc(var(--i, 0) * 40ms + 80ms); }
}
@keyframes menuIn { from { opacity: 0; } to { opacity: 1; } }

/* ==========================================================================
   2 · HERO · the vitrine
   ========================================================================== */
.hero {
  --lx: .5;  --ly: .12;       /* light position, 0..1 of the hero */
  --bx: .5;                   /* light position relative to the boot */
  --rx: 0deg; --ry: 0deg;     /* boot tilt */
  --top-h: clamp(64px, 9vh, 96px);
  --boot-w: min(34vw, calc((100svh - 520px) * 1.2), 540px);
  position: relative;
  min-height: max(100svh, 700px);
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: var(--header-h);
  isolation: isolate;
  overflow: clip;
}
.hero-stage {
  position: relative;
  min-height: calc(var(--boot-w) * 0.785 + var(--top-h) + 56px);
  overflow: hidden;
}
/* Back wall with a pool of warm light that follows the pointer */
.hero-wall {
  position: absolute; inset: calc(-1 * var(--header-h)) 0 0 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 30% 58% at calc(var(--lx) * 100%) calc(var(--ly) * 100% + 22%), oklch(0.62 0.12 66 / .34), oklch(0.5 0.09 60 / .12) 45%, transparent 72%),
    radial-gradient(ellipse 60% 70% at 50% 60%, oklch(0.21 0.014 62), transparent 75%),
    var(--ink);
}
/* The beam: from the lamp (pointer x) down to the plinth */
.hero-beam {
  position: absolute; inset: calc(-1 * var(--header-h)) 0 var(--top-h) 0;
  z-index: -1;
  filter: blur(22px);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-beam i {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, oklch(0.88 0.09 78 / .16), oklch(0.8 0.1 72 / .07) 65%, oklch(0.8 0.1 72 / .02));
  clip-path: polygon(
    calc(var(--lx) * 100% - 2.5%) 0, calc(var(--lx) * 100% + 2.5%) 0,
    calc(50% + var(--boot-w) * 0.62) 100%, calc(50% - var(--boot-w) * 0.62) 100%);
}

/* Plinth top surface: glossy, catches the light */
.plinth-top {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: var(--top-h);
  background:
    radial-gradient(ellipse calc(var(--boot-w) * 0.62) 62% at calc(50% + (var(--lx) - .5) * 22%) 50%, oklch(0.56 0.09 70 / .95), oklch(0.36 0.055 64 / .5) 55%, transparent 82%),
    radial-gradient(ellipse calc(var(--boot-w) * 1.3) 130% at 50% 40%, oklch(0.27 0.025 62 / .9), transparent 72%),
    linear-gradient(to bottom, oklch(0.12 0.006 60), oklch(0.2 0.011 62));
  clip-path: polygon(var(--gutter) 0, calc(100% - var(--gutter)) 0, 100% 100%, 0 100%);
}
.plinth-top::after { /* back edge hairline */
  content: ""; position: absolute; left: var(--gutter); right: var(--gutter); top: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
}

/* The object */
.object {
  position: absolute;
  left: 50%; bottom: calc(var(--top-h) * 0.42);
  width: var(--boot-w);
  aspect-ratio: 1006 / 790;
  translate: -50% 0;
  perspective: 1400px;
}
.boot {
  position: relative; width: 100%; height: 100%;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transform-origin: 50% 100%;
  will-change: transform;
}
.boot img {
  width: 100%; height: 100%;
  filter: brightness(.97) contrast(1.07) saturate(1.06) drop-shadow(0 0 0.5px oklch(0.1 0 0 / .8));
}
.boot-shade, .boot-spec {
  position: absolute; inset: 0;
  -webkit-mask: url("img/blundstone-redwood.webp") center / 100% 100% no-repeat;
  mask: url("img/blundstone-redwood.webp") center / 100% 100% no-repeat;
  pointer-events: none;
}
/* Shade: the side away from the lamp falls into shadow, the sole goes dark */
.boot-shade {
  mix-blend-mode: multiply;
  background:
    radial-gradient(120% 110% at calc(var(--bx) * 100%) -18%, transparent 38%, oklch(0.12 0.01 50 / .62) 95%),
    linear-gradient(to bottom, transparent 62%, oklch(0.1 0.01 50 / .38));
}
/* Specular: warm sheen where the lamp hits the leather */
.boot-spec {
  mix-blend-mode: screen;
  background:
    radial-gradient(30% 34% at calc(var(--bx) * 100%) 30%, oklch(0.9 0.09 74 / .5), oklch(0.72 0.1 62 / .14) 55%, transparent 78%),
    linear-gradient(calc(90deg + (var(--bx) - .5) * 60deg), transparent 70%, oklch(0.85 0.08 70 / .12));
}
/* Soft cast shadow; slides away from the light */
.cast {
  position: absolute; left: 6%; right: 2%; bottom: -5%; height: 14%;
  background: radial-gradient(closest-side, oklch(0.05 0 0 / .95), oklch(0.05 0 0 / .45) 55%, transparent);
  transform: translateX(calc((.5 - var(--lx)) * var(--boot-w) * .35)) scaleX(1.08);
  filter: blur(6px);
}
/* Floor reflection on the glossy plinth top */
.refl {
  position: absolute; left: 0; top: 100%; width: 100%; height: 40%;
  overflow: hidden;
  opacity: .34;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 72%);
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
  filter: blur(1.4px) brightness(.62) saturate(.9);
  pointer-events: none;
}
.refl img { width: 100%; height: auto; transform: scaleY(-1); transform-origin: 50% 50%; margin-top: calc(var(--boot-w) * -0.004); }

/* Vitrine plaques on either side of the boot */
.plaque {
  position: absolute;
  bottom: calc(var(--top-h) + var(--boot-w) * 0.2);
  display: grid; gap: 7px;
  width: min(220px, 18vw);
}
.plaque-l { left: var(--gutter); }
.plaque-r { right: var(--gutter); text-align: right; justify-items: end; }
.plaque-rule { width: 40px; height: 1px; background: var(--brass); margin: 4px 0 6px; }
.plaque-title { font: 400 22px/1.1 var(--f-display); font-variation-settings: "opsz" 48; color: var(--bone); }
.plaque-text { font-size: 13.5px; line-height: 1.45; color: var(--bone-2); }
.plaque-hint { margin-top: 18px; color: var(--bone-3); display: inline-flex; gap: 10px; align-items: center; }
.plaque-hint::before { content: ""; width: 7px; height: 7px; border: 1px solid var(--brass); border-radius: 50%; }
@media (hover: none), (pointer: coarse) { .plaque-hint { display: none; } }

/* Plinth front face: the inscription */
.plinth-front {
  position: relative;
  padding: clamp(28px, 4vh, 44px) 0 clamp(32px, 5vh, 56px);
  background:
    radial-gradient(ellipse 50% 90px at calc(50% + (var(--lx) - .5) * 30%) 0, oklch(0.4 0.05 64 / .35), transparent 80%),
    linear-gradient(to bottom, oklch(0.205 0.011 62), oklch(0.165 0.008 60) 45%, var(--ink));
  border-top: 1px solid oklch(0.935 0.017 85 / .2);
}
.plinth-front::before { /* the lit front edge */
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: radial-gradient(ellipse 30% 100% at calc(50% + (var(--lx) - .5) * 40%) 50%, oklch(0.88 0.08 78 / .75), transparent);
}
.hero-eyebrow { display: none; align-items: center; gap: 14px; margin-bottom: clamp(14px, 2vh, 22px); }
.hero-eyebrow i { width: 28px; height: 1px; background: var(--brass); }
.hero-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(46px, 5.9vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.hero-title .ln { display: block; overflow: clip; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.hero-title .ln > span { display: inline-block; }
.hero-title .ln2 { text-align: right; }
.hero-foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px 48px;
  margin-top: clamp(20px, 3.2vh, 36px);
}
.hero-lede { max-width: 52ch; color: var(--bone-2); font-size: 16px; line-height: 1.6; text-wrap: pretty; }

/* Hero entrance: the lamp comes up, then the words */
@media (prefers-reduced-motion: no-preference) {
  .hero-wall, .hero-beam { animation: lampOn 2.2s var(--ease) both; }
  .boot img { animation: bootIn 1.8s .15s var(--ease) both; }
  .refl, .cast { animation: fadeIn 1.6s .5s var(--ease) both; }
  .plaque { animation: fadeUp 1.2s .9s var(--ease) both; }
  .hero-title .ln > span { animation: lineUp 1.2s var(--ease) both; }
  .hero-title .ln1 > span { animation-delay: .35s; }
  .hero-title .ln2 > span { animation-delay: .5s; }
  .hero-eyebrow, .hero-foot { animation: fadeUp 1.1s .7s var(--ease) both; }
}
@keyframes lampOn { 0% { opacity: 0; } 30% { opacity: .35; } 38% { opacity: .2; } 100% { opacity: 1; } }
@keyframes bootIn { from { opacity: 0; filter: brightness(.1) contrast(1.08); transform: translateY(8px); } to { opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } }
@keyframes lineUp { from { transform: translateY(105%); } }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } }

/* Tablet */
@media (max-width: 1099px) {
  .hero-eyebrow { display: flex; }
  .hero { --boot-w: min(60vw, calc((100svh - 560px) * 1.25), 560px); }
  .hero-title { font-size: clamp(44px, 7.6vw, 80px); }
  .hero-title .ln2 { text-align: left; padding-left: 1.2em; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .plaque { width: 200px; top: 28px; bottom: auto; }
  .plaque-hint { display: none; }
}
/* Phone */
@media (max-width: 719px) {
  .hero {
    --boot-w: min(84vw, 360px);
    --top-h: 56px;
    min-height: 100svh;
  }
  .hero-stage { min-height: calc(var(--boot-w) * 0.785 + var(--top-h) + 64px); }
  .hero-wall { background:
    radial-gradient(ellipse 60% 44% at calc(var(--lx) * 100%) calc(var(--ly) * 100% + 24%), oklch(0.62 0.12 66 / .36), oklch(0.5 0.09 60 / .12) 45%, transparent 72%),
    var(--ink); }
  .plaque-r { display: none; }
  .plaque-l { top: 18px; bottom: auto; width: auto; grid-auto-flow: column; align-items: baseline; gap: 10px; }
  .plaque-l .plaque-rule { width: 18px; margin: 0; align-self: center; }
  .plaque-l .plaque-title { font-size: 15px; }
  .plaque-l .plaque-text { font-size: 12px; }
  .hero-title { font-size: clamp(40px, 11.6vw, 54px); line-height: 1; }
  .hero-title .ln2 { padding-left: 0; }
  .hero-lede { font-size: 15.5px; }
  .hero-foot { gap: 22px; }
  .hero .cta-pair { width: 100%; display: grid; grid-template-columns: 1fr; }
}

/* ==========================================================================
   Shared section frame
   ========================================================================== */
.section { position: relative; padding-block: clamp(88px, 10vw, 150px); }
.section + .section { border-top: 1px solid var(--line); }
.sec-head { display: grid; gap: 24px; margin-bottom: clamp(48px, 6vw, 88px); }

/* Scroll reveals (add-class-once, motion only) */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 1.1s var(--ease), transform 1.3s var(--ease); transition-delay: var(--d, 0s); }
  .js [data-reveal].in { opacity: 1; transform: none; }
}

/* ==========================================================================
   3 · NEW IN + FALL EDIT
   ========================================================================== */
.newin-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.newin-copy .display { margin-bottom: 28px; }
.newin-copy .amp { font-style: italic; color: var(--bone-3); }
.pair-case {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: clamp(40px, 5vw, 72px) clamp(20px, 3vw, 44px) 32px;
  background: linear-gradient(to bottom, var(--ink-2), var(--ink));
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.pair-light {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 34% 60% at 28% 18%, oklch(0.6 0.11 68 / .22), transparent 70%),
    radial-gradient(ellipse 34% 60% at 72% 18%, oklch(0.6 0.11 68 / .22), transparent 70%);
}
.pair-case::after { /* shelf */
  content: ""; position: absolute; left: 0; right: 0; bottom: 96px; height: 1px;
  background: linear-gradient(to right, transparent, var(--line-2), transparent);
}
.pair-item { display: grid; gap: 40px; }
.pair-shoe { aspect-ratio: 4 / 3; display: flex; align-items: flex-end; justify-content: center; position: relative; }
.pair-shoe img { max-height: 100%; width: 92%; object-fit: contain; filter: brightness(.9) contrast(1.05) drop-shadow(0 18px 14px oklch(0.05 0 0 / .7)); transition: transform 1s var(--ease); }
.pair-item:hover .pair-shoe img { transform: translateY(-6px); }
.pair-item figcaption { display: grid; gap: 6px; text-align: center; font: 400 17px/1.3 var(--f-display); color: var(--bone); }

/* The fall edit: horizontal vitrine gallery */
.edit { margin-top: clamp(88px, 10vw, 150px); }
.edit-head {
  display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 24px 64px;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.edit-intro { justify-self: start; }
.edit-controls { display: flex; align-items: center; gap: 12px; }
.edit-count { margin-right: 12px; font-variant-numeric: tabular-nums; }
.edit-count b { color: var(--bone); font-weight: 500; }

.vit-track {
  display: flex; gap: clamp(12px, 1.4vw, 20px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding-inline: max(var(--gutter), (100% - var(--max)) / 2);
  scroll-padding-inline: max(var(--gutter), (100% - var(--max)) / 2);
  padding-bottom: 8px;
  scrollbar-width: none;
}
.vit-track::-webkit-scrollbar { display: none; }
.vit-track:focus-visible { outline-offset: -2px; }
.vit { flex: 0 0 clamp(264px, 27vw, 380px); scroll-snap-align: start; }
.vit figure { display: grid; gap: 20px; }
.vit-case {
  --mx: .5;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--ink-2), oklch(0.13 0.006 60));
  border: 1px solid var(--line);
  isolation: isolate;
}
.vit-case::before { /* spotlight */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 48% 62% at calc(var(--mx) * 100%) 8%, oklch(0.64 0.12 68 / .36), oklch(0.5 0.08 60 / .1) 50%, transparent 76%),
    radial-gradient(ellipse 60% 14% at 50% 72%, oklch(0.4 0.05 62 / .5), transparent 80%);
  opacity: .38;
  transition: opacity .9s var(--ease);
}
.vit-case::after { /* shelf edge */
  content: ""; position: absolute; left: 0; right: 0; top: 72%; height: 1px;
  background: linear-gradient(to right, transparent, oklch(0.935 0.017 85 / .2), transparent);
}
.vit.is-lit .vit-case::before, .vit:hover .vit-case::before, .vit:focus-within .vit-case::before { opacity: 1; }
.vit-no { position: absolute; top: 18px; left: 20px; }
.vit-stage, .vit-refl {
  position: absolute; left: 11%; right: 11%; height: 46%;
  display: flex; justify-content: center;
}
.vit-stage { top: 26%; align-items: flex-end; }
.vit-stage img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  filter: brightness(.72) contrast(1.06) saturate(.95);
  transition: filter .9s var(--ease), transform 1.1s var(--ease);
}
.vit.is-lit .vit-stage img, .vit:hover .vit-stage img, .vit:focus-within .vit-stage img { filter: brightness(.95) contrast(1.06); }
.vit:hover .vit-stage img { transform: translateY(-4px); }
.vit-refl { top: 72%; align-items: flex-start; opacity: .2; -webkit-mask-image: linear-gradient(to bottom, #000, transparent 36%); mask-image: linear-gradient(to bottom, #000, transparent 36%); filter: blur(1px); }
.vit-refl img { max-width: 100%; max-height: 100%; object-fit: contain; transform: scaleY(-1); }
.vit-shadow { position: absolute; left: 18%; right: 18%; top: calc(72% - 10px); height: 20px; background: radial-gradient(closest-side, oklch(0.04 0 0 / .85), transparent); filter: blur(3px); }
.vit figcaption { display: grid; gap: 4px; padding-right: 12px; }
.vit-name { font: 400 22px/1.2 var(--f-display); font-variation-settings: "opsz" 48; }
.vit-meta { font-size: 14px; color: var(--bone-3); }

.edit-progress { position: relative; height: 1px; margin-top: 36px; background: var(--line); }
.edit-progress i { position: absolute; left: 0; top: 0; height: 1px; width: 100%; background: var(--brass); transform-origin: left; transform: scaleX(var(--p, .2)); transition: transform .3s linear; }

@media (max-width: 1099px) {
  .newin-grid { grid-template-columns: 1fr; }
  .edit-head { grid-template-columns: 1fr auto; }
  .edit-intro { grid-column: 1 / -1; grid-row: 2; }
}
@media (max-width: 719px) {
  .pair-case { gap: 4px; padding-inline: 10px; }
  .pair-case::after { bottom: 88px; }
  .pair-item { gap: 30px; }
  .pair-item figcaption { font-size: 15px; }
  .edit-head { grid-template-columns: 1fr; }
  .edit-controls { grid-row: 3; }
  .vit { flex-basis: 78vw; }
}

/* ==========================================================================
   4 · DEPARTMENTS
   ========================================================================== */
.depts .sec-head .display { max-width: 12ch; }
.dept-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  column-gap: clamp(32px, 6vw, 96px);
  border-top: 1px solid var(--line);
}
.dept-row { grid-column: 1; border-bottom: 1px solid var(--line); }
.dept-btn {
  width: 100%;
  display: grid; grid-template-columns: 44px 1fr auto; align-items: baseline; gap: 12px;
  padding: clamp(18px, 2.2vw, 28px) 0;
  background: none; border: 0; text-align: left;
}
.dept-no { font: italic 400 15px/1 var(--f-display); color: var(--bone-3); transition: color .4s; }
.dept-name {
  font-family: var(--f-display); font-weight: 300; font-variation-settings: "opsz" 144;
  font-size: clamp(34px, 4.6vw, 68px); line-height: 1; letter-spacing: -0.025em;
  color: var(--bone-3);
  transition: color .5s var(--ease), transform .7s var(--ease);
}
.dept-count { font: 500 11px/1 var(--f-sans); letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-3); }
.dept-btn:hover .dept-name, .dept-row.is-active .dept-name { color: var(--bone); }
.dept-row.is-active .dept-name { transform: translateX(10px); }
.dept-row.is-active .dept-no { color: var(--brass); }
.dept-row.is-active .dept-name em { color: var(--brass); }

.dept-panel {
  grid-column: 2; grid-row: 1 / span 5;
  align-self: start;
  padding-top: clamp(24px, 2.6vw, 36px);
  opacity: 0; visibility: hidden;
  transition: opacity .6s var(--ease), visibility 0s .6s;
}
.dept-panel.is-active { opacity: 1; visibility: visible; transition: opacity .8s var(--ease), visibility 0s; }
.dept-panel-img { display: none; }
.dept-blurb { font: 300 clamp(20px, 1.8vw, 26px)/1.35 var(--f-display); font-variation-settings: "opsz" 36; color: var(--bone); margin-bottom: 32px; text-wrap: pretty; }
.dept-groups { display: grid; gap: 26px; }
.dept-group h4 { margin-bottom: 10px; display: flex; gap: 10px; align-items: center; }
.dept-group h4::before { content: ""; width: 14px; height: 1px; background: var(--brass); }
.dept-group p { color: var(--bone-2); font-size: 15px; line-height: 1.75; }
.dept-group p span + span::before { content: " · "; color: var(--bone-3); }
.dept-panel .link-line { margin-top: 32px; }

/* Cursor-follow light-pool preview */
.dept-follow {
  position: fixed; left: 0; top: 0; z-index: 40;
  width: 270px; aspect-ratio: 1;
  pointer-events: none;
  display: grid; place-items: center;
  opacity: 0; scale: .9;
  transition: opacity .45s var(--ease), scale .6s var(--ease);
}
.dept-follow.is-on { opacity: 1; scale: 1; }
.dept-follow-light {
  position: absolute; inset: -10%;
  background: radial-gradient(closest-side, oklch(0.62 0.12 68 / .5), oklch(0.5 0.09 60 / .16) 55%, transparent);
  filter: blur(4px);
}
.dept-follow img { position: relative; width: 78%; max-height: 70%; object-fit: contain; filter: drop-shadow(0 22px 18px oklch(0.04 0 0 / .8)); transition: opacity .3s; }
.dept-follow img[src=""], .dept-follow img:not([src]) { opacity: 0; }
@media (hover: none), (pointer: coarse), (max-width: 1099px) { .dept-follow { display: none; } }

@media (max-width: 1099px) {
  .dept-grid { grid-template-columns: 1fr; }
  .dept-panel {
    grid-column: 1; grid-row: auto;
    display: none; opacity: 1; visibility: visible;
    padding: 4px 0 36px 56px;
    border-bottom: 1px solid var(--line);
  }
  .dept-row.is-active { border-bottom-color: transparent; }
  .dept-panel.is-active { display: block; }
  .dept-panel-img {
    display: flex; justify-content: center; align-items: flex-end;
    height: 200px; margin-bottom: 28px;
    background: radial-gradient(ellipse 60% 80% at 50% 10%, oklch(0.6 0.11 68 / .28), transparent 72%);
    border-bottom: 1px solid var(--line);
  }
  .dept-panel-img img { max-height: 76%; max-width: 70%; object-fit: contain; margin-bottom: 16px; filter: drop-shadow(0 16px 12px oklch(0.04 0 0 / .8)); }
}
@media (max-width: 719px) {
  .dept-btn { grid-template-columns: 30px 1fr auto; }
  .dept-panel { padding-left: 0; }
  .dept-row.is-active .dept-name { transform: none; }
  .dept-count { display: none; }
  .dept-btn::after { content: "+"; font: 300 26px/1 var(--f-display); color: var(--bone-3); transition: transform .4s var(--ease); }
  .dept-row.is-active .dept-btn::after { transform: rotate(45deg); color: var(--brass); }
}

/* ==========================================================================
   5 · FITTING + size gauge
   ========================================================================== */
.fit-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(40px, 7vw, 120px); align-items: start; }
.fit-copy .display { margin-bottom: 28px; }
@media (min-width: 1100px) { .fit-copy { position: sticky; top: calc(var(--header-h) + 48px); } }
.ranges { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 0; margin-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--line); }
.ranges > div { padding: 22px 32px 0 0; margin-right: 32px; border-right: 1px solid var(--line); }
.ranges > div:last-child { border-right: 0; margin-right: 0; }
.ranges dd { display: grid; gap: 8px; margin-top: 12px; }
.range-num { font: 300 clamp(48px, 5vw, 76px)/0.9 var(--f-display); font-variation-settings: "opsz" 144; letter-spacing: -0.03em; }
.range-num small { font-size: .32em; font-style: italic; margin: 0 .3em; color: var(--brass); letter-spacing: 0; vertical-align: .6em; }
.range-note { font-size: 13.5px; color: var(--bone-3); }

.gauge {
  --thumb: 22px;
  position: relative;
  padding: clamp(28px, 3.4vw, 48px);
  border: 1px solid var(--line-2);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, oklch(0.5 0.08 64 / .14), transparent 70%),
    linear-gradient(to bottom, var(--ink-2), var(--ink));
}
.gauge::before, .gauge::after { /* corner marks, like a jeweller's case */
  content: ""; position: absolute; width: 14px; height: 14px; border: 1px solid var(--brass);
}
.gauge::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.gauge::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.gauge-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 28px; }
.gauge-head h3 { color: var(--brass); font-weight: 600; }
.gauge-hint { font: italic 300 16px/1.3 var(--f-display); color: var(--bone-2); }

.gauge-dept { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 0 8px; padding: 0; border: 0; border-bottom: 1px solid var(--line); }
.gauge-dept label { position: relative; cursor: pointer; }
.gauge-dept input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.gauge-dept span {
  display: block; padding: 14px 4px 16px; text-align: center;
  font: 500 12px/1 var(--f-sans); letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-3);
  border-bottom: 1px solid transparent; margin-bottom: -1px;
  transition: color .3s, border-color .3s;
}
.gauge-dept label:hover span { color: var(--bone); }
.gauge-dept input:checked + span { color: var(--bone); border-bottom-color: var(--brass); }
.gauge-dept input:focus-visible + span { outline: 2px solid var(--brass); outline-offset: -2px; }

.gauge-read { display: grid; justify-items: center; gap: 4px; padding: 28px 0 8px; }
.gauge-num {
  font: 300 clamp(96px, 11vw, 150px)/0.9 var(--f-display);
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.04em;
  font-variant-numeric: lining-nums;
  color: var(--bone);
  min-height: 0.9em;
  transition: color .4s var(--ease);
}
.gauge[data-in="false"] .gauge-num { color: var(--bone-3); }

.gauge-scale { position: relative; padding-top: 34px; margin-top: 16px; }
.gauge-band {
  position: absolute; top: 0; height: 22px;
  left: calc(var(--thumb) / 2 + (100% - var(--thumb)) * var(--a, 0));
  width: calc((100% - var(--thumb)) * (var(--b, 1) - var(--a, 0)));
  border-top: 1px solid var(--brass);
  transition: left .5s var(--ease), width .5s var(--ease);
}
.gauge-band::before, .gauge-band::after { content: ""; position: absolute; top: -1px; width: 1px; height: 8px; background: var(--brass); }
.gauge-band::before { left: 0; } .gauge-band::after { right: 0; }
.gauge-band span { position: absolute; top: 8px; left: 50%; translate: -50% 0; color: var(--brass); font-size: 10px; white-space: nowrap; }
.gauge input[type="range"] {
  -webkit-appearance: none; appearance: none;
  display: block; width: 100%; height: 44px; margin: 0;
  background: transparent; cursor: ew-resize;
  position: relative; z-index: 2;
}
.gauge input[type="range"]::-webkit-slider-runnable-track { height: 44px; background: linear-gradient(var(--line-2), var(--line-2)) center / 100% 1px no-repeat; }
.gauge input[type="range"]::-moz-range-track { height: 44px; background: linear-gradient(var(--line-2), var(--line-2)) center / 100% 1px no-repeat; }
.gauge input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: var(--thumb); height: 44px; border: 0;
  background:
    radial-gradient(circle at 50% 50%, var(--brass) 0 5px, transparent 5.5px),
    linear-gradient(var(--brass), var(--brass)) center / 1px 100% no-repeat;
  filter: drop-shadow(0 0 8px oklch(0.72 0.12 68 / .6));
}
.gauge input[type="range"]::-moz-range-thumb {
  width: var(--thumb); height: 44px; border: 0; border-radius: 0;
  background:
    radial-gradient(circle at 50% 50%, var(--brass) 0 5px, transparent 5.5px),
    linear-gradient(var(--brass), var(--brass)) center / 1px 100% no-repeat;
}
.gauge input[type="range"]:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; }
.gauge-ticks { position: relative; height: 34px; margin: -14px calc(var(--thumb) / 2) 0; }
.gauge-ticks span {
  position: absolute; top: 0; left: calc(var(--p) * 100%);
  width: 1px; height: 6px; background: var(--line-2);
}
.gauge-ticks span.major { height: 10px; background: oklch(0.935 0.017 85 / .45); }
.gauge-ticks span.out { background: oklch(0.935 0.017 85 / .14); }
.gauge-ticks span b {
  position: absolute; top: 16px; left: 50%; translate: -50% 0;
  font: 400 12px/1 var(--f-sans); color: var(--bone-3); font-variant-numeric: tabular-nums;
}
.gauge-ticks span.cur b { color: var(--brass); }
.gauge-groups { position: relative; height: 18px; margin: 0 calc(var(--thumb) / 2); }
.gauge-groups span { position: absolute; top: 0; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--bone-3); border-top: 1px solid var(--line); padding-top: 6px; left: calc(var(--a) * 100%); width: calc((var(--b) - var(--a)) * 100%); }
.gauge-groups:empty { display: none; }

.gauge-steps { display: flex; justify-content: space-between; margin: 14px 0 0; }
.gauge-steps .arrow { width: 44px; height: 44px; }

.gauge-verdict { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); display: grid; gap: 10px; justify-items: start; }
.verdict-title { display: flex; align-items: center; gap: 12px; font: 400 clamp(22px, 2vw, 28px)/1.2 var(--f-display); font-variation-settings: "opsz" 48; }
.verdict-mark { width: 12px; height: 12px; border-radius: 50%; border: 1px solid var(--brass); background: var(--brass); flex: none; transition: background .3s; }
.gauge[data-in="false"] .verdict-mark { background: transparent; border-color: var(--bone-3); }
.verdict-text { color: var(--bone-2); font-size: 15.5px; max-width: 48ch; margin-bottom: 8px; min-height: 3.2em; }

@media (max-width: 1099px) { .fit-grid { grid-template-columns: 1fr; } }
@media (max-width: 719px) {
  .ranges { grid-template-columns: repeat(3, 1fr); }
  .ranges > div { padding-right: 12px; margin-right: 12px; }
  .range-num { font-size: 44px; }
  .range-note { font-size: 12px; }
  .gauge { padding: 24px 18px 28px; }
  .gauge-head { flex-direction: column; gap: 6px; }
  .gauge-dept span { letter-spacing: .1em; font-size: 11px; }
  .gauge-ticks span b { font-size: 10.5px; }
  .gauge-ticks span.minor-label b { display: none; }
}

/* ==========================================================================
   6 · BRANDS
   ========================================================================== */
.brands-head { display: grid; grid-template-columns: 1fr minmax(280px, 420px); gap: 32px 64px; align-items: end; margin-bottom: clamp(48px, 6vw, 80px); }
.search { display: grid; gap: 12px; }
.search-field { position: relative; }
.search-field input {
  width: 100%;
  padding: 10px 40px 14px 0;
  background: transparent; border: 0; border-bottom: 1px solid var(--line-2);
  border-radius: 0;
  font: 300 clamp(24px, 2.4vw, 32px)/1.2 var(--f-display); font-variation-settings: "opsz" 48;
  color: var(--bone);
  transition: border-color .3s;
}
.search-field input::placeholder { color: oklch(0.69 0.012 76 / .7); font-style: italic; }
.search-field input:focus { outline: none; border-bottom-color: var(--brass); }
.search-field input:focus-visible { outline: 2px solid var(--brass); outline-offset: 6px; }
.search-field input::-webkit-search-cancel-button { filter: invert(1) sepia(1) saturate(2) hue-rotate(10deg); opacity: .6; }
.search-field svg { position: absolute; right: 2px; top: 50%; translate: 0 -50%; width: 22px; height: 22px; fill: none; stroke: var(--bone-3); stroke-width: 1.2; pointer-events: none; }
.search-count { min-height: 1.4em; }

.brand-index {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 0.28em 0;
  font-family: var(--f-display); font-weight: 300; font-variation-settings: "opsz" 72;
  font-size: clamp(22px, 2.2vw, 32px); line-height: 1.3; letter-spacing: -0.012em;
}
.brand-index li { display: inline-flex; align-items: baseline; }
.brand-index li.b::after { content: "/"; margin: 0 .42em; color: var(--ink-4); font-weight: 200; }
.brand-index .letter {
  font: 500 10px/1 var(--f-sans); font-style: normal; letter-spacing: .1em; color: var(--brass);
  margin-right: .55em; translate: 0 -.95em;
}
.brand-index li.b { color: var(--bone-2); transition: color .3s; }
.brand-index li.b:hover { color: var(--bone); }
.brand-index mark { background: none; color: var(--brass); border-bottom: 1px solid var(--brass); }
.brand-index[data-filtered] li.b { color: var(--bone); }
.brand-empty { margin-top: 24px; font: italic 300 22px/1.4 var(--f-display); color: var(--bone-2); }
.brand-empty a { color: var(--brass); }
@media (max-width: 899px) { .brands-head { grid-template-columns: 1fr; } }

/* ==========================================================================
   7 · STORY
   ========================================================================== */
.story-head { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(32px, 6vw, 96px); align-items: end; margin-bottom: clamp(56px, 7vw, 104px); }
.story-head .display { max-width: 13ch; }
.story-photo { display: grid; gap: 12px; }
.story-photo-frame {
  position: relative; overflow: hidden;
  background: oklch(0.3 0.04 62);
  border: 1px solid var(--line);
}
.story-photo-frame img {
  width: 100%;
  filter: grayscale(1) sepia(.5) contrast(1.15) brightness(.62);
  mix-blend-mode: luminosity;
}
.story-photo-frame::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 90% at 30% 20%, transparent 40%, oklch(0.1 0.01 60 / .7));
}
.timeline {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--line-2); }
.timeline li { position: relative; padding: 40px clamp(16px, 2.4vw, 40px) 0 0; }
.timeline li::before { content: ""; position: absolute; left: 0; top: -4px; width: 9px; height: 9px; border-radius: 50%; background: var(--ink); border: 1px solid var(--brass); }
.timeline li:last-child::before { background: var(--brass); }
.tl-year { font: 300 clamp(44px, 4.6vw, 72px)/1 var(--f-display); font-variation-settings: "opsz" 144; letter-spacing: -0.03em; margin-bottom: 22px; }
.tl-year small { font-size: .3em; font-style: italic; color: var(--brass); letter-spacing: 0; }
.tl-title { font: 500 12px/1.4 var(--f-sans); letter-spacing: .18em; text-transform: uppercase; color: var(--bone); margin-bottom: 10px; }
.tl-text { color: var(--bone-2); font-size: 15.5px; max-width: 30ch; }
.timeline li:nth-child(2) { --d: .1s; } .timeline li:nth-child(3) { --d: .2s; } .timeline li:nth-child(4) { --d: .3s; }

@media (max-width: 1099px) { .story-head { grid-template-columns: 1fr; } .story-photo { max-width: 460px; } }
@media (max-width: 899px) {
  .timeline { grid-template-columns: 1fr; padding-left: 28px; }
  .timeline::before { left: 4px; right: auto; top: 8px; bottom: 8px; width: 1px; height: auto; }
  .timeline li { padding: 0 0 44px; }
  .timeline li:last-child { padding-bottom: 0; }
  .timeline li::before { left: -28px; top: 18px; }
  .tl-year { margin-bottom: 12px; }
}

/* ==========================================================================
   8 · VISIT
   ========================================================================== */
.visit { overflow: hidden; isolation: isolate; }
.visit-light { position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse 40% 60% at 20% 0%, oklch(0.55 0.1 66 / .16), transparent 70%); }
.visit-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(40px, 7vw, 120px); align-items: start; }
.visit-main .display { margin-bottom: 30px; max-width: 11ch; }
.status-lg { font-size: 14px; margin-bottom: 22px; }
.status-lg .dot { width: 9px; height: 9px; }
.visit-main .body { margin-bottom: 34px; }
.coords { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; }
.coords i { width: 16px; height: 1px; background: var(--line-2); }

.hours { padding-top: 10px; }
.hours h3 { margin-bottom: 18px; color: var(--brass); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-top: 1px solid var(--line); }
.hours-table tr:last-child { border-bottom: 1px solid var(--line); }
.hours-table th, .hours-table td { padding: 17px 0; text-align: left; font-weight: 400; vertical-align: baseline; }
.hours-table th { font: 400 21px/1.2 var(--f-display); font-variation-settings: "opsz" 36; color: var(--bone-2); }
.hours-table td { text-align: right; color: var(--bone-2); font-size: 15px; font-variant-numeric: tabular-nums; }
.hours-table .today-tag { display: inline-block; margin-left: 12px; color: var(--brass); font: 500 10px/1 var(--f-sans); letter-spacing: .2em; text-transform: uppercase; vertical-align: .3em; }
.hours-table tr.is-today { position: relative; background: linear-gradient(to right, oklch(0.79 0.105 77 / .09), transparent 80%); }
.hours-table tr.is-today th { color: var(--bone); padding-left: 16px; box-shadow: inset 2px 0 0 var(--brass); }
.hours-table tr.is-today td { color: var(--bone); }
.hours-table tr.is-closed td { color: var(--bone-3); font-style: italic; }
@media (max-width: 899px) { .visit-grid { grid-template-columns: 1fr; } }
@media (max-width: 719px) { .visit .cta-pair { display: grid; } }

/* ==========================================================================
   9 · FOOTER
   ========================================================================== */
.site-footer { border-top: 1px solid var(--line); padding: clamp(72px, 9vw, 128px) 0 36px; background: linear-gradient(to bottom, var(--ink), oklch(0.13 0.006 60)); }
.footer-tag { font-size: clamp(44px, 6.6vw, 110px); margin-bottom: clamp(56px, 7vw, 96px); }
.footer-cols { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-cols .cap { margin-bottom: 14px; color: var(--brass); font-size: 11px; line-height: 1.4; }
.footer-cols p, .footer-cols li { color: var(--bone-2); font-size: 15px; line-height: 1.8; }
.footer-cols a { text-decoration: none; transition: color .3s; }
.footer-cols a:hover { color: var(--brass); }
.footer-hours li { display: flex; justify-content: space-between; gap: 16px; max-width: 280px; }
.footer-hours span:last-child { color: var(--bone-3); }
.footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 32px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--bone-3); }
.footer-base a { text-decoration: none; color: var(--bone-3); }
.footer-base a:hover { color: var(--brass); }
@media (max-width: 899px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 519px) { .footer-cols { grid-template-columns: 1fr; gap: 32px; } }

/* ==========================================================================
   Reduced motion: everything visible and still
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .boot { transform: none !important; }
}

/* While the light-pool preview is up, fade the count it would sit over */
.depts:has(.dept-follow.is-on) .dept-row.is-active .dept-count { opacity: 0; }
.dept-count { transition: opacity .4s var(--ease); }
