/* ============================================================
   LATHER — a proper barbershop on 8th & Vine
   Dark = the late-night shop; light = tiled daylight. Tokens
   flip on :root[data-theme]. Signature: a CSS barber-pole
   (moving diagonal stripes) + a keyboard booking board.
   ============================================================ */

:root {
  --max: 1220px;
  --ease: cubic-bezier(.2, .9, .24, 1);          /* the clean draw of a straight razor */
  --ease-snap: cubic-bezier(.16, 1, .3, 1);
  --font-d: "Oswald", "Arial Narrow", sans-serif;
  --font-b: "Inter", system-ui, sans-serif;
  --font-m: "Space Mono", ui-monospace, monospace;
  /* barber-pole stripe palette — steady across themes, the tube frames them */
  --pole-a: #1f7a70;    /* tile teal  */
  --pole-b: #efe6d4;    /* cream      */
  --pole-c: #c98a3c;    /* brass      */
}

/* ---- dark: the late-night shop ---- */
:root[data-theme="dark"] {
  --bg: #131010;
  --bg-2: #1a1614;
  --panel: #201a17;
  --ink: #efe7db;
  --dim: #b4a99a;
  --faint: #756a5d;
  --line: rgba(239, 231, 219, .12);
  --line-2: rgba(239, 231, 219, .055);
  --accent: #33a89a;                              /* tile teal, lifted for a black wall */
  --accent-ink: #08201d;
  --chrome: #9aa0a4;
  --warm: #d29647;
  --booked: rgba(239, 231, 219, .06);
  --shadow: 0 26px 64px -32px rgba(0, 0, 0, .85);
}
/* ---- light: tiled daylight ---- */
:root[data-theme="light"] {
  --bg: #f0eadb;
  --bg-2: #e8e0cd;
  --panel: #f7f2e6;
  --ink: #14100e;
  --dim: #554d43;
  --faint: #8a7f6f;
  --line: rgba(20, 16, 14, .14);
  --line-2: rgba(20, 16, 14, .06);
  --accent: #1f7a70;                              /* tile teal, full depth on cream */
  --accent-ink: #f4efe2;
  --chrome: #6d747a;
  --warm: #b06f1f;
  --booked: rgba(20, 16, 14, .05);
  --shadow: 0 26px 64px -34px rgba(50, 38, 26, .4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: clamp(15px, 1vw + 13px, 17px);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .5s var(--ease), color .5s var(--ease);
}

.mono { font-family: var(--font-m); font-variant-ligatures: none; }
.wrap { width: min(100% - 2.4rem, var(--max)); margin-inline: auto; }
h1, h2, h3 {
  font-family: var(--font-d); font-weight: 600; line-height: 1.02; margin: 0;
  letter-spacing: .005em; text-transform: uppercase;
}
em { font-style: normal; color: var(--accent); }
a { color: inherit; }

/* fixed background — subway tile grout + a warm bulb glow */
.tile {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(80% 55% at 78% -6%, color-mix(in oklab, var(--warm) 14%, transparent), transparent 60%),
    radial-gradient(100% 100% at 12% 108%, var(--bg-2), transparent 72%);
  opacity: .95;
}
.tile::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 46px 30px; opacity: .55;
}

.skip {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--accent); color: var(--accent-ink); padding: .5rem .9rem; border-radius: 8px; font-weight: 600;
}
.skip:focus { left: 12px; }

:where(a, button, input, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px;
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: min(100% - 2.4rem, var(--max)); margin: .7rem auto 0;
  padding: .5rem .8rem; border: 1px solid var(--line); border-radius: 14px;
  background: color-mix(in oklab, var(--bg) 74%, transparent);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; font-family: var(--font-d); font-weight: 600; font-size: 1.3rem; letter-spacing: .06em; text-transform: uppercase; }
.brand-mark { width: 24px; height: 24px; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a { text-decoration: none; color: var(--dim); font-size: .82rem; padding: .45rem .7rem; border-radius: 9px; transition: color .25s, background .25s; }
.nav-links a:hover { color: var(--ink); background: var(--line-2); }
.nav-cta { color: var(--ink) !important; border: 1px solid var(--line); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .76rem !important; }
.nav-cta:hover { background: var(--accent) !important; color: var(--accent-ink) !important; border-color: transparent; }
@media (max-width: 820px) { .nav-links a:not(.nav-cta) { display: none; } }

.theme-btn {
  display: inline-grid; place-items: center; width: 34px; height: 34px; margin-left: .2rem;
  border: 1px solid var(--line); border-radius: 9px; background: transparent; color: var(--dim); cursor: pointer;
  transition: color .25s, border-color .25s, transform .2s;
}
.theme-btn:hover { color: var(--ink); border-color: var(--accent); }
.theme-btn:active { transform: scale(.92); }
.theme-btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }
:root[data-theme="dark"] .ico-sun { display: block; }
:root[data-theme="dark"] .ico-moon { display: none; }
:root[data-theme="light"] .ico-sun { display: none; }
:root[data-theme="light"] .ico-moon { display: block; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .4rem; text-decoration: none;
  padding: .74rem 1.2rem; border-radius: 11px; font-weight: 600; font-size: .82rem;
  font-family: var(--font-d); text-transform: uppercase; letter-spacing: .06em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease-snap), background .25s, border-color .25s, color .25s, box-shadow .25s;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -14px var(--accent); }
.btn-primary:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- section scaffolding ---------- */
main { position: relative; z-index: 1; }
section { position: relative; }
.sec-head { max-width: 60ch; margin-bottom: 2.6rem; }
.kicker { color: var(--accent); font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; margin: 0 0 1rem; }
.eyebrow { color: var(--faint); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; margin: 0 0 1.4rem; }
h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); }
.lede { color: var(--dim); font-size: clamp(1rem, 1.4vw, 1.14rem); margin: 1rem 0 0; font-family: var(--font-b); }
.wm {
  position: absolute; top: 4%; right: -1%; z-index: 0; pointer-events: none; user-select: none;
  font-family: var(--font-d); font-weight: 700; font-size: clamp(5rem, 20vw, 16rem);
  color: var(--ink); opacity: .04; letter-spacing: .02em; text-transform: uppercase;
}

/* ============================================================
   BARBER POLE — the signature flourish
   Diagonal stripes scroll straight up the glass tube: moving a
   120deg repeating-gradient's background-position by two stripe
   periods is a seamless loop, so the helix appears to turn.
   ============================================================ */
.hero { padding: clamp(2.6rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem); width: min(100% - 2.4rem, var(--max)); margin-inline: auto; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-title { font-size: clamp(2.8rem, 8.5vw, 6rem); font-weight: 700; margin: .2rem 0 0; letter-spacing: 0; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: block; }
.js .hero-title .line > span { transform: translateY(110%); }
.js .hero.loaded .hero-title .line > span { animation: rise .95s var(--ease) forwards; }
.js .hero.loaded .hero-title .line:nth-child(2) > span { animation-delay: .1s; }
.js .hero.loaded .hero-title .line:nth-child(3) > span { animation-delay: .2s; }
@keyframes rise { to { transform: translateY(0); } }

.hero-sub { color: var(--dim); max-width: 48ch; margin: 1.5rem 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.9rem 0 0; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 1.8rem; margin: 2.4rem 0 0; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.hero-facts div { display: flex; flex-direction: column; gap: .2rem; }
.hero-facts dt { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.hero-facts dd { margin: 0; font-family: var(--font-d); font-weight: 600; font-size: 1.7rem; }

/* the pole itself */
.pole-fig {
  position: relative; margin: 0 auto; width: min(150px, 40vw);
  display: flex; flex-direction: column; align-items: center;
}
.pole-mount {
  width: 78%; height: 22px; border-radius: 6px; z-index: 2;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--chrome) 88%, #fff) 0%,
    var(--chrome) 42%,
    color-mix(in oklab, var(--chrome) 70%, #000) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), var(--shadow);
}
.pole-mount--top { border-radius: 6px 6px 3px 3px; }
.pole-mount--bottom { border-radius: 3px 3px 6px 6px; }
.pole-glass {
  position: relative; width: 100%; height: clamp(300px, 46vh, 440px);
  border-radius: 999px; overflow: hidden; margin: -4px 0;
  border: 1px solid color-mix(in oklab, var(--chrome) 50%, var(--line));
  box-shadow: var(--shadow);
  background: #0d0b0a;
}
.pole-stripes {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(120deg,
    var(--pole-c) 0 18px,
    var(--pole-b) 18px 36px,
    var(--pole-a) 36px 54px,
    var(--pole-b) 54px 72px);          /* perpendicular period = 72px */
  animation: pole-turn 3.4s linear infinite;
}
/* moving background-position by 2 periods (144px) up = seamless helix */
@keyframes pole-turn { from { background-position: 0 0; } to { background-position: 0 -144px; } }
/* glass cylinder shading + a swept highlight, painted over the stripes */
.pole-shine {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.42) 0%,
      rgba(0,0,0,.12) 16%,
      rgba(255,255,255,.34) 38%,
      rgba(255,255,255,.10) 52%,
      rgba(0,0,0,.16) 74%,
      rgba(0,0,0,.44) 100%);
  mix-blend-mode: soft-light;
}
.pole-shine::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 30%; width: 10%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  mix-blend-mode: screen; opacity: .7;
}
.pole-cap { display: flex; flex-direction: column; align-items: center; gap: .25rem; margin-top: 1.1rem; font-size: .68rem; color: var(--faint); text-align: center; }
.hero-scroll { margin: clamp(2rem, 5vw, 3.2rem) 0 0; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); }

/* the pole, reused as a thin section divider */
.pole-rule {
  height: 8px; width: 100%; margin: 0; overflow: hidden;
  border-block: 1px solid var(--line);
  background: repeating-linear-gradient(45deg,
    var(--pole-c) 0 10px,
    var(--pole-b) 10px 20px,
    var(--pole-a) 20px 30px,
    var(--pole-b) 30px 40px);          /* period = 40px along the 45deg axis */
  animation: pole-slide 2.4s linear infinite;
  opacity: .85;
}
/* move one full period (40px) along the gradient axis = a seamless slide */
@keyframes pole-slide { from { background-position: 0 0; } to { background-position: 28.284px -28.284px; } }

/* ---------- the cuts ---------- */
.cuts { padding: clamp(4rem, 9vw, 7rem) 0 clamp(2.4rem, 5vw, 4rem); overflow: hidden; }
.cut-list { list-style: none; margin: 0; padding: 0; }
.cut {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1rem, 3vw, 2.4rem); align-items: baseline;
  padding: 1.7rem 0; border-top: 1px solid var(--line); position: relative;
}
.cut:last-child { border-bottom: 1px solid var(--line); }
.cut::before {
  content: ""; position: absolute; left: -1.2rem; top: 1.7rem; bottom: 1rem; width: 3px; border-radius: 3px;
  background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease);
}
.cut:hover::before { transform: scaleY(1); }
.cut-no { font-size: .78rem; color: var(--faint); }
.cut-main h3 { font-size: clamp(1.35rem, 2.8vw, 2rem); font-weight: 500; }
.cut-tag { font-size: .6rem; letter-spacing: .12em; color: var(--warm); border: 1px solid color-mix(in oklab, var(--warm) 40%, var(--line)); border-radius: 999px; padding: .12rem .45rem; vertical-align: middle; margin-left: .4rem; }
.cut-note { color: var(--dim); margin: .45rem 0 0; max-width: 56ch; font-size: .95rem; }
.cut-meta { display: flex; flex-direction: column; align-items: flex-end; gap: .2rem; white-space: nowrap; }
.cut-price { font-size: 1.35rem; color: var(--ink); font-weight: 700; }
.cut-dur { font-size: .72rem; color: var(--faint); }
.cut--feature .cut-main h3, .cut--full .cut-main h3 { color: var(--accent); }
.cut--full { background: linear-gradient(90deg, color-mix(in oklab, var(--accent) 8%, transparent), transparent 62%); }
@media (max-width: 560px) {
  .cut { grid-template-columns: auto 1fr; }
  .cut-meta { grid-column: 2; flex-direction: row; align-items: baseline; gap: .8rem; margin-top: .1rem; }
}

/* ---------- book a chair (scheduler) ---------- */
.book { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.booker { border: 1px solid var(--line); border-radius: 18px; background: var(--panel); padding: clamp(1rem, 3vw, 1.6rem); box-shadow: var(--shadow); }
.booker-controls { margin-bottom: 1.2rem; }
.controls-label { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin: 0 0 .6rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  font-family: var(--font-b); font-size: .82rem; padding: .42rem .85rem; cursor: pointer;
  border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--dim);
  transition: color .2s, border-color .2s, background .2s;
}
.chip:hover { color: var(--ink); border-color: var(--accent); }
.chip[aria-pressed="true"] { background: var(--accent); color: var(--accent-ink); border-color: transparent; font-weight: 600; }

.grid-scroll { overflow-x: auto; margin: 0 -.3rem; padding: 0 .3rem; }
.chair-grid {
  display: grid; grid-template-columns: 3.6rem repeat(4, minmax(64px, 1fr)); gap: 6px;
  min-width: 340px;
}
.grid-fallback { color: var(--dim); font-size: .8rem; padding: 1rem; }
.gcol-head, .grow-time { display: flex; flex-direction: column; justify-content: center; padding: .3rem .2rem; }
.gcol-head { align-items: center; text-align: center; gap: .1rem; padding-bottom: .55rem; border-bottom: 1px solid var(--line); }
.gcol-head .gh-name { font-family: var(--font-d); font-weight: 600; font-size: .95rem; text-transform: uppercase; letter-spacing: .03em; }
.gcol-head .gh-spec { font-family: var(--font-m); font-size: .58rem; color: var(--faint); letter-spacing: .04em; }
.gcol-corner { border-bottom: 1px solid var(--line); }
.grow-time { font-family: var(--font-m); font-size: .72rem; color: var(--faint); align-items: flex-start; }
.slot {
  font-family: var(--font-m); font-size: .68rem; padding: .55rem .3rem; cursor: pointer;
  border: 1px solid var(--line); border-radius: 8px; background: var(--bg); color: var(--dim);
  transition: background .18s, color .18s, border-color .18s, transform .12s;
  min-height: 38px;
}
.slot:hover { border-color: var(--accent); color: var(--ink); background: color-mix(in oklab, var(--accent) 8%, var(--bg)); }
.slot:active { transform: scale(.96); }
.slot[aria-pressed="true"] { background: var(--accent); color: var(--accent-ink); border-color: transparent; font-weight: 700; }
.slot--booked {
  cursor: not-allowed; color: var(--faint); background: var(--booked); border-style: dashed;
  background-image: repeating-linear-gradient(45deg, transparent 0 5px, var(--line-2) 5px 6px);
}
.slot--booked:hover { border-color: var(--line); color: var(--faint); background: var(--booked); transform: none; }
.grow-lunch {
  grid-column: 1 / -1; text-align: center; font-family: var(--font-m); font-size: .66rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--warm);
  padding: .5rem; border: 1px dashed color-mix(in oklab, var(--warm) 35%, var(--line)); border-radius: 8px;
  background: color-mix(in oklab, var(--warm) 6%, transparent);
}
.booker-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.3rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.book-summary { margin: 0; font-family: var(--font-m); font-size: .86rem; color: var(--ink); }
.book-summary .bs-dim { color: var(--faint); }
.book-summary.is-set { color: var(--accent); }
.booker-done { text-align: center; padding: 2rem 1rem; }
.booker-done strong { font-family: var(--font-d); font-weight: 600; text-transform: uppercase; font-size: 1.5rem; letter-spacing: .03em; display: block; color: var(--accent); }
.booker-done .mono { display: block; margin-top: .5rem; font-size: .72rem; color: var(--faint); }

/* ---------- the barbers ---------- */
.barbers { padding: clamp(4rem, 9vw, 7rem) 0; }
.barber-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
@media (max-width: 940px) { .barber-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .barber-grid { grid-template-columns: 1fr; } }
.barber { border: 1px solid var(--line); border-radius: 16px; background: var(--panel); overflow: hidden; transition: transform .3s var(--ease), border-color .3s; }
.barber:hover { transform: translateY(-4px); border-color: color-mix(in oklab, var(--accent) 40%, var(--line)); }
.barber-avatar { aspect-ratio: 1 / 1; background: linear-gradient(160deg, var(--bg), var(--bg-2)); border-bottom: 1px solid var(--line); }
.barber-avatar svg { width: 100%; height: 100%; display: block; }
.av-bg { fill: transparent; }
.av-body { fill: color-mix(in oklab, var(--ink) 14%, transparent); }
.av-skin { fill: color-mix(in oklab, var(--warm) 42%, var(--panel)); }
.av-hair { fill: var(--ink); }
.av-beard { fill: color-mix(in oklab, var(--ink) 80%, var(--accent)); }
.av-line { fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; }
.barber-info { padding: 1.1rem 1.2rem 1.3rem; }
.barber-info h3 { font-size: 1.3rem; font-weight: 600; }
.barber-spec { margin: .35rem 0 0; font-size: .7rem; color: var(--accent); letter-spacing: .04em; text-transform: uppercase; }
.barber-bio { color: var(--dim); font-size: .88rem; margin: .7rem 0 1rem; }
.barber-years { margin: 0; font-family: var(--font-d); font-weight: 600; font-size: 1.5rem; color: var(--ink); }
.barber-years .mono { font-family: var(--font-m); font-weight: 400; font-size: .64rem; color: var(--faint); letter-spacing: .1em; text-transform: uppercase; }

/* ---------- the shop ---------- */
.shop { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.shop-grid { display: grid; grid-template-columns: 1.5fr .85fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: start; }
@media (max-width: 860px) { .shop-grid { grid-template-columns: 1fr; } }
.shop-copy p { color: var(--dim); margin: 1.1rem 0 0; max-width: 60ch; }
.shop-sign { font-family: var(--font-d); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; color: var(--ink); margin-top: 1.6rem !important; font-size: .95rem; }
.hours-card { border: 1px solid var(--line); border-radius: 16px; background: var(--panel); padding: 1.2rem 1.3rem; position: sticky; top: 5rem; box-shadow: var(--shadow); }
.hours-title { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin: 0 0 .7rem; }
.hours-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .62rem 0; border-bottom: 1px solid var(--line-2); }
.hours-row:first-of-type { border-top: 1px solid var(--line-2); }
.hours-row > span:first-child { font-family: var(--font-d); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; font-size: .95rem; }
.hours-row .mono { font-size: .8rem; color: var(--dim); }
.hours-shut { color: var(--faint) !important; }
.hours-walk { color: var(--accent) !important; }
.hours-note { margin: .9rem 0 0; font-size: .68rem; color: var(--faint); letter-spacing: .05em; }

/* ---------- products ---------- */
.products { padding: clamp(4rem, 9vw, 7rem) 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .product-grid { grid-template-columns: 1fr; } }
.product { border: 1px solid var(--line); border-radius: 16px; background: var(--panel); overflow: hidden; display: flex; transition: transform .3s var(--ease), border-color .3s; }
.product:hover { transform: translateY(-4px); border-color: color-mix(in oklab, var(--accent) 40%, var(--line)); }
.product-art { flex: 0 0 34%; display: grid; place-items: center; background: linear-gradient(160deg, var(--bg), var(--bg-2)); border-right: 1px solid var(--line); padding: .8rem; }
.product-art svg { width: 82%; height: auto; }
.pr-body { fill: color-mix(in oklab, var(--accent) 30%, var(--panel)); stroke: var(--accent); stroke-width: 1.4; }
.pr-lid { fill: var(--warm); stroke: color-mix(in oklab, var(--warm) 60%, #000); stroke-width: 1; }
.pr-cap { fill: var(--chrome); }
.pr-detail { fill: color-mix(in oklab, var(--ink) 12%, transparent); }
.pr-seam { stroke: var(--accent); stroke-width: 1.2; fill: none; opacity: .5; }
.product-info { padding: 1rem 1.1rem; display: flex; flex-direction: column; justify-content: center; }
.product-top { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; }
.product-top h3 { font-size: 1.1rem; font-weight: 600; }
.product-price { font-size: .9rem; color: var(--ink); font-weight: 700; }
.product-note { color: var(--dim); font-size: .82rem; margin: .5rem 0 0; }

/* ---------- footer ---------- */
.footer { padding: 3rem 0 2.4rem; border-top: 1px solid var(--line); }
.foot-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-bottom: 1.4rem; }
.foot-brand { font-family: var(--font-d); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; letter-spacing: .06em; }
.foot-links { display: flex; flex-wrap: wrap; gap: .3rem; }
.foot-links a { text-decoration: none; color: var(--dim); font-size: .82rem; padding: .35rem .6rem; border-radius: 8px; }
.foot-links a:hover { color: var(--ink); background: var(--line-2); }
.foot-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .72rem; color: var(--faint); }
.foot-bottom a { color: var(--accent); text-decoration: none; }
.foot-bottom a:hover { text-decoration: underline; }

/* ---------- reveals (gated behind .js so content is never hidden without JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- reduced motion: freeze the pole, kill reveals ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero-title .line > span { transform: none !important; animation: none !important; }
  .pole-stripes, .pole-rule { animation: none !important; }
  .cut::before { transition: none; }
  * { scroll-behavior: auto !important; }
}
