/* Charlbeck Jewellers — shared design system
   Near-monochrome ink-on-paper; all colour arrives from photography. */

:root {
  /* Colour — warm neutrals in oklch, hex fallback handled by browser support */
  --paper: oklch(0.975 0.003 90);
  --paper-bright: oklch(0.985 0.002 90);
  --ink: oklch(0.2 0.006 60);
  --ink-deep: oklch(0.17 0.008 60);
  --ink-muted: oklch(0.205 0.004 70);
  --text-2: oklch(0.38 0.006 60);
  --text-3: oklch(0.46 0.006 60);
  --label: oklch(0.52 0.006 60);
  --placeholder: oklch(0.7 0.006 60);
  --disabled: oklch(0.62 0.006 60);
  --surface: oklch(0.955 0.003 90);
  --well: oklch(0.93 0.004 90);
  --hairline: rgba(28,24,20,.13);
  --hairline-soft: rgba(28,24,20,.11);
  --hairline-strong: rgba(28,24,20,.5);
  --control: rgba(28,24,20,.22);
  --input-rule: rgba(28,24,20,.24);
  --underline: rgba(28,24,20,.25);

  --serif: "EB Garamond", Georgia, serif;
  --sans: "Hanken Grotesk", Helvetica, Arial, sans-serif;

  --gutter: clamp(20px,5vw,80px);
  --bay: clamp(84px,13vh,172px);   /* one vertical rhythm for every content section */
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

/* JS drives inertial scrolling; native smooth would double-animate and fight it.
   Reduced-motion users fall back to native smooth (see media query below). */
html { scroll-behavior: auto; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--ink); color: var(--paper); }
input, textarea, button, select { font: inherit; color: inherit; }
::placeholder { color: var(--placeholder); }

/* ---- Keyframes ---- */
@keyframes cbFade { from { opacity: 0; } to { opacity: 1; } }
.hero-book { padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.5); transition: border-color 400ms ease; }
.hero-book:hover, .hero-book:focus-visible { border-color: rgba(255,255,255,1); }
@keyframes cbLine { from { transform: translateY(110%); } to { transform: translateY(0); } }
@keyframes cbUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cbShow { from { opacity: 0; } to { opacity: 1; } }
@keyframes cbCue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- Type helpers ---- */
.eyebrow {
  margin: 0;
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--label);
}
.serif { font-family: var(--serif); font-weight: 400; }
.section-h {
  margin: clamp(14px,2vw,24px) 0 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(29px,3.7vw,54px);
  line-height: 1.06;
  letter-spacing: -.018em;
}
.lede { font-size: 15px; line-height: 1.8; color: var(--text-3); }

/* ---- Media / image slots ---- */
.media {
  position: relative;
  overflow: hidden;
  background: var(--well);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media > [data-par] { position: absolute; inset: -6% 0; }
.media > [data-par] img { width: 100%; height: 100%; object-fit: cover; }

/* Labelled placeholder for shots not yet supplied */
.slot { display: flex; align-items: center; justify-content: center; }
.slot::after {
  content: attr(data-brief);
  display: block;
  max-width: 30ch;
  padding: 24px;
  text-align: center;
  font-size: 10.5px;
  letter-spacing: .12em;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--label);
}
.slot.on-dark::after { color: oklch(0.72 0.004 90); }

/* ---- Header ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: clamp(14px,2.4vw,40px);
  padding: clamp(15px,2vw,24px) var(--gutter);
  border-bottom: 1px solid var(--hairline-soft);
  color: var(--ink);
  background: oklch(0.975 0.003 90 / 0.94);
  backdrop-filter: blur(10px);
  transition: background 700ms ease, border-color 700ms ease, color 700ms ease,
              transform 650ms cubic-bezier(.22,1,.36,1);
}
.nav .wordmark {
  grid-column: 2; justify-self: center; text-align: center;
  font-family: var(--serif);
  font-size: clamp(13px,1.25vw,17px);
  letter-spacing: .4em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav .links {
  display: flex; align-items: center; gap: clamp(14px,2vw,30px);
  font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
}
.nav .links-left { justify-self: start; }
.nav .links-right { justify-self: end; }
.nav .links a { white-space: nowrap; }
.nav .links a.item { opacity: .7; transition: opacity 350ms ease; }
.nav .links a.item:hover { opacity: 1; }
.nav .links a.item[aria-current="page"] {
  opacity: 1; padding-bottom: 3px; border-bottom: 1px solid currentColor;
}
.nav .links a.book { padding-bottom: 3px; border-bottom: 1px solid currentColor; }
.nav .menu-btn {
  display: none; align-items: center; gap: 9px;
  /* padding + compensating negative margin: comfortable ~44px touch target
     without shifting the button's visual position in the nav grid */
  padding: 15px 4px; margin: -15px -4px;
  background: transparent; border: 0; cursor: pointer;
  font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: inherit;
}
.nav .menu-btn .bars { display: flex; flex-direction: column; gap: 4px; }
.nav .menu-btn .bars span { display: block; width: 16px; height: 1px; background: currentColor; }

/* Below the point where two flanking tab groups stop fitting, fold into the menu */
@media (max-width: 940px) {
  .nav .links-left { display: none; }
  .nav .links-right .item, .nav .links-right .book { display: none; }
  .nav .menu-btn { display: flex; }
}

/* home-only hero-transparent state applied via JS by toggling .over */
.nav.over {
  background: transparent; backdrop-filter: none;
  border-bottom-color: transparent; color: var(--paper-bright);
}

/* ---- Footer ---- */
.foot {
  padding: clamp(56px,9vh,110px) var(--gutter) clamp(26px,4vh,44px);
  border-top: 1px solid var(--hairline);
  text-align: center;
}
.foot .foot-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(16px,3vw,38px);
  margin-top: clamp(28px,4.4vh,48px);
  font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--label);
}
.foot .foot-nav a { transition: color 300ms ease; }
.foot .foot-nav a:hover { color: var(--ink); }
.foot .details {
  margin: clamp(26px,4vh,40px) 0 0;
  font-size: 13.5px; line-height: 1.9; color: var(--text-3);
}
.foot .details a { transition: color 250ms ease; }
.foot .details a:hover { color: var(--ink); }
.foot .legal {
  margin: clamp(34px,5.4vh,64px) 0 0; padding-top: 22px;
  border-top: 1px solid rgba(28,24,20,.1);
  font-size: 11px; color: var(--label);
}

/* ---- Buttons / pills ---- */
.btn-solid {
  display: inline-block; padding: 15px 30px;
  background: var(--ink); color: var(--paper);
  border: 0; cursor: pointer;
  font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase;
  transition: opacity 350ms ease;
}
.btn-solid:hover { opacity: .85; }
.link-underline {
  padding-bottom: 2px; border-bottom: 1px solid var(--underline);
  transition: border-color 300ms ease;
}
.link-underline:hover { border-bottom-color: var(--ink); }

.pill {
  padding: 10px 17px; background: transparent;
  border: 1px solid var(--control);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; transition: all 300ms ease; color: inherit;
}
.pill[aria-pressed="true"], .pill.on {
  background: var(--ink); border-color: var(--ink); color: var(--paper);
}

/* ---- Hero (inner pages) ---- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink-muted); color: oklch(0.86 0.004 90);
}
.hero .hero-media { position: absolute; inset: 0; }
.hero .hero-media [data-par] { position: absolute; inset: -6% 0; }
.hero .hero-media img,
.hero .hero-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,17,14,.55) 0%, rgba(20,17,14,.1) 50%, rgba(20,17,14,.28) 100%);
}
.hero .hero-copy {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0 var(--gutter) clamp(40px,8vh,90px);
  color: var(--paper-bright);
}
.hero .hero-copy .eyebrow { color: inherit; opacity: .86; letter-spacing: .28em; }
.hero h1 {
  margin: clamp(12px,2vh,20px) 0 0; max-width: 22ch;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px,4.4vw,58px); line-height: 1.12; letter-spacing: -.012em;
}
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 2px; }

/* ---- Definition lists ---- */
.deflist { margin: 0; font-size: 14px; }
.deflist .row {
  display: grid;
  grid-template-columns: var(--dl-label, clamp(110px,14vw,190px)) 1fr;
  gap: clamp(14px,2.4vw,34px);
  padding: clamp(16px,2.4vh,24px) 0;
  border-top: 1px solid var(--hairline);
}
.deflist .row:last-child { border-bottom: 1px solid var(--hairline); }
.deflist dt {
  font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--label); padding-top: 3px;
}
.deflist dd { margin: 0; line-height: 1.8; color: var(--text-2); }
.deflist dd a { border-bottom: 1px solid var(--underline); padding-bottom: 1px; }

/* ---- Shop details (centred three-column) ---- */
.shop-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 50em;
  margin: clamp(38px, 5.5vh, 66px) auto 0;
  text-align: center;
}
.shop-fact {
  display: flex; flex-direction: column; gap: 12px; align-items: center;
  padding: 4px clamp(16px, 3vw, 40px);
}
.shop-fact + .shop-fact { border-left: 1px solid var(--hairline); }
.shop-fact .k {
  font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--label);
}
.shop-fact .v { font-size: 14px; line-height: 1.85; color: var(--text-2); }
.shop-fact .v a { border-bottom: 1px solid var(--underline); padding-bottom: 1px; }
@media (max-width: 640px) {
  .shop-facts {
    grid-template-columns: 1fr;
    gap: clamp(24px, 6vw, 34px);
    max-width: 24em;
  }
  .shop-fact { padding: 0; }
  .shop-fact + .shop-fact { border-left: 0; padding-top: clamp(24px, 6vw, 34px); border-top: 1px solid var(--hairline); }
}

/* ---- Opening hours — tidy per-day list (homepage shop card + Contact) ---- */
.hours {
  display: inline-grid;
  grid-template-columns: max-content max-content;
  column-gap: clamp(1.2em, 3vw, 2em);
  row-gap: 5px;
  text-align: left;
}
.hours .d { color: var(--text-3); }
.hours .t { text-align: right; white-space: nowrap; }
.hours .t.off { color: var(--text-3); }
.hours .t .sub { display: block; font-size: .8em; font-style: italic; opacity: .62; margin-top: 1px; }

/* ---- Valuation teaser — copy set into the negative space of a full-width appraisal still ---- */
.sell-teaser { position: relative; }
.sell-teaser-media {
  position: relative; width: 100%; aspect-ratio: 1672 / 941;
  overflow: hidden; background: #EDE9E2;
}
.sell-teaser-media > img {
  width: 100%; height: 100%; object-fit: cover; object-position: right center; display: block;
}
.sell-teaser-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg,
    rgba(247,246,242,.95) 0%, rgba(247,246,242,.88) 22%,
    rgba(247,246,242,.52) 42%, rgba(247,246,242,.14) 56%, rgba(247,246,242,0) 66%);
}
.sell-teaser-copy {
  position: absolute; z-index: 2; top: 50%; transform: translateY(-50%);
  left: clamp(24px, 6vw, 120px); max-width: 30em;
}
@media (max-width: 860px) {
  .sell-teaser-media { aspect-ratio: 3 / 4; }
  .sell-teaser-media > img { object-position: 66% center; }
  .sell-teaser-scrim {
    background: linear-gradient(0deg,
      rgba(247,246,242,.97) 0%, rgba(247,246,242,.9) 24%,
      rgba(247,246,242,.5) 50%, rgba(247,246,242,0) 76%);
  }
  .sell-teaser-copy {
    top: auto; bottom: 0; transform: none;
    left: 0; right: 0; max-width: none; text-align: center;
    padding: 0 var(--gutter) clamp(30px, 8vw, 56px);
  }
  .sell-teaser-copy .shop-cta { justify-content: center; }
}

/* ---- Form fields ---- */
.field { display: block; }
.field .lab {
  display: block; font-size: 9.5px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--label);
}
.field input, .field textarea {
  width: 100%; margin-top: 11px; padding: 12px 0;
  background: transparent; border: 0; border-bottom: 1px solid var(--input-rule);
  outline: none; font-size: 15px;
}
.field textarea { resize: vertical; }

/* ---- Dark band ---- */
.band {
  background: var(--ink-deep); color: var(--paper);
  padding: clamp(80px,13vh,180px) var(--gutter);
}
.band .eyebrow { color: oklch(0.72 0.004 90); }

/* ---- Reveal / clip initial states (JS drives the play) ---- */
.motion [data-reveal] { opacity: 0; transform: translateY(34px); }
.motion [data-clip] { clip-path: inset(100% 0 0 0); }

/* ---- Utilities ---- */
.wrap { padding-left: var(--gutter); padding-right: var(--gutter); }
.center { text-align: center; }
.serif-italic { font-style: italic; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .motion [data-reveal] { opacity: 1; transform: none; }
  .motion [data-clip] { clip-path: none; }
  .interlude-glint { animation: none; opacity: .8; }
}

/* --- Placeholder frames (client review: real photos pending) --- */
img[src$="_ph.svg"]{
  object-fit: contain !important;
  background: var(--well);
  box-shadow: inset 0 0 0 1px var(--hairline);
}
/* On dark hero/bench panels, give the frame a matching dark wash */
.hero-media img[src$="_ph.svg"],
[data-bench-img] img[src$="_ph.svg"],
[data-ba] img[src$="_ph.svg"]{
  background: var(--ink-muted);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

/* --- Hero scroll sequence (dim + rising cards, Rolex-style) --- */
.hero-seq { position: relative; }
.hero-seq .hero-pin { position: sticky; top: 0; }
.hero-dim {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(120% 120% at 50% 42%, rgba(8,7,6,.82) 0%, rgba(8,7,6,.94) 100%);
  opacity: 0; pointer-events: none;
}
.hero-seq .hero-copy { z-index: 3; will-change: opacity, transform; }
.hero-cards {
  position: absolute; inset: 0; z-index: 4;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(10px, 1.4vw, 22px); padding: 0 var(--gutter);
  pointer-events: none;
}
.hero-card {
  pointer-events: auto; position: relative; display: block;
  flex: 1 1 0; max-width: 360px; aspect-ratio: 3 / 4;
  overflow: hidden; background: var(--well);
  box-shadow: 0 34px 70px -34px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.06);
  opacity: 0; will-change: transform, opacity;
  transform-origin: 50% 100%;
  transition: box-shadow 500ms ease;
}
.hero-card:hover { box-shadow: 0 46px 86px -30px rgba(0,0,0,.72), inset 0 0 0 1px rgba(255,255,255,.12); }
.hero-card .hero-card-media { position: absolute; inset: 0; }
.hero-card .hero-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; display: block; }
.hero-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 58%;
  background: linear-gradient(to top, rgba(20,17,14,.62), rgba(20,17,14,0));
  pointer-events: none;
}
.hero-card .hero-card-cap {
  position: absolute; left: 0; right: 0; bottom: clamp(18px,3vh,34px); z-index: 1;
  text-align: center; padding: 0 12px; color: var(--paper-bright);
}
.hero-card .hero-card-cap .eyebrow { color: var(--paper-bright); opacity: .85; }
.hero-card .hero-card-title {
  display: block; margin-top: 8px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(19px, 2vw, 29px); line-height: 1.1; letter-spacing: -.01em;
}
@media (max-width: 640px) {
  .hero-cards { gap: 7px; padding: 0 clamp(10px,3vw,20px); }
  .hero-card .hero-card-cap .eyebrow { font-size: 8px; letter-spacing: .14em; }
  .hero-card .hero-card-title { font-size: clamp(15px,4.4vw,21px); }
}

/* Hero media zoom (driven by scroll in home.js) */
.hero .hero-media[data-hero-zoom] { transform-origin: 50% 46%; will-change: transform; }

/* Reveal panel — the whole page rises over the pinned hero as a rounded-top sheet.
   Native scroll does the motion: a higher z-index sheet pulled up with a negative
   margin so it slides over the sticky hero, exactly like the Homy handoff. */
.reveal-panel {
  position: relative; z-index: 6;
  margin-top: -66svh;
  background: var(--paper);
  /* Full-bleed, square top — the page IS the surface, not a card on top of it.
     clip horizontal bleed from settle-zoom images without creating a scroll
     container, so position:sticky inside is preserved. */
  overflow-x: clip;
}
/* A tall, smooth paper feather that belongs to the emerging sheet: the pinned
   hero dissolves upward into the page over a long fade — no blur, no halo, no
   hard edge, so the transition reads as one continuous surface, not a glow. */
.reveal-panel::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: clamp(300px, 48vh, 620px); transform: translateY(-100%);
  background: linear-gradient(to top,
    oklch(0.975 0.003 90 / 1) 0%,
    oklch(0.975 0.003 90 / .97) 12%,
    oklch(0.975 0.003 90 / .86) 27%,
    oklch(0.975 0.003 90 / .62) 45%,
    oklch(0.975 0.003 90 / .36) 63%,
    oklch(0.975 0.003 90 / .15) 82%,
    oklch(0.975 0.003 90 / 0) 100%);
  pointer-events: none; z-index: 1;
}
.reveal-panel > * { position: relative; z-index: 2; }

/* Products page: the same paper feather, dissolving the pinned dark showcase
   into the white product grid as it unpins — one continuous surface, not a seam. */
.wrap--cases-fade { position: relative; z-index: 4; background: var(--paper); }
.wrap--cases-fade::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: clamp(240px, 40vh, 520px); transform: translateY(-100%);
  background: linear-gradient(to top,
    oklch(0.975 0.003 90 / 1) 0%,
    oklch(0.975 0.003 90 / .97) 12%,
    oklch(0.975 0.003 90 / .86) 27%,
    oklch(0.975 0.003 90 / .62) 45%,
    oklch(0.975 0.003 90 / .36) 63%,
    oklch(0.975 0.003 90 / .15) 82%,
    oklch(0.975 0.003 90 / 0) 100%);
  pointer-events: none; z-index: 2;
}
.wrap--cases-fade > * { position: relative; z-index: 3; }
@media (prefers-reduced-motion: reduce) {
  .wrap--cases-fade::before { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-panel { margin-top: 0; }
  .reveal-panel::before { display: none; }
}
.hero .hero-media[data-hero-zoom] { will-change: transform, filter; }

/* ============ Kinetic statement over drifting dust ============ */
.statement {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(90px,16vh,220px) var(--gutter); overflow: hidden;
  background: var(--ink); color: var(--paper-bright);
}
.statement-media {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 50%;
}
.statement-scrim {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,18,15,.52) 0%, rgba(20,18,15,.46) 100%),
    radial-gradient(120% 120% at 50% 50%, rgba(20,18,15,.24) 0%, rgba(20,18,15,.72) 100%);
}
.statement-dust {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.statement-lines {
  position: relative; z-index: 1; margin: 0 auto; max-width: 15em;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px,5.6vw,74px); line-height: 1.14;
  letter-spacing: -.022em; text-align: center; text-wrap: balance;
}
.statement-lines .sline { display: block; overflow: hidden; padding-bottom: .05em; }
.statement-lines em { font-style: italic; }
.statement-lines [data-line] { display: block; }
.statement-lines [data-line] > span { display: inline-block; will-change: opacity, transform, filter; }

/* ============ Big-type editorial index ============ */
.index { position: relative; padding: var(--bay) var(--gutter); }
.index-head { margin-bottom: clamp(20px,4vh,54px); }
.index-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--hairline); }
.index-row { border-bottom: 1px solid var(--hairline); }
.index-row .row-inner {
  display: flex; align-items: baseline; gap: clamp(14px,3vw,52px);
  width: 100%; padding: clamp(20px,3.6vh,44px) 0;
  background: transparent; border: 0; text-align: left; cursor: pointer;
  color: inherit; font: inherit;
  transition: padding-left 650ms cubic-bezier(.16,1,.3,1), opacity 450ms ease;
}
.index-num {
  flex: none; width: 2.6em; align-self: flex-start; padding-top: .5em;
  font-family: var(--serif); font-size: clamp(11px,1vw,13px); color: var(--label);
}
.index-title {
  flex: 1; font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px,6.6vw,92px); line-height: .96; letter-spacing: -.025em;
  transition: transform 650ms cubic-bezier(.16,1,.3,1);
}
.index-sub {
  flex: none; max-width: 20ch; align-self: flex-end; padding-bottom: .55em;
  font-size: clamp(11px,1vw,13.5px); line-height: 1.5; letter-spacing: .01em;
  color: var(--label); text-align: right;
  transition: opacity 450ms ease, transform 650ms cubic-bezier(.16,1,.3,1);
}
/* hover choreography — the touched row leans in, the rest recede */
.index-list.hovering .index-row:not(.on) .row-inner { opacity: .3; }
.index-row.on .row-inner { padding-left: clamp(8px,1.4vw,26px); }
.index-row.on .index-title { transform: translateX(clamp(6px,1.2vw,22px)); }
.index-row.on .index-sub { transform: translateX(clamp(-6px,-1.2vw,-22px)); }
/* the cursor-following image */
.index-float {
  position: fixed; top: 0; left: 0; z-index: 70;
  width: clamp(180px,17vw,268px); aspect-ratio: 4/5;
  pointer-events: none; opacity: 0;
  overflow: hidden; background: var(--well);
  box-shadow: 0 44px 90px -34px rgba(0,0,0,.5);
  transition: opacity 480ms cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.index-float img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (hover: none) {
  .index-float { display: none; }
  .index-title { font-size: clamp(30px,9vw,52px); }
  .index-row .row-inner { gap: 12px; flex-wrap: wrap; }
  .index-sub { text-align: left; align-self: auto; padding-bottom: 0; max-width: none; }
}

/* ---- Dark kinetic interlude ---- */
.interlude {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(96px,18vh,240px) var(--gutter);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-bright);
}
.interlude::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 50% 46%, rgba(255,255,255,.05) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;
}
.interlude-media {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 42%;
}
.interlude-scrim {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,18,15,.58) 0%, rgba(20,18,15,.5) 100%),
    radial-gradient(120% 120% at 50% 46%, rgba(20,18,15,.28) 0%, rgba(20,18,15,.72) 100%);
}
.interlude-lines { max-width: 17em; }
.interlude-lines em { color: var(--paper-bright); }
/* Single quiet glint — replaces the old spark canvas */
.interlude-glint {
  position: absolute; z-index: 0; pointer-events: none;
  top: 50%; left: 50%; width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.09) 0%, rgba(255,255,255,0) 62%);
  animation: cbGlint 9s var(--ease, ease-in-out) infinite alternate;
}
@keyframes cbGlint {
  from { opacity: .55; transform: translate(-50%, -50%) scale(.94); }
  to   { opacity: 1;   transform: translate(-50%, -50%) scale(1.06); }
}
.interlude .interlude-lines { position: relative; z-index: 1; }

/* ---- Service ledger (static, replaces marquee ticker) ---- */
.ledger {
  list-style: none; margin: 0; padding: clamp(30px,5vh,60px) var(--gutter);
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: baseline; gap: clamp(14px,2.4vw,36px);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(17px,2.2vw,27px); letter-spacing: -.01em; color: var(--text-2);
}
.ledger li { position: relative; display: inline-block; }
.ledger li + li::before {
  content: ""; position: absolute; left: calc(-1 * clamp(7px,1.2vw,18px));
  top: 50%; width: 3px; height: 3px; margin-top: -1.5px; border-radius: 50%;
  background: var(--label);
}

/* ---- Shop CTA row (directions + book / call) ---- */
.shop-cta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(16px,2.4vw,28px);
  margin-top: clamp(26px,4vh,40px);
}
.shop-cta.center { justify-content: center; }

/* ============ Collection — single-stage category selector ============
   One large stage image at a time, swapped by a four-item index beneath it.
   Colours are section-scoped hex per the design handoff; the display face is
   Cormorant Garamond (specified by the handoff), UI text uses the site sans. */
.cstage {
  --cs-ink: #1A1A18;
  --cs-ground: #F3F1EC;
  --cs-muted: #8C8880;
  --cs-numeral: #A8A29A;
  --cs-rule: rgba(26, 26, 24, .16);
  --cs-display: "Cormorant Garamond", Georgia, serif;
  background: var(--cs-ground); padding: 84px 80px 80px;
}
.cstage-inner { max-width: 1248px; margin: 0 auto; }
.cstage-eyebrow {
  margin: 0; padding-bottom: 44px;
  font-family: var(--sans); font-weight: 400; font-size: 11px;
  letter-spacing: .24em; text-transform: uppercase; color: var(--cs-muted);
}

/* Stage — four images stacked, cross-faded by opacity. */
.cstage-stage { position: relative; height: 520px; }
.cstage-frames { position: absolute; inset: 0; }
.cstage-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; opacity: 0;
  transition: opacity 500ms cubic-bezier(.22, .75, .2, 1);
}
.cstage-img.is-active { opacity: 1; }

/* Caption panel — same ground as the section, so it reads as a notch cut from
   the photo. -1px hides a hairline of image under the panel. */
.cstage-caption {
  position: absolute; left: 0; bottom: -1px; z-index: 2;
  background: var(--cs-ground); padding: 40px 56px 0 0; max-width: 560px;
}
.cstage-name {
  margin: 0; font-family: var(--cs-display); font-weight: 400;
  font-size: 56px; line-height: 1; color: var(--cs-ink);
}
.cstage-desc {
  margin: 16px 0 0; font-family: var(--sans); font-weight: 400;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--cs-muted);
}
.cstage-link {
  display: inline-block; margin-top: 30px;
  font-family: var(--sans); font-weight: 400; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--cs-ink); text-decoration: none;
}
.cstage-link:hover { color: var(--cs-muted); }

/* Index — four real buttons that swap the stage. */
.cstage-index {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  margin-top: 56px; border-top: 1px solid var(--cs-rule);
}
.cstage-tab {
  appearance: none; -webkit-appearance: none; margin: 0; border: 0; background: none;
  padding: 24px 0; display: flex; align-items: baseline; gap: 14px;
  text-align: left; cursor: pointer; color: inherit; transition: opacity 200ms ease;
}
@media (hover: hover) { .cstage-tab:hover { opacity: .6; } }
.cstage-tab:focus-visible { outline: 2px solid var(--cs-ink); outline-offset: 3px; }
.cstage-num {
  font: 400 10px/1 ui-monospace, Menlo, monospace;
  letter-spacing: .18em; color: var(--cs-numeral);
}
.cstage-cat {
  font-family: var(--cs-display); font-weight: 400; font-size: 26px;
  line-height: 1; color: var(--cs-ink);
}
.cstage-mark { font-size: 12px; color: var(--cs-ink); opacity: 0; }
.cstage-tab[aria-current="true"] .cstage-mark { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .cstage-img { transition: none; }
  .cstage-tab { transition: none; }
}

/* Tablet — 768–1279 */
@media (max-width: 1279px) {
  .cstage { padding: 64px 48px; }
  .cstage-stage { height: 420px; }
  .cstage-name { font-size: 44px; }
  .cstage-caption { max-width: 420px; }
  .cstage-cat { font-size: 22px; }
}
/* Mobile — <768: caption drops below the image at full width, index is 2×2. */
@media (max-width: 767px) {
  .cstage { padding: 48px 24px; }
  .cstage-stage { height: auto; }
  .cstage-frames { position: relative; height: 360px; }
  .cstage-caption {
    position: static; max-width: none; padding: 28px 0 0; bottom: auto;
  }
  .cstage-name { font-size: 36px; }
  .cstage-index {
    grid-template-columns: repeat(2, 1fr); gap: 0;
    margin-top: 40px; border-top: 0;
  }
  .cstage-tab { padding: 18px 0; border-bottom: 1px solid var(--cs-rule); }
}

/* ============ Provenance — "our standard" horizontal axis ============
   Editorial header + a horizontal axis carrying four stages, copy alternating
   above/below the rule. Colours are section-scoped hex per the design handoff;
   faces use the site's native type system (EB Garamond + Hanken Grotesk). */
.axis-section { position: relative; background: #F4F3F0; padding: 96px 96px 104px; }
/* Paper feather at the foot of the section — the warm-grey panel dissolves into
   the brighter page paper below the process axis, so the seam into "In the cases"
   is a soft horizon rather than a hard rectangular step. */
.axis-section::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; z-index: 0;
  pointer-events: none; height: clamp(120px, 20vh, 260px);
  background: linear-gradient(to bottom,
    oklch(0.975 0.003 90 / 0) 0%,
    oklch(0.975 0.003 90 / .30) 46%,
    oklch(0.975 0.003 90 / .72) 78%,
    oklch(0.975 0.003 90 / 1) 100%);
}
.axis-inner { position: relative; z-index: 1; max-width: 1248px; margin: 0 auto; }
.axis-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 80px; }
.axis-head-copy { max-width: 620px; }
.axis-eyebrow {
  margin: 0; font-family: var(--sans); font-weight: 400;
  font-size: 13px; letter-spacing: 0.42em; text-transform: uppercase; color: #6F6A61;
}
.axis-heading {
  margin: 26px 0 0; font-family: var(--serif); font-weight: 400;
  font-size: 64px; line-height: 1.02; color: #14120F; text-wrap: pretty;
}
.axis-standfirst {
  margin: 22px 0 0; font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1.5; color: #6F6A61;
}
.axis-plate {
  position: relative; flex: none; width: 360px; height: 260px;
  overflow: hidden; background: #E7E4DF;
}
.axis-plate-inner { position: absolute; inset: 0; }
.axis-plate-inner img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Full-width band variant — spans the whole .axis-inner as a horizon between
   the head copy and the process axis. */
.axis-plate--wide {
  width: 100%; height: auto; aspect-ratio: 2.33 / 1;
  margin-top: clamp(44px, 5vw, 68px);
}
.axis-plate--wide .axis-plate-inner img { object-position: center 58%; }

/* Caption-on-image variant — the standard head copy sits over the rings band
   itself. The image is near-black at the top, so a soft top-left vignette is all
   that's needed to keep the (light) type crisp above the pieces below. */
.axis-plate--caption { margin-top: 0; min-height: 340px; }
.axis-plate--caption::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(158deg,
    rgba(8,7,6,.82) 0%, rgba(8,7,6,.60) 24%, rgba(8,7,6,.36) 44%, rgba(8,7,6,.14) 64%, rgba(8,7,6,0) 82%);
}
.axis-head-copy--over {
  position: absolute; z-index: 2; max-width: 640px; right: auto;
  left: clamp(26px, 3.6vw, 60px); top: clamp(26px, 3.6vw, 56px);
  text-shadow: 0 1px 22px rgba(8,7,6,.5);
}
.axis-plate--caption .axis-eyebrow   { color: rgba(244,243,240,.82); }
.axis-plate--caption .axis-heading   { color: #F7F5F1; }
.axis-plate--caption .axis-standfirst{ color: rgba(244,243,240,.80); }
/* Paper feather along the bottom — the dark band dissolves into the page paper
   (same white blend as the products showcase → grid seam), so the rings read as a
   soft horizon into the process axis below rather than a hard rectangular edge. */
.axis-plate--caption::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  pointer-events: none; height: clamp(110px, 24%, 230px);
  background: linear-gradient(to bottom,
    oklch(0.975 0.003 90 / 0) 0%,
    oklch(0.975 0.003 90 / .12) 34%,
    oklch(0.975 0.003 90 / .42) 60%,
    oklch(0.975 0.003 90 / .78) 82%,
    oklch(0.975 0.003 90 / 1) 100%);
}

.axis-track { position: relative; margin-top: 88px; }
.axis-rule {
  position: absolute; left: 0; right: 0; top: 200px; height: 1px;
  background: rgba(20, 18, 15, 0.14);   /* faint guide track */
}
/* the black line that fills left→right as the section is scrolled */
.axis-rule-fill {
  position: absolute; inset: 0; background: #14120F;
  transform-origin: left center; transform: scaleX(0); will-change: transform;
}
.axis-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.axis-col { position: relative; display: grid; grid-template-rows: 200px 200px; min-width: 0; }
.axis-node {
  position: absolute; top: 200px; left: 0; width: 9px; height: 9px;
  border: 1px solid #14120F; background: #F4F3F0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.axis-stage--above { grid-row: 1; align-self: end; padding-bottom: 30px; }
.axis-stage--below { grid-row: 2; align-self: start; padding-top: 30px; }
.axis-idx {
  display: block; font-family: var(--sans); font-weight: 400;
  font-size: 11px; letter-spacing: 0.26em; color: #6F6A61;
}
.axis-name {
  display: block; margin: 8px 0 0; font-family: var(--serif); font-weight: 400;
  font-size: 32px; line-height: 1; color: #14120F;
}
.axis-body {
  margin: 14px 0 0; max-width: 260px; font-family: var(--serif); font-weight: 400;
  font-size: 17px; line-height: 1.6; color: #6F6A61; text-wrap: pretty;
}

/* Tablet — 768–1199: the axis rotates to a vertical spine (it does not squeeze) */
@media (max-width: 1199px) {
  .axis-section { padding: 56px; }
  .axis-head { flex-direction: column; align-items: stretch; gap: 40px; }
  .axis-head-copy { max-width: none; }
  .axis-plate { width: 100%; height: 220px; }
  .axis-plate--wide { height: auto; aspect-ratio: 2.33 / 1; }
  .axis-plate--caption { aspect-ratio: 16 / 11; }   /* taller so the copy has room */
  .axis-track { margin-top: 56px; }
  .axis-rule { top: 0; bottom: 0; left: 0; right: auto; width: 1px; height: auto; }
  .axis-grid { grid-template-columns: 1fr; gap: 56px; }
  .axis-col { display: block; padding-left: 40px; }
  .axis-node { top: 8px; left: 0; }
  .axis-stage--above, .axis-stage--below { grid-row: auto; align-self: auto; padding: 0; }
  .axis-name { font-size: 28px; }
  .axis-body { max-width: none; }
}
/* Mobile — <768 */
@media (max-width: 767px) {
  .axis-section { padding: 24px; }
  .axis-plate { height: 180px; }
  .axis-plate--caption { aspect-ratio: 4 / 5; }     /* portrait: type up top, rings below */
  .axis-plate--caption .axis-plate-inner img { object-position: center 78%; }
  .axis-grid { gap: 44px; }
  .axis-col { padding-left: 28px; }
  .axis-heading { font-size: 40px; }
  .axis-standfirst { font-size: 19px; }
  .axis-name { font-size: 24px; }
  .axis-body { font-size: 16px; }
}

/* ---- Oversized footer wordmark ---- */
.foot .brand {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(16px,2.3vw,26px);
  line-height: 1;
  letter-spacing: .4em;
  text-transform: uppercase;
  padding-left: .4em;
}
.foot .brand .foot-word { display: inline-block; }
