/* Pic 'N' Pay Shoes, Direction B: "Main Street, 1950" (Print-Tech Paper) */

:root {
  --paper: oklch(95.3% 0.017 84);
  --paper-2: oklch(92.4% 0.024 82);
  --paper-3: oklch(89% 0.03 78);
  --kraft: oklch(81% 0.052 72);
  --kraft-2: oklch(76.5% 0.058 68);
  --receipt: oklch(98.2% 0.008 90);
  --ink: oklch(21% 0.012 55);
  --ink-2: oklch(36% 0.016 58);
  --ink-3: oklch(44% 0.018 60);
  --rule: oklch(52% 0.02 65 / 0.55);
  --rule-solid: oklch(21% 0.012 55 / 0.9);
  --accent: oklch(40% 0.14 20);
  --accent-ink: oklch(35% 0.13 20);

  --display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --serif: "Instrument Serif", "Times New Roman", serif;

  --m: clamp(12px, 3vw, 44px);          /* page margin (rulers live here) */
  --pad: clamp(18px, 3.2vw, 52px);      /* inner padding from the frame */
  --hdr: 68px;
  --ease: cubic-bezier(.7, 0, .18, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .32 0 0 0 0 .25 0 0 0 0 .17 0 0 0 1.6 -.72'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --mottle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='700' height='700'%3E%3Cfilter id='m'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.006' numOctaves='3' seed='7' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .55 0 0 0 0 .42 0 0 0 0 .25 0 0 0 .55 -.26'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23m)'/%3E%3C/svg%3E");
  --dash-x: repeating-linear-gradient(90deg, var(--rule) 0 4px, transparent 4px 8px);
  --dash-y: repeating-linear-gradient(180deg, var(--rule) 0 4px, transparent 4px 8px);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--hdr) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--grain), var(--mottle), var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.55;
  font-variation-settings: "wdth" 100;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input { font: inherit; color: inherit; }
::selection { background: var(--accent); color: var(--paper); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.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: 12px; top: -60px; z-index: 200; background: var(--ink); color: var(--paper); padding: 10px 16px; font-family: var(--mono); font-size: 13px; text-decoration: none; }
.skip:focus { top: 12px; }

.mono { font-family: var(--mono); font-size: 12px; line-height: 1.4; letter-spacing: .07em; text-transform: uppercase; font-weight: 500; color: var(--ink-2); }
.serif-i { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }
.sep { color: var(--ink-3); margin: 0 .35em; }
.accent { color: var(--accent); font-style: normal; }

/* ---------- the sheet: margins, dashed frame, rulers ---------- */
.sheet { position: relative; max-width: 1480px; margin-inline: auto; padding-inline: var(--m); }
.sheet::before, .sheet::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 1px; background: var(--dash-y); pointer-events: none; z-index: 1;
}
.sheet::before { left: var(--m); }
.sheet::after { right: var(--m); }
.ruler { position: absolute; top: 0; bottom: 0; width: var(--m); pointer-events: none; opacity: .75;
  --t: oklch(40% 0.02 60 / .7);
  background:
    repeating-linear-gradient(180deg, var(--t) 0 1px, transparent 1px 80px) 0 0 / 14px 100% no-repeat,
    repeating-linear-gradient(180deg, var(--t) 0 1px, transparent 1px 40px) 0 0 / 9px 100% no-repeat,
    repeating-linear-gradient(180deg, var(--t) 0 1px, transparent 1px 8px) 0 0 / 5px 100% no-repeat;
}
.ruler-l { left: 0; background-position: right 0 top 0, right 0 top 0, right 0 top 0; }
.ruler-r { right: 0; }
@media (max-width: 760px) { .ruler { display: none; } }

/* ---------- buttons ---------- */
.btn {
  --h: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: .7em;
  min-height: var(--h); padding: 0 24px;
  font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  border: 1.5px solid var(--ink); cursor: pointer; white-space: nowrap;
  transition: background-color .25s, color .25s, transform .25s var(--ease-out);
}
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--accent-ink); border-color: var(--accent-ink); }
.btn-line { background: transparent; color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--paper); }
.btn-sm { --h: 40px; padding: 0 16px; font-size: 12px; }
.btn-chamfer { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%); padding-right: 30px; }
.btn-chamfer:focus-visible { clip-path: none; }
.btn .arr { font-family: var(--display); font-size: 16px; transition: transform .3s var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- 1. header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  margin-inline: calc(var(--m) * -1); padding-inline: var(--m);
  background: color-mix(in oklch, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
}
.site-header::after { content: ""; position: absolute; left: var(--m); right: var(--m); bottom: 0; height: 1px; background: var(--dash-x); }
.hdr { height: var(--hdr); display: flex; align-items: center; gap: 20px; padding-inline: var(--pad); }
.wordmark { display: grid; text-decoration: none; line-height: 1; flex: none; }
.wm-name { font-family: var(--display); font-weight: 850; font-variation-settings: "wdth" 125; font-size: 19px; letter-spacing: -.01em; text-transform: uppercase; }
.wm-sub { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); margin-top: 5px; }
.nav { margin-inline: auto; }
.nav ul { display: flex; align-items: center; background: var(--receipt); border: 1px solid oklch(21% 0.012 55 / .12); border-radius: 999px; padding: 6px 10px; box-shadow: 0 1px 0 oklch(21% 0.012 55 / .05); }
.nav li { display: flex; align-items: center; }
.nav li + li::before { content: ""; width: 3px; height: 3px; border-radius: 50%; background: var(--ink-3); opacity: .6; flex: none; }
.nav a { display: inline-block; white-space: nowrap; padding: 8px 9px; font-family: var(--mono); font-size: 11px; letter-spacing: .045em; text-transform: uppercase; text-decoration: none; font-weight: 500; border-radius: 999px; transition: background-color .2s; }
.nav a:hover { background: var(--paper-2); }
.hdr-end { display: flex; align-items: center; gap: 14px; flex: none; margin-left: auto; }
.nav + .hdr-end { margin-left: 0; }
.status { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); white-space: nowrap; }
.status-label { color: var(--ink); font-weight: 600; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--ink); flex: none; }
.is-open > .status-dot { background: var(--ink); box-shadow: 0 0 0 3px oklch(21% 0.012 55 / .12); }
.motion .is-open > .status-dot { animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 6px oklch(21% 0.012 55 / 0); } }
.menu-btn { display: none; align-items: center; gap: 10px; height: 40px; padding: 0 14px; background: transparent; border: 1.5px solid var(--ink); font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.menu-btn-lines { width: 16px; height: 8px; border-block: 1.5px solid currentColor; }
.hdr-progress { position: absolute; left: var(--m); bottom: 0; height: 2px; width: calc(100% - var(--m) * 2); background: var(--ink); transform-origin: 0 50%; transform: scaleX(0); opacity: 0; }
@supports (animation-timeline: scroll()) {
  .motion .hdr-progress { opacity: 1; animation: progress linear both; animation-timeline: scroll(root); }
  @keyframes progress { to { transform: scaleX(1); } }
}

@media (max-width: 1560px) { .hdr .status-detail { display: none; } }
@media (max-width: 1279px) {
  .nav { display: none; }
  .nav + .hdr-end { margin-left: auto; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 560px) {
  :root { --hdr: 60px; }
  .hdr { gap: 10px; }
  .hdr-end .status { display: none; }
  .hide-sm { display: none; }
  .wm-name { font-size: 16px; }
  .wm-sub { font-size: 9.5px; letter-spacing: .1em; }
  .hdr-call { padding: 0 12px; font-size: 11.5px; letter-spacing: .04em; }
  .hdr-call .num { display: none; }
  .hdr-call::after { content: "Call"; }
  .menu-btn { padding: 0 12px; }
  .hdr { padding-inline: 14px; }
}

/* mobile menu sheet */
.menu-sheet {
  position: fixed; inset: 0; z-index: 120; overflow-y: auto;
  background: var(--grain), var(--paper);
  padding: 0 clamp(18px, 5vw, 40px) 40px;
  display: flex; flex-direction: column;
}
.menu-sheet[hidden] { display: none; }
.ms-top { display: flex; align-items: center; justify-content: space-between; height: var(--hdr); border-bottom: 1px dashed var(--rule); }
.ms-top .wm-name { font-size: 16px; }
.ms-close { height: 40px; padding: 0 14px; background: var(--ink); color: var(--paper); border: 0; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.ms-list { margin-top: 12px; }
.ms-list a { display: flex; align-items: baseline; gap: 16px; padding: 12px 0; border-bottom: 1px dashed var(--rule); text-decoration: none; font-weight: 800; font-variation-settings: "wdth" 112; font-size: clamp(28px, 8vw, 44px); line-height: 1.05; letter-spacing: -.02em; }
.ms-list a .mono { font-size: 11px; color: var(--ink-3); width: 2.2em; }
.motion .menu-sheet .ms-list li { opacity: 0; transform: translateY(10px); transition: opacity .4s var(--ease-out), transform .5s var(--ease-out); transition-delay: calc(var(--n, 0) * 35ms); }
.motion .menu-sheet.is-open .ms-list li { opacity: 1; transform: none; }
.ms-list li:nth-child(1) { --n: 1 } .ms-list li:nth-child(2) { --n: 2 } .ms-list li:nth-child(3) { --n: 3 } .ms-list li:nth-child(4) { --n: 4 }
.ms-list li:nth-child(5) { --n: 5 } .ms-list li:nth-child(6) { --n: 6 } .ms-list li:nth-child(7) { --n: 7 } .ms-list li:nth-child(8) { --n: 8 }
.ms-foot { margin-top: 28px; display: grid; gap: 16px; justify-items: start; }

/* ---------- 2. hero ---------- */
.hero { --fs: clamp(52px, 10.2vw, 150px); position: relative; display: flex; flex-direction: column; min-height: calc(100svh - var(--hdr)); padding: clamp(28px, 4.5vw, 64px) var(--pad) 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 436px; gap: 24px clamp(24px, 4vw, 72px); align-items: end; }
.hero-copy { grid-column: 1 / -1; grid-row: 1; align-self: start; }
.hero-aside { grid-column: 2; grid-row: 1; align-self: start; margin-top: calc(43px + var(--fs) * .86 + 14px); }
.display .line > span { white-space: nowrap; }
.eyebrow { margin-bottom: clamp(16px, 2vw, 26px); display: flex; justify-content: space-between; gap: 16px; }
.display {
  font-family: var(--display); font-weight: 820; font-variation-settings: "wdth" 112;
  font-size: var(--fs); line-height: .86; letter-spacing: -.045em;
  text-wrap: balance; margin-left: -.04em;
}
.display .line { display: block; }
.display .line > span { display: inline-block; }
.hero-aside { position: relative; padding-left: 28px; padding-bottom: 2px; }
.hero-aside .cta-row { flex-wrap: nowrap; margin-top: 18px; }
.hero-aside .btn { padding-inline: 20px; }
.hero-aside::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 0; width: 1px; background: var(--dash-y); }
.est { color: var(--accent); }
.lede { font-size: clamp(17px, 1.35vw, 19px); line-height: 1.5; color: var(--ink-2); max-width: 34ch; text-wrap: pretty; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.coords { display: flex; justify-content: space-between; align-items: center; margin-top: clamp(24px, 3vw, 40px); padding: 10px 0; position: relative; }
.coords::before { content: ""; position: absolute; left: calc(var(--pad) * -1); right: calc(var(--pad) * -1); top: 0; height: 1px; background: var(--dash-x); }
.coords-mid { color: var(--ink-3); }

/* print figures (halftone) */
.print { position: relative; }
.print-plate { position: relative; overflow: hidden; }
.print-plate > img { width: 100%; height: 100%; object-fit: contain; transition: opacity .3s; }
.print.is-printed .print-plate > img { opacity: 0; }
.motion .print[data-ht]:not(.is-printed):not(.ht-failed) .print-plate > img { opacity: 0; }
.ht-layer { position: absolute; inset: 0; width: 100%; height: 100%; mix-blend-mode: multiply; pointer-events: none; }
.print-hero .print-plate::after { content: ""; position: absolute; inset: 0; background: var(--grain); opacity: .5; mix-blend-mode: multiply; pointer-events: none; }

.print-hero { flex: 1; display: flex; flex-direction: column; min-height: 300px; margin-top: 6px; }
.print-hero .print-plate { flex: 1; min-height: 300px; }
.print-hero .print-plate > img { object-fit: cover; object-position: 52% 46%; position: absolute; inset: 0; }
.print-cap { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 12px 0 16px; }
.cap-end { display: inline-flex; align-items: center; gap: 12px; }
.colour-bar { display: inline-flex; border: 1px solid var(--ink); }
.colour-bar i { width: 12px; height: 12px; display: block; }
.cb-c { background: #1b8fbf } .cb-m { background: #d6386f } .cb-y { background: #f0c419 } .cb-k { background: #1f1a17 }
.cb-t1 { background: oklch(21% 0.012 55 / .5) } .cb-t2 { background: oklch(21% 0.012 55 / .2) }

/* crop marks: eight hairlines just outside the plate corners */
.crop .print-plate { overflow: visible; }
.crop .print-plate::before {
  content: ""; position: absolute; inset: -18px; pointer-events: none; z-index: 2;
  --c: var(--ink);
  background:
    linear-gradient(var(--c), var(--c)) left 0 top 17px / 12px 1px,
    linear-gradient(var(--c), var(--c)) left 17px top 0 / 1px 12px,
    linear-gradient(var(--c), var(--c)) right 0 top 17px / 12px 1px,
    linear-gradient(var(--c), var(--c)) right 17px top 0 / 1px 12px,
    linear-gradient(var(--c), var(--c)) left 0 bottom 17px / 12px 1px,
    linear-gradient(var(--c), var(--c)) left 17px bottom 0 / 1px 12px,
    linear-gradient(var(--c), var(--c)) right 0 bottom 17px / 12px 1px,
    linear-gradient(var(--c), var(--c)) right 17px bottom 0 / 1px 12px;
  background-repeat: no-repeat;
}
.crop .print-plate > .ht-layer, .crop .print-plate > img { }
.print-hero .print-plate { clip-path: none; }
.print-hero .print-plate .ht-layer { clip-path: inset(0); }
.reg { position: absolute; width: 22px; height: 22px; fill: none; stroke: var(--ink); stroke-width: 1; top: calc(50% - 30px); }
.reg-l { left: calc(var(--pad) * -1 + (var(--pad) - 22px) / 2); }
.reg-r { right: calc(var(--pad) * -1 + (var(--pad) - 22px) / 2); }
@media (max-width: 760px) { .reg { display: none; } }

.loupe { position: absolute; left: 0; top: 0; z-index: 3; pointer-events: none; opacity: 0; transition: opacity .25s; display: grid; gap: 2px; padding: 6px 8px; margin: 18px 0 0 18px; background: var(--receipt); border: 1px solid var(--ink); font-size: 10.5px; color: var(--ink); }
.loupe::before { content: ""; position: absolute; left: -19px; top: -19px; width: 13px; height: 13px; border: 1px solid var(--ink); border-radius: 50%; background: linear-gradient(var(--ink), var(--ink)) center / 1px 100% no-repeat, linear-gradient(var(--ink), var(--ink)) center / 100% 1px no-repeat; }
.loupe.on { opacity: 1; }

/* hero entrance: ink wipes (motion only) */
.motion .hero .eyebrow, .motion .hero-aside > *, .motion .coords, .motion .print-cap { animation: fadeUp .8s var(--ease-out) both; }
.motion .hero .eyebrow { animation-delay: .05s; }
.motion .hero-aside > :nth-child(1) { animation-delay: .5s; }
.motion .hero-aside > :nth-child(2) { animation-delay: .6s; }
.motion .coords, .motion .print-cap { animation-delay: .9s; }
.motion .display .line > span { clip-path: inset(-10% 100% -20% 0); animation: wipe 1s var(--ease) both; animation-delay: calc(.12s + var(--i) * .12s); }
@keyframes wipe { to { clip-path: inset(-10% -2% -20% 0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } }
.motion .print-hero .ht-layer { clip-path: inset(0 100% 0 0); }
.motion .print-hero.go .ht-layer { animation: plate 1.05s var(--ease) both; }
.motion .print-hero.go .ht-m { animation-delay: .14s; }
.motion .print-hero.go .ht-c { animation-delay: .28s; }
.motion .print-hero.go .ht-k { animation-delay: .42s; }
@keyframes plate { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }

@media (max-width: 1300px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy, .hero-aside { grid-column: 1; grid-row: auto; }
  .hero-aside { margin-top: 0; }
  .hero-aside { display: grid; grid-template-columns: minmax(0, 36ch) auto; justify-content: space-between; column-gap: 32px; align-items: end; padding-left: 0; }
  .hero-aside::before { display: none; }
  .hero-aside .cta-row { margin-top: 0; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-aside { display: block; }
  .hero-aside .cta-row { margin-top: 24px; flex-wrap: wrap; }
  .hero-aside { padding-left: 0; }
  .hero-aside::before { display: none; }
  .print-hero { min-height: 0; flex: none; }
  .print-hero .print-plate { flex: none; aspect-ratio: 4 / 3; min-height: 0; }
}
@media (max-width: 560px) {
  .hero { padding-top: 26px; min-height: 0; }
  .hero { --fs: clamp(44px, 14.6vw, 64px); }
  .display { letter-spacing: -.04em; }
  .display .l1 > span { white-space: normal; text-wrap: balance; }
  .lede { font-size: 16.5px; }
  .cta-row .btn { flex: 1 1 100%; }
  .coords { font-size: 10.5px; }
  .coords-mid { display: none; }
  .print-hero .print-plate { aspect-ratio: 1 / 1.02; }
  .print-cap { flex-wrap: wrap; row-gap: 6px; }
  .print-cap > span:nth-child(2) { order: 3; flex-basis: 100%; }
}

/* ---------- 347 monument ---------- */
.monument { position: relative; padding: clamp(40px, 6vw, 90px) var(--pad) clamp(28px, 4vw, 56px); }
.monument::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--dash-x); }
.mon-meta { display: flex; justify-content: space-between; margin-bottom: 10px; }
.mon-print .print-plate { aspect-ratio: 2.55 / 1; display: grid; place-items: center; }
.mon-num {
  font-family: var(--display); font-weight: 900; font-variation-settings: "wdth" 125;
  font-size: clamp(120px, 34vw, 500px); line-height: .8; letter-spacing: -.03em; color: var(--ink);
  background: radial-gradient(circle, var(--ink) 0 42%, transparent 46%) 0 0 / 7px 7px;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.mon-print.is-printed .mon-num { visibility: hidden; }
.mon-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: clamp(18px, 2.4vw, 32px); border-top: 1.5px solid var(--ink); }
.mon-facts > div { padding: 12px 14px 0 0; }
.mon-facts > div + div { padding-left: 14px; border-left: 1px dashed var(--rule); }
.mon-facts dt { color: var(--ink-3); font-size: 10.5px; }
.mon-facts dd { color: var(--ink); margin-top: 6px; font-size: 12.5px; }
@media (max-width: 760px) {
  .mon-facts { grid-template-columns: 1fr 1fr; }
  .mon-facts > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .mon-facts > div { padding-bottom: 12px; }
  .mon-meta span:last-child { max-width: 20ch; text-align: right; }
}

/* ---------- sections ---------- */
.sec { position: relative; padding: clamp(64px, 9vw, 136px) var(--pad); }
.sec::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--dash-x); }
.sec::after { /* top-edge ruler ticks */
  content: ""; position: absolute; left: var(--pad); right: var(--pad); top: 0; height: 9px; pointer-events: none;
  background:
    repeating-linear-gradient(90deg, oklch(40% 0.02 60 / .55) 0 1px, transparent 1px 64px) 0 0 / 100% 9px no-repeat,
    repeating-linear-gradient(90deg, oklch(40% 0.02 60 / .4) 0 1px, transparent 1px 16px) 0 0 / 100% 4px no-repeat;
}
.sec-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 380px); column-gap: clamp(24px, 5vw, 80px); row-gap: 14px; align-items: end; margin-bottom: clamp(36px, 5vw, 64px); }
.sec-no { grid-column: 1 / -1; }
.sec-head h2 {
  font-weight: 800; font-variation-settings: "wdth" 108; font-size: clamp(38px, 5.6vw, 84px);
  line-height: .92; letter-spacing: -.035em; text-wrap: balance;
}
.sec-head h2 .serif-i { font-size: 1.08em; letter-spacing: -.01em; }
.sec-note { color: var(--ink-2); max-width: 38ch; text-wrap: pretty; padding-bottom: 6px; }
@media (max-width: 1000px) { .sec-head { grid-template-columns: 1fr; } }

/* reveals (motion only) */
.motion [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease-out), transform 1s var(--ease-out); transition-delay: var(--d, 0ms); }
.motion [data-reveal].in { opacity: 1; transform: none; }
.motion .print:not(.print-hero):not(.mon-print) .ht-layer { clip-path: inset(0 100% 0 0); transition: clip-path 1.1s var(--ease); transition-delay: calc(var(--d, 0ms) + 120ms); }
.motion .print.in .ht-layer, .motion [data-reveal].in .print .ht-layer { clip-path: inset(0 0 0 0); }
.motion .mon-print .ht-layer { opacity: 0; transform: scale(1.015); transition: opacity 1.2s var(--ease-out), transform 1.6s var(--ease-out); }
.motion .mon-print.in .ht-layer { opacity: 1; transform: none; }

/* ---------- 3. catalogue spread ---------- */
.spread {
  position: relative; display: grid; grid-template-columns: minmax(0, 0.82fr) 34px minmax(0, 1.18fr);
  background: var(--receipt); border: 1px solid oklch(21% 0.012 55 / .18);
  box-shadow: 0 1px 0 oklch(21% 0.012 55 / .06), 0 30px 60px -40px oklch(30% 0.03 50 / .45);
}
.spread::after { content: ""; position: absolute; inset: 0; background: var(--grain); opacity: .5; mix-blend-mode: multiply; pointer-events: none; }
.gutter { background: linear-gradient(90deg, transparent, oklch(30% 0.03 50 / .09) 45%, oklch(30% 0.03 50 / .16) 50%, oklch(30% 0.03 50 / .09) 55%, transparent); }
.page { display: flex; flex-direction: column; padding: clamp(18px, 2.4vw, 36px); min-width: 0; }
.page-head, .folio { display: flex; justify-content: space-between; gap: 12px; }
.page-head { padding-bottom: 12px; border-bottom: 1.5px solid var(--ink); margin-bottom: clamp(18px, 2vw, 28px); }
.folio { margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--rule); font-size: 11px; }
.page-items { display: grid; gap: clamp(18px, 2vw, 28px); margin-bottom: 28px; }
.page-l .page-items { flex: 1; }
.grid-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cat-item { display: grid; align-content: start; gap: 12px; min-width: 0; }
.cat-print .print-plate { aspect-ratio: 4 / 3; }
.page-l .page-items { align-content: space-between; }
.cat-item.big .cat-print .print-plate { aspect-ratio: 16 / 9; }
.cat-item.big .cat-cap { grid-template-columns: auto 1fr; column-gap: 24px; align-items: end; }
.cat-item.big .cat-no { grid-column: 1 / -1; }
.cat-item.big .cat-name { justify-content: flex-end; text-align: right; }
.cat-item.big .cat-dept { grid-column: 2; text-align: right; }
.grid-6 .cat-print .print-plate { aspect-ratio: 1 / 1; }
.cat-cap { display: grid; gap: 3px; padding-top: 10px; border-top: 1px solid var(--ink); }
.cat-no { font-size: 11px; color: var(--ink-3); }
.cat-brand { font-weight: 800; font-variation-settings: "wdth" 110; font-size: clamp(19px, 1.6vw, 24px); letter-spacing: -.02em; line-height: 1.05; }
.big .cat-brand { font-size: clamp(26px, 2.8vw, 42px); letter-spacing: -.03em; }
.cat-name { font-size: 15px; color: var(--ink-2); display: flex; flex-wrap: wrap; column-gap: 10px; align-items: baseline; }
.cat-col { font-size: 10.5px; }
.cat-dept { font-size: 10.5px; color: var(--ink-3); }
@media (max-width: 1100px) {
  .spread { grid-template-columns: 1fr; }
  .gutter { height: 26px; background: linear-gradient(180deg, transparent, oklch(30% 0.03 50 / .12) 50%, transparent); }
  .page-l .page-items { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .grid-6 { grid-template-columns: 1fr 1fr; }
  .page-l .page-items { grid-template-columns: 1fr; }
  .page-head span:last-child { display: none; }
  .folio { flex-direction: column; gap: 4px; }
}

/* ---------- 4. shoebox end-labels ---------- */
.boxes { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: clamp(14px, 1.6vw, 24px); }
.box { grid-column: span 3; container-type: inline-size; display: flex; flex-direction: column;
  background: var(--grain), linear-gradient(180deg, var(--kraft-2), var(--kraft) 30%); border: 1.5px solid var(--ink); }
.box-kids, .box-work, .box-accessories { grid-column: span 2; }
.box-lid { display: flex; justify-content: space-between; gap: 10px; padding: 9px 14px; border-bottom: 1.5px solid var(--ink); background: oklch(21% 0.012 55 / .06); font-size: 10.5px; color: var(--ink); }
.box-lid span:nth-child(3) { display: none; }
.box-end { padding: clamp(12px, 2.2cqi, 22px); flex: 1; display: flex; }
.box-label {
  flex: 1; background: var(--receipt); border: 1px solid var(--ink); position: relative;
  display: grid; grid-template-columns: minmax(0, 1fr); grid-template-areas: "art" "info" "brands";
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}
.box-label::after { content: ""; position: absolute; right: 0; bottom: 0; width: 26px; height: 1px; background: var(--ink); transform-origin: right; transform: translate(-0.5px, -12.7px) rotate(-45deg); }
.box-art { grid-area: art; border-bottom: 1px solid var(--ink); background: var(--paper); }
.box-print .print-plate { aspect-ratio: 16 / 9; }
.box-type { aspect-ratio: 16 / 9; overflow: hidden; display: grid; place-items: center; background:
  radial-gradient(circle, oklch(21% 0.012 55 / .8) 0 1.1px, transparent 1.4px) 0 0 / 7px 7px; }
.box-type span { font-weight: 900; font-variation-settings: "wdth" 125; font-size: clamp(60px, 22cqi, 140px); letter-spacing: -.05em; line-height: 1; background: var(--paper); padding: 0 .12em .06em; }
.box-info { grid-area: info; padding: 16px 18px 6px; }
.box-name { font-weight: 850; font-variation-settings: "wdth" 116; font-size: clamp(32px, 9cqi, 58px); line-height: .9; letter-spacing: -.035em; }
.box-blurb { color: var(--ink-2); font-size: 15px; margin-top: 10px; max-width: 42ch; }
.box-fields { margin-top: 14px; border-top: 1px solid var(--ink); }
.box-fields > div { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 10px; padding: 7px 0; border-bottom: 1px solid oklch(21% 0.012 55 / .25); align-items: baseline; }
.box-fields dt { font-size: 10.5px; color: var(--ink-3); }
.box-fields dd { font-size: 14.5px; font-weight: 600; }
.box-brands { grid-area: brands; padding: 10px 18px 26px; display: grid; gap: 8px; font-size: 13.5px; line-height: 1.5; color: var(--ink-2); }
.bg-name { color: var(--ink); font-size: 10.5px; margin-right: 6px; padding: 1px 5px; border: 1px solid var(--ink); }
@container (min-width: 600px) {
  .box-label { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); grid-template-areas: "art info" "brands brands"; }
  .box-art { border-bottom: 0; border-right: 1px solid var(--ink); display: grid; align-items: center; }
  .box-brands { border-top: 1px solid var(--ink); }
  .box-print .print-plate, .box-type { aspect-ratio: 5 / 4; }
  .box-info { padding: 20px 22px 14px; }
  .box-name { font-size: clamp(28px, 6cqi, 52px); }
  .box-type span { font-size: clamp(56px, 10.5cqi, 120px); }
  .box-brands { padding: 14px 22px 28px; }
  .box-lid span:nth-child(3) { display: inline; }
}
@media (max-width: 1100px) {
  .box, .box-kids, .box-work, .box-accessories { grid-column: span 3; }
  .box-accessories { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .boxes { grid-template-columns: 1fr; }
  .box, .box-kids, .box-work, .box-accessories { grid-column: auto; }
}

/* ---------- 5. fitting + size rule ---------- */
.size-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1.5px solid var(--ink); border-bottom: 1px dashed var(--rule); margin-bottom: clamp(36px, 5vw, 64px); }
.size-stats li { padding: 18px 20px 20px 0; display: grid; gap: 8px; }
.size-stats li + li { padding-left: 20px; border-left: 1px dashed var(--rule); }
.stat-num { font-weight: 850; font-variation-settings: "wdth" 120; font-size: clamp(64px, 9vw, 136px); line-height: .82; letter-spacing: -.05em; }
.stat-to { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: .32em; letter-spacing: 0; margin: 0 .2em; vertical-align: .9em; }
@media (max-width: 700px) {
  .size-stats { grid-template-columns: 1fr; }
  .size-stats li + li { padding-left: 0; border-left: 0; border-top: 1px dashed var(--rule); }
  .size-stats li { grid-template-columns: auto 1fr; align-items: end; column-gap: 16px; }
  .stat-num { font-size: 64px; }
}

.rule-tool { background: var(--receipt); border: 1.5px solid var(--ink); padding: clamp(16px, 2.4vw, 32px); position: relative; }
.rule-tool::after { content: ""; position: absolute; inset: 0; background: var(--grain); opacity: .45; mix-blend-mode: multiply; pointer-events: none; }
.rule-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.rule-title { color: var(--ink); }
.seg { display: inline-flex; border: 1.5px solid var(--ink); padding: 0; margin: 0; position: relative; z-index: 1; }
.seg label { position: relative; cursor: pointer; }
.seg input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.seg span { display: block; padding: 10px 18px; font-family: var(--mono); font-size: 12px; letter-spacing: .07em; text-transform: uppercase; font-weight: 500; transition: background-color .2s, color .2s; }
.seg label + label span { border-left: 1.5px solid var(--ink); }
.seg label:has(input:checked) span { background: var(--ink); color: var(--paper); }
.seg label:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 3px; z-index: 1; }
.seg label:hover span { background: var(--paper-2); }
.seg label:has(input:checked):hover span { background: var(--ink); }

.rule { position: relative; z-index: 1; cursor: ew-resize; touch-action: pan-y; user-select: none; -webkit-user-select: none; border-radius: 2px; }
.rule.is-drag { cursor: grabbing; touch-action: none; }
.rule-svg { width: 100%; height: auto; overflow: visible; color: var(--ink); }
.rule-plate { fill: var(--paper-2); stroke: var(--ink); stroke-width: 1.5; }
.rule-heel { fill: var(--ink); }
.rule-heel-t { fill: var(--paper); font-family: var(--mono); font-size: 10px; letter-spacing: .2em; }
.rule-tick { stroke: var(--ink); stroke-width: 1; }
.rule-num { font-family: var(--mono); font-size: 13px; font-weight: 500; fill: var(--ink); }
.rule-group { font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; fill: var(--ink-2); }
.rule-split { stroke: var(--ink); stroke-dasharray: 3 3; }
.rule-band { fill: url(#rule-hatch); stroke: var(--ink); stroke-width: 1; }
.rule-band-t { font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; fill: var(--ink); }
.rule-foot path { fill: oklch(21% 0.012 55 / .05); stroke: var(--ink); stroke-width: 1.3; stroke-dasharray: 5 4; }

.rule-slider rect.rule-bar { fill: var(--ink); }
.rule-tab { fill: var(--ink); }
.rule-tab-t { fill: var(--paper); font-family: var(--display); font-weight: 800; font-size: 16px; }
.rule.is-out .rule-bar, .rule.is-out .rule-tab { fill: var(--accent); }
.rule:focus-visible { outline-offset: 6px; }
.rule-hint { margin-top: 10px; font-size: 11px; color: var(--ink-3); position: relative; z-index: 1; }

.rule-out { position: relative; z-index: 1; margin-top: 22px; padding-top: 22px; border-top: 1.5px solid var(--ink); display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(18px, 3vw, 44px); align-items: center; }
.ro-size { display: grid; min-width: 4.2ch; }
.ro-dept { font-size: 11px; }
.ro-num { font-weight: 850; font-variation-settings: "wdth" 118; font-size: clamp(64px, 7vw, 104px); line-height: .85; letter-spacing: -.05em; }
.ro-verdict { display: inline-block; padding: 3px 8px; border: 1.5px solid var(--ink); color: var(--ink); font-weight: 600; margin-bottom: 10px; }
.rule-out.is-out .ro-verdict { border-color: var(--accent); color: var(--accent); }
.ro-head { font-weight: 750; font-variation-settings: "wdth" 106; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.1; letter-spacing: -.02em; }
.ro-body { color: var(--ink-2); margin-top: 6px; max-width: 58ch; }
@media (max-width: 860px) {
  .rule-out { grid-template-columns: auto minmax(0, 1fr); }
  .ro-call { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 480px) {
  .rule-out { grid-template-columns: 1fr; gap: 12px; }
  .ro-size { grid-auto-flow: column; justify-content: start; align-items: end; gap: 12px; }
  .seg { width: 100%; }
  .seg label { flex: 1; text-align: center; }
  .seg span { padding: 10px 6px; font-size: 11px; letter-spacing: .04em; }
  .ro-call { width: 100%; }
}

/* ---------- 6. brand directory ---------- */
.dir-tools { display: flex; flex-wrap: wrap; gap: 20px 32px; align-items: end; justify-content: space-between; padding-bottom: 20px; border-bottom: 1.5px solid var(--ink); }
.search { display: grid; gap: 8px; flex: 1 1 320px; max-width: 520px; }
.search label { color: var(--ink); }
.search input {
  height: 56px; padding: 0 16px 0 46px; border: 1.5px solid var(--ink); border-radius: 0; background: var(--receipt);
  font-family: var(--display); font-size: 20px; font-weight: 500; -webkit-appearance: none; appearance: none;
  background-image: radial-gradient(circle at 21px 26px, transparent 6.5px, var(--ink) 7px 8.4px, transparent 8.9px), linear-gradient(45deg, transparent 47%, var(--ink) 47% 53%, transparent 53%);
  background-size: auto, 9px 9px; background-position: 0 0, 26px 32px; background-repeat: no-repeat;
}
.search input::placeholder { color: var(--ink-3); }
.search input:focus-visible { outline-offset: 2px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { height: 38px; padding: 0 14px; border: 1.5px solid var(--ink); background: transparent; border-radius: 999px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: background-color .2s, color .2s; }
.chip:hover { background: var(--paper-2); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.az { display: flex; flex-wrap: wrap; gap: 2px; padding: 14px 0; border-bottom: 1px dashed var(--rule); }
.az a, .az span { width: 34px; height: 34px; display: grid; place-items: center; font-size: 13px; text-decoration: none; }
.az a { color: var(--ink); font-weight: 600; }
.az a:hover { background: var(--ink); color: var(--paper); }
.az span { color: oklch(60% 0.015 60); }
.dir-count { margin: 18px 0 8px; font-size: 11px; }
.dir { columns: 4 150px; column-gap: clamp(20px, 3vw, 44px); }
.dir-group { padding: 14px 0 18px; scroll-margin-top: calc(var(--hdr) + 20px); }
.dir-letter { break-after: avoid; break-inside: avoid; font-weight: 900; font-variation-settings: "wdth" 125; font-size: 46px; line-height: .9; letter-spacing: -.04em; padding-bottom: 8px; border-bottom: 1.5px solid var(--ink); margin-bottom: 6px; display: flex; justify-content: space-between; align-items: end; }
.dir-group li { break-inside: avoid; display: flex; justify-content: space-between; align-items: baseline; gap: 10px; padding: 5px 0; border-bottom: 1px dashed oklch(52% 0.02 65 / .35); }
.b-name { font-size: 16.5px; overflow-wrap: anywhere; font-weight: 500; line-height: 1.3; }
.b-tags { font-size: 10.5px; letter-spacing: .04em; color: var(--ink-3); white-space: nowrap; }
.dir-empty { font-size: 20px; padding: 32px 0; column-span: all; }
.dir-key { margin-top: 24px; font-size: 11px; color: var(--ink-3); }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .25s; }

/* ---------- 7. ledger ---------- */
.ledger-wrap { background: var(--receipt); border: 1px solid oklch(21% 0.012 55 / .2); position: relative;
  box-shadow: 0 30px 60px -44px oklch(30% 0.03 50 / .5); padding: 0 0 26px; }
.ledger-wrap::after { content: ""; position: absolute; inset: 0; background: var(--grain); opacity: .5; mix-blend-mode: multiply; pointer-events: none; }
.ledger-head, .ledger li { display: grid; grid-template-columns: clamp(92px, 16vw, 230px) minmax(0, 1fr) clamp(70px, 10vw, 130px); }
.ledger-head { border-bottom: 1.5px solid var(--ink); }
.ledger-head span, .ledger li > span { padding: 14px clamp(12px, 2vw, 26px); }
.ledger-head span:nth-child(2), .ledger li > .l-entry { box-shadow: inset 3px 0 0 -1px var(--accent), inset 6px 0 0 -4px var(--accent); padding-left: calc(clamp(12px, 2vw, 26px) + 6px); }
.ledger-head span:nth-child(3), .ledger li > .l-ref { border-left: 1px solid oklch(21% 0.012 55 / .25); text-align: right; }
.ledger li { border-bottom: 1px solid oklch(45% 0.05 240 / .28); align-items: baseline; }
.l-year { font-weight: 850; font-variation-settings: "wdth" 112; font-size: clamp(30px, 3.9vw, 58px); line-height: .95; letter-spacing: -.04em; padding-block: 22px !important; }
.l-entry { font-size: clamp(17px, 1.6vw, 22px); line-height: 1.4; padding-block: 22px !important; text-wrap: pretty; }
.l-ref { font-size: 11px; padding-block: 26px !important; }
.ledger-sign { display: flex; justify-content: flex-end; align-items: baseline; gap: 16px; padding: 22px clamp(12px, 2vw, 26px) 0; position: relative; z-index: 1; }
.ledger-sign .serif-i { font-size: clamp(26px, 3vw, 40px); color: var(--ink); }
.motion .ledger li { opacity: 0; transform: translateX(-10px); transition: opacity .7s var(--ease-out), transform .8s var(--ease-out); transition-delay: calc(var(--d) + 200ms); }
.motion .ledger-wrap.in .ledger li { opacity: 1; transform: none; }
@media (max-width: 700px) {
  .ledger-head { display: none; }
  .ledger li { grid-template-columns: 1fr auto; grid-template-areas: "y r" "e e"; }
  .l-year { grid-area: y; padding-bottom: 4px !important; }
  .l-ref { grid-area: r; border-left: 0 !important; padding-bottom: 4px !important; }
  .l-entry { grid-area: e; padding-top: 4px !important; padding-bottom: 20px !important; }
  .ledger-sign { flex-direction: column; align-items: flex-end; gap: 4px; }
}

/* ---------- 8. visit ---------- */
.visit-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: clamp(36px, 6vw, 100px); align-items: start; }
.visit .sec-head { grid-template-columns: 1fr; margin-bottom: 36px; }
.addr { font-style: normal; display: grid; gap: 6px; font-size: 19px; color: var(--ink-2); }
.addr-big { font-weight: 850; font-variation-settings: "wdth" 120; font-size: clamp(34px, 4.4vw, 64px); line-height: .95; letter-spacing: -.04em; color: var(--ink); }
.visit-status { display: flex; align-items: center; gap: 10px; margin-top: 28px; padding: 12px 0; border-block: 1px dashed var(--rule); font-family: var(--mono); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; font-weight: 500; }
.visit-coords { margin-top: 26px; font-size: 11px; color: var(--ink-3); }
.receipt-wrap { display: flex; justify-content: center; padding-top: 12px; }
.receipt {
  width: min(100%, 360px); padding: 30px 26px 44px; background: var(--receipt); color: var(--ink);
  font-family: var(--mono); font-size: 13px; line-height: 1.55; text-transform: uppercase; letter-spacing: .03em;
  transform: rotate(-1.2deg); position: relative;
  filter: drop-shadow(0 18px 22px oklch(30% 0.03 50 / .18)) drop-shadow(0 2px 2px oklch(30% 0.03 50 / .12));
  --z: 9px;
  mask: conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) 50% / calc(var(--z) * 2) 100%;
  -webkit-mask: conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) 50% / calc(var(--z) * 2) 100%;
}
.receipt p { margin: 0; }
.r-center { text-align: center; }
.r-brand { font-family: var(--display); font-weight: 850; font-variation-settings: "wdth" 125; font-size: 20px; letter-spacing: 0; margin-bottom: 6px !important; }
.r-rule { height: 1px; margin: 14px 0 !important; background: repeating-linear-gradient(90deg, var(--ink) 0 5px, transparent 5px 9px); }
.r-hours { width: 100%; border-collapse: collapse; }
.r-cap { text-align: left; font-weight: 600; margin-bottom: 6px; }
.r-hours th, .r-hours td { padding: 4px 6px; text-align: left; font-weight: 400; }
.r-hours thead th { font-size: 10.5px; color: var(--ink-2); }
.r-hours td:last-child, .r-hours thead th:last-child { text-align: right; }
.r-hours abbr { text-decoration: none; }
.r-hours tbody th { font-weight: 600; }
.r-today { display: none; }
.r-hours tr.is-today { background: var(--ink); color: var(--paper); }
.r-hours tr.is-today .r-today { display: inline; margin-left: 6px; font-size: 9.5px; padding: 0 4px; background: var(--accent); color: var(--paper); vertical-align: 1px; }
.r-row { display: flex; justify-content: space-between; gap: 10px; }
.r-row span:first-child { color: var(--ink-2); }
.r-row span:last-child { text-align: right; font-weight: 600; }
.r-thanks { margin-top: 10px !important; font-weight: 600; }
.motion .receipt-wrap .receipt { clip-path: inset(0 0 100% 0); transition: clip-path 1.3s var(--ease) .15s; }
.motion .receipt-wrap.in .receipt { clip-path: inset(0 0 -40px 0); }
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---------- 9. footer ---------- */
.site-footer { position: relative; padding: clamp(56px, 7vw, 100px) var(--pad) 28px; }
.site-footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1.5px; background: var(--ink); }
.site-footer .ft-mark { color: var(--ink); }
.ft-mark { font-weight: 900; font-variation-settings: "wdth" 125; font-size: clamp(30px, 7.1vw, 106px); line-height: .85; letter-spacing: -.045em; text-transform: uppercase; white-space: nowrap; }
.ft-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; margin-top: clamp(32px, 4vw, 56px); padding-top: 24px; border-top: 1px dashed var(--rule); }
.ft-tag { font-size: clamp(26px, 2.6vw, 36px); line-height: 1.1; }
.ft-small { margin-top: 10px; font-size: 11px; max-width: 30ch; }
.ft-h { color: var(--ink); margin-bottom: 12px; font-size: 11.5px; }
.site-footer p { color: var(--ink-2); }
.site-footer a { text-underline-offset: 3px; }
.ft-hours > div { display: flex; justify-content: space-between; gap: 12px; padding: 3px 0; border-bottom: 1px dashed oklch(52% 0.02 65 / .35); font-size: 14.5px; }
.ft-hours dt { color: var(--ink-2); }
.ft-links { display: grid; gap: 4px; }
.ft-links a { text-decoration: none; font-weight: 500; }
.ft-links a:hover { text-decoration: underline; }
.ft-disclaimer { margin-top: 40px; font-size: 14px; }
.slug { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px 24px; margin-top: 20px; padding-top: 14px; border-top: 1px dashed var(--rule); font-size: 10.5px; }
@media (max-width: 900px) { .ft-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ft-grid { grid-template-columns: 1fr; } }

/* ---------- reduced motion: nothing moves, everything shows ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
