@import url("/styles/tokens.css");

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; overflow-x: clip; }
html { scroll-behavior: smooth; }
body {
  min-width: 20rem;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-normal);
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
figure { margin: 0; } /* UA default is `1em 40px` — it inset every hero figure. */
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 3px; }

.skip-link {
  position: fixed;
  inset-block-start: var(--space-sm);
  inset-inline-start: var(--space-sm);
  z-index: 20;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-ink);
  color: var(--color-paper);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(100%, var(--page-max)); margin-inline: auto; padding-inline: var(--gutter); }
.measure { max-width: var(--measure); }
.rule { border: 0; border-block-start: var(--rule-hair) solid var(--color-rule); margin: 0; }
.label {
  margin: 0;
  color: var(--color-muted);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
/* Eyebrow with a brass tick — the recurring "hallmark" motif. */
.label--mark { display: flex; align-items: center; gap: var(--space-xs); color: var(--color-brass-ink); }
.label--mark::before { content: ""; width: 1.5rem; height: 2px; background: var(--color-brass); flex: none; }
.section--ink .label--mark { color: var(--color-brass); }

/* ---------------------------------------------------------------- header */

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 10;
  background: oklch(94% 0.005 60 / 0.86);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border-block-end: var(--rule-hair) solid transparent;
  transition: border-color var(--dur-short) var(--ease-out), background var(--dur-short) var(--ease-out);
}
.site-header[data-stuck="true"] {
  background: oklch(94% 0.005 60 / 0.94);
  border-block-end-color: var(--color-rule);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header { background: var(--color-paper); }
}

.site-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-md);
  min-height: var(--header-height);
  align-items: center;
}
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3ch;
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 800;
  letter-spacing: var(--tracking-display);
  text-decoration: none;
  white-space: nowrap;
}
.wordmark span { color: var(--color-brass-ink); }
.nav-actions { display: flex; align-items: center; gap: var(--space-sm); }
.nav-toggle {
  width: var(--control-height-sm);
  height: var(--control-height-sm);
  display: grid;
  place-items: center;
  padding: 0;
  border: var(--rule-hair) solid var(--color-rule-2);
  border-radius: var(--radius-round);
  background: transparent;
  color: var(--color-ink);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-links {
  display: none;
  position: absolute;
  inset: var(--header-height) var(--gutter) auto;
  z-index: 12;
  padding: var(--space-sm) var(--space-md) var(--space-md);
  background: var(--color-paper);
  border: var(--rule-hair) solid var(--color-rule);
  box-shadow: var(--shadow-soft);
}
.nav-links[data-open="true"] { display: grid; }
.nav-links a {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  border-block-end: var(--rule-hair) solid var(--color-rule);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:last-child { border-block-end: 0; }
.nav-links .nav-cta { font-weight: 700; color: var(--color-brass-ink); }

/* ------------------------------------------------------------------ hero */

.hero {
  display: grid;
  gap: var(--space-xl);
  min-height: clamp(32rem, 72dvh, 46rem);
  padding-block: var(--space-2xl) var(--space-2xl);
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero h1, .page-hero h1 {
  max-width: 12ch;
  margin: var(--space-md) 0 var(--space-lg);
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 800;
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-display);
  overflow-wrap: anywhere;
}
.hero-lede, .page-lede {
  max-width: 34rem;
  margin: 0 0 var(--space-lg);
  color: var(--color-neutral);
  font-size: var(--text-md);
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-sm) var(--space-lg); }
/* Flex-wrap, not grid-auto-flow:column — forcing one row let the facts run
   past the copy column and under the hero photograph. */
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-lg);
  margin: var(--space-xl) 0 0;
  padding: 0;
  list-style: none;
}
.hero-facts li {
  display: flex;
  gap: var(--space-sm);
  align-items: baseline;
  min-width: 0;
  color: var(--color-neutral);
  font-size: var(--text-sm);
}
.hero-facts li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border: 1px solid var(--color-brass-ink);
  background: var(--color-brass-wash);
  transform: rotate(45deg) translateY(-0.1rem);
}

/* Grid (not block) so a stretched or min-height figure hands a definite
   height to the image — a block figure makes img{height:100%} resolve to auto. */
.hero-media {
  display: grid;
  width: 100%;
  min-width: 0;
  position: relative;
  overflow: hidden;
  background: var(--color-paper-2);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lift);
}
.hero-media img { grid-area: 1 / 1; width: 100%; height: 100%; min-height: 0; object-fit: cover; filter: saturate(0.92) contrast(1.03); }
/* Full-width caption plinth instead of a scrim — a printed-plate cue that
   keeps the photograph itself untinted. */
.hero-media figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-overlay);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--color-paper);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
}
.image-unavailable {
  display: grid;
  place-items: center;
  min-height: 12rem;
  background: var(--color-paper-3);
}
.image-unavailable::before {
  content: "Photograph unavailable";
  color: var(--color-muted);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.image-unavailable figcaption { position: static; background: none; color: var(--color-muted); }

/* --------------------------------------------------------------- controls */

.text-link, .button {
  display: inline-flex;
  min-height: var(--control-height);
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 700;
}
.text-link { border-block-end: var(--rule-hair) solid currentColor; }
.button {
  padding-inline: var(--space-lg);
  border: var(--rule-hair) solid var(--color-ink);
  background: var(--color-ink);
  color: var(--color-paper);
  cursor: pointer;
}
.button--quiet { background: transparent; color: var(--color-ink); }
.button--sm { min-height: var(--control-height-sm); padding-inline: var(--space-md); font-size: var(--text-sm); }
.button:active, .text-link:active { transform: translateY(1px); }
.button:disabled, .button[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; pointer-events: none; }
.section--ink .button { border-color: var(--color-paper); background: var(--color-paper); color: var(--color-ink); }

/* ------------------------------------------------------------- trust line */

.trust-line {
  display: grid;
  gap: var(--space-lg);
  padding-block: var(--space-lg) var(--space-xl);
  border-block-end: var(--rule-hair) solid var(--color-rule);
}
.trust-line p {
  margin: 0;
  padding-block-start: var(--space-sm);
  border-block-start: 2px solid var(--color-brass);
  font-size: var(--text-md);
  line-height: var(--lh-snug);
}
.trust-line span { display: block; margin-block-start: var(--space-2xs); color: var(--color-muted); font-size: var(--text-sm); line-height: var(--lh-normal); }

/* -------------------------------------------------------------- sections */

.section { padding-block: var(--space-3xl); }
.section--tight { padding-block: var(--space-2xl); }
.section--ink { background: var(--color-ink); color: var(--color-paper); }
.section--paper-2 { background: var(--color-paper-2); color: var(--color-ink); }
.section-title {
  max-width: 18ch;
  margin: 0 0 var(--space-lg);
  font-family: var(--font-display);
  font-size: var(--text-display-s);
  font-weight: 800;
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-display);
}
.section-intro { max-width: 45rem; margin: 0 0 var(--space-2xl); color: var(--color-neutral); font-size: var(--text-md); }
.section--ink .section-intro { color: var(--color-paper-3); }
.section-head { margin-block-end: var(--space-2xl); }
.section-head .section-title { margin-block: var(--space-md) var(--space-lg); }
.section-head .section-intro { margin-block-end: 0; }

/* ----------------------------------------------------------- brands + gold */

.brands-layout { display: grid; gap: var(--space-2xl); align-items: start; }
.brand-strip { display: grid; gap: 0; border-block-start: var(--rule-hair) solid var(--color-rule-2); }
.brand-strip a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "name arrow" "models models";
  gap: var(--space-2xs) var(--space-md);
  align-items: baseline;
  padding-block: var(--space-md);
  border-block-end: var(--rule-hair) solid var(--color-rule);
  text-decoration: none;
}
.brand-strip a > span {
  grid-area: name;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  line-height: var(--lh-snug);
}
.brand-strip a::after {
  content: "→";
  grid-area: arrow;
  color: var(--color-brass-ink);
  font-size: var(--text-base);
}
.brand-strip small { grid-area: models; color: var(--color-muted); font-size: var(--text-sm); line-height: var(--lh-snug); }

.gold-card {
  padding: var(--space-xl);
  background: var(--color-paper-2);
  border: var(--rule-hair) solid var(--color-rule);
  border-inline-start: 3px solid var(--color-brass);
}
.gold-card h3 { margin: var(--space-sm) 0 var(--space-sm); font-family: var(--font-display); font-size: var(--text-lg); line-height: var(--lh-snug); }
.gold-card p { margin: 0 0 var(--space-md); color: var(--color-neutral); }
.gold-card p:last-child { margin-block-end: 0; }

/* ----------------------------------------------------------- watch cards */

.watch-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-lg); }
.watch-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--color-paper);
  border: var(--rule-hair) solid var(--color-rule);
  overflow: hidden;
}
.watch-card figure { margin: 0; aspect-ratio: 1 / 1; overflow: hidden; background: var(--color-paper-3); }
.watch-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) contrast(1.04); }
.watch-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: var(--space-2xs);
  padding: var(--space-md) var(--space-md) var(--space-lg);
}
.watch-card h3 { margin: var(--space-2xs) 0 0; font-family: var(--font-display); font-size: var(--text-lg); line-height: var(--lh-snug); }
.watch-meta, .watch-ref { margin: 0; color: var(--color-muted); font-size: var(--text-sm); }
.watch-ref { font-family: var(--font-label); }
.watch-offer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs) var(--space-md);
  justify-content: space-between;
  align-items: baseline;
  margin: auto 0 0;
  padding-block-start: var(--space-md);
  margin-block-start: var(--space-md);
  border-block-start: var(--rule-hair) solid var(--color-rule);
}
.watch-offer span {
  color: var(--color-muted);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.watch-offer strong {
  color: var(--color-brass-ink);
  font-size: var(--text-md);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.fineprint { max-width: 60rem; margin: var(--space-xl) 0 0; color: var(--color-muted); font-size: var(--text-sm); }

/* ----------------------------------------------------- dial (chapter ring) */

.dial-figure { margin: var(--space-2xl) 0 0; max-width: 17rem; }
.dial { width: 100%; height: auto; overflow: visible; }
.dial-edge { fill: none; stroke: var(--color-brass); stroke-width: 0.75; opacity: 0.5; }
.dial-face { fill: none; stroke: var(--color-rule-2); stroke-width: 0.5; }
.tick { stroke: var(--color-paper-3); stroke-width: 0.9; opacity: 0.55; }
.tick--major { stroke: var(--color-brass); stroke-width: 1.6; opacity: 1; }
.dial-legend {
  fill: var(--color-paper-3);
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.22em;
}
.dial-hours {
  fill: var(--color-paper);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.dial-hand { transform-origin: 100px 100px; }
.dial-hand line { stroke: var(--color-brass); stroke-width: 1.6; stroke-linecap: round; }
.dial-pin { fill: var(--color-brass); }
@media (prefers-reduced-motion: no-preference) {
  /* A true stepping seconds hand — 60 discrete beats, not a sweep. */
  .dial-hand { animation: dial-sweep 60s steps(60, end) infinite; }
}
@keyframes dial-sweep { to { transform: rotate(360deg); } }

.process-layout { display: grid; gap: var(--space-2xl); align-items: start; }
.process-aside .section-title { margin-block: var(--space-md) var(--space-lg); }
.process-aside .section-intro { margin-block-end: 0; }

/* -------------------------------------------------------------- routes */

.routes { display: grid; gap: var(--space-lg); }
.route {
  display: flex;
  flex-direction: column;
  padding: var(--space-xl);
  background: var(--color-paper);
  border: var(--rule-hair) solid var(--color-rule);
  border-block-start: 3px solid var(--color-brass);
}
.route--ink {
  background: var(--color-ink);
  color: var(--color-paper);
  border-color: var(--color-ink);
  border-block-start-color: var(--color-brass);
}
.route-index {
  margin: 0 0 var(--space-md);
  color: var(--color-brass-ink);
  font-family: var(--font-label);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-label);
}
.route--ink .route-index { color: var(--color-brass); }
.route h3 {
  max-width: 18ch;
  margin: 0 0 var(--space-md);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-display);
}
.route-lede { margin: 0 0 var(--space-lg); color: var(--color-neutral); font-size: var(--text-md); }
.route--ink .route-lede { color: var(--color-paper-3); }
.route-steps {
  counter-reset: route;
  margin: 0 0 var(--space-lg);
  padding: 0;
  list-style: none;
  border-block-start: var(--rule-hair) solid var(--color-rule);
}
.route--ink .route-steps, .route--ink .route-steps li { border-color: var(--color-rule-2); }
.route-steps li {
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  gap: var(--space-sm);
  padding-block: var(--space-md);
  border-block-end: var(--rule-hair) solid var(--color-rule);
  counter-increment: route;
  font-size: var(--text-sm);
}
.route-steps li::before {
  content: counter(route);
  color: var(--color-brass-ink);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  line-height: 1.7;
}
.route--ink .route-steps li::before { color: var(--color-brass); }
.route-foot {
  margin: auto 0 0;
  color: var(--color-muted);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  line-height: 1.7;
}
.route--ink .route-foot { color: var(--color-paper-3); }

/* ---------------------------------------------------------------- steps */

.steps { display: grid; gap: 0; counter-reset: steps; border-block-start: var(--rule-hair) solid var(--color-rule-2); }
.step {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: var(--space-md);
  padding-block: var(--space-xl);
  border-block-end: var(--rule-hair) solid var(--color-rule-2);
  counter-increment: steps;
}
.step::before { content: "0" counter(steps); color: var(--color-brass); font-family: var(--font-label); }
.step h3 { margin: 0 0 var(--space-xs); font-family: var(--font-display); font-size: var(--text-xl); }
.step p { margin: 0; color: var(--color-paper-3); }

/* ----------------------------------------------------------------- form */

.quote-layout { display: grid; gap: var(--space-2xl); align-items: start; }
.quote-aside { max-width: 32rem; }
.quote-aside > .section-title { margin-block: var(--space-md) var(--space-lg); }
.quote-aside ul { margin: var(--space-lg) 0 0; padding: 0; list-style: none; }
.quote-aside li { padding-block: var(--space-sm); border-block-end: var(--rule-hair) solid var(--color-rule); }
.quote-aside li:first-child { border-block-start: var(--rule-hair) solid var(--color-rule); }

.quote-form {
  display: grid;
  gap: var(--space-lg);
  padding: clamp(var(--space-md), 3vw, var(--space-xl));
  background: var(--color-paper);
  border: var(--rule-hair) solid var(--color-rule);
  box-shadow: var(--shadow-lift);
}
.form-grid { display: grid; gap: var(--space-lg); }
.field { display: grid; gap: var(--space-2xs); min-width: 0; }
.field label, .field legend { font-weight: 700; font-size: var(--text-sm); }
.field small { display: block; min-height: 1lh; color: var(--color-muted); font-size: var(--text-xs); line-height: 1.45; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: var(--control-height);
  padding: var(--space-xs) var(--space-sm);
  border: var(--rule-hair) solid var(--color-rule-2);
  outline: 2px solid transparent;
  outline-offset: 1px;
  border-radius: var(--radius-sm);
  background: var(--color-paper);
  color: var(--color-ink);
  transition: border-color var(--dur-short) var(--ease-out), background var(--dur-short) var(--ease-out);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline-color: var(--color-focus); }
.field input[aria-invalid="true"] { border-color: var(--color-error); }
.field input:disabled, .field select:disabled, .field textarea:disabled { opacity: 0.55; cursor: not-allowed; background: var(--color-paper-2); }
.file-drop {
  padding: var(--space-lg);
  border: var(--rule-hair) dashed var(--color-rule-2);
  border-radius: var(--radius-sm);
  background: var(--color-paper-2);
}
.file-drop input[type="file"] { padding: var(--space-sm); border-style: dashed; background: var(--color-paper); }
.consent { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: var(--space-sm); align-items: start; font-size: var(--text-sm); color: var(--color-neutral); }
.consent input { width: 1.25rem; height: 1.25rem; margin-block-start: 0.2rem; accent-color: var(--color-accent); }
.form-status { min-height: 1.5rem; margin: 0; font-weight: 700; }
.form-status[data-state="error"] { color: var(--color-error); }
.form-status[data-state="ok"] { color: var(--color-success); }
/* Honeypot: off-screen rather than display:none, which some bots skip. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* -------------------------------------------------------- interior pages */

.page-hero { padding-block: var(--space-2xl) var(--space-3xl); border-block-end: var(--rule-hair) solid var(--color-rule); }
.page-hero h1 { max-width: 16ch; }
.split { display: grid; gap: var(--space-2xl); align-items: start; }
.split aside h2 { margin: var(--space-xl) 0 var(--space-md); font-family: var(--font-display); font-size: var(--text-lg); line-height: var(--lh-snug); }
.split aside > :first-child { margin-block-start: 0; }
.prose { max-width: var(--measure); }
/* Same reason as `.faq`: when prose *is* the shell, hold the measure on the
   children so the column stays left-aligned under the page h1. */
.shell.prose { max-width: none; }
.shell.prose > * { max-width: var(--measure); }
.prose h2 { margin: var(--space-2xl) 0 var(--space-md); font-family: var(--font-display); font-size: var(--text-2xl); line-height: var(--lh-snug); }
.prose > h2:first-child { margin-block-start: 0; }
.prose p { margin: 0 0 var(--space-lg); }
.model-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-xs) var(--space-md); padding: 0; list-style: none; }
.model-list li { padding-block: var(--space-sm); border-block-end: var(--rule-hair) solid var(--color-rule); font-size: var(--text-sm); }

/* max-width lives on the items, not on `.shell.faq` itself — narrowing the
   shell would centre the whole column away from the left-aligned h1. */
.faq details { max-width: 55rem; border-block-end: var(--rule-hair) solid var(--color-rule); }
.faq details:first-child { border-block-start: var(--rule-hair) solid var(--color-rule); }
.faq summary {
  min-height: 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-md);
  align-items: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--color-brass-ink);
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 400;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: var(--measure); padding-block-end: var(--space-lg); margin: 0; color: var(--color-neutral); }

.article-list { display: grid; gap: 0; border-block-start: var(--rule-hair) solid var(--color-rule); }
.article-link { display: grid; gap: var(--space-sm); padding-block: var(--space-xl); border-block-end: var(--rule-hair) solid var(--color-rule); text-decoration: none; }
.article-link h2 { margin: 0; font-family: var(--font-display); font-size: var(--text-xl); line-height: var(--lh-snug); }
.article-link p { margin: 0; color: var(--color-muted); }
.article-meta { margin: 0; color: var(--color-brass-ink); font-family: var(--font-label); font-size: var(--text-xs); letter-spacing: var(--tracking-label); text-transform: uppercase; }

/* --------------------------------------------------------------- footer */

.site-footer { padding-block: var(--space-3xl) var(--space-xl); border-block-start: var(--rule-hair) solid var(--color-rule); }
.footer-mast { margin: 0 0 var(--space-2xl); font-family: var(--font-display); font-size: clamp(2.4rem, 7vw, 6.5rem); font-weight: 800; line-height: var(--lh-tight); letter-spacing: var(--tracking-display); overflow-wrap: anywhere; }
.footer-mast em { font-style: italic; color: var(--color-brass-ink); }
.footer-row { display: grid; gap: var(--space-lg); padding-block-start: var(--space-lg); border-block-start: var(--rule-hair) solid var(--color-rule); }
.footer-links { display: flex; gap: var(--space-md) var(--space-lg); flex-wrap: wrap; margin-block-end: var(--space-md); }
.footer-links a { white-space: nowrap; font-size: var(--text-sm); }
.copyright { margin: 0; color: var(--color-muted); font-size: var(--text-sm); }

/* --------------------------------------------------------------- reveal */

/* Opt-in only under no-preference, and only once JS has confirmed it can
   observe — otherwise a no-JS or reduced-motion visitor would be left with
   permanently invisible content. */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal-ready] [data-reveal] {
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
    transition-delay: calc(var(--reveal-delay, 0) * 90ms);
  }
  [data-reveal-ready] [data-reveal][data-revealed="true"] {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------------------------------------------------- sticky mobile CTA */

.mobile-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 9;
  padding: var(--space-sm) var(--gutter) calc(var(--space-sm) + env(safe-area-inset-bottom));
  background: oklch(94% 0.005 60 / 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-block-start: var(--rule-hair) solid var(--color-rule);
  box-shadow: var(--shadow-bar);
  transform: translateY(110%);
  transition: transform var(--dur-medium) var(--ease-out);
}
.mobile-cta[data-visible="true"] { transform: translateY(0); }
.mobile-cta .button { width: 100%; }
/* Keep the docked bar from covering the last line of the footer. */
@media (max-width: 59.999rem) { .site-footer { padding-block-end: calc(var(--space-xl) + 5rem); } }

/* ---------------------------------------------------------------- hover */

@media (hover: hover) and (pointer: fine) {
  .text-link, .nav-links a, .footer-links a, .brand-strip a, .article-link { transition: color var(--dur-short) var(--ease-out), border-color var(--dur-short) var(--ease-out), background var(--dur-short) var(--ease-out); }
  .nav-links a:hover, .footer-links a:hover, .text-link:hover, .brand-strip a:hover { color: var(--color-brass-ink); }
  .article-link:hover h2 { color: var(--color-brass-ink); }
  .button:hover { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-accent-ink); }
  .button--quiet:hover { background: var(--color-paper-2); color: var(--color-ink); }
  .section--ink .button:hover { background: var(--color-paper-3); border-color: var(--color-paper-3); color: var(--color-ink); }
  .nav-toggle:hover { border-color: var(--color-ink); }
  .watch-card { transition: box-shadow var(--dur-medium) var(--ease-out), border-color var(--dur-medium) var(--ease-out); }
  .watch-card img { transition: transform var(--dur-medium) var(--ease-out); }
  .watch-card:hover { border-color: var(--color-rule-2); box-shadow: var(--shadow-lift); }
  .watch-card:hover img { transform: scale(1.02); }
  .faq summary:hover { color: var(--color-brass-ink); }
  .field input:hover, .field select:hover, .field textarea:hover { border-color: var(--color-rule-2); background: var(--color-paper-2); }
}

/* --------------------------------------------------------------- layout */

@media (min-width: 40rem) {
  .trust-line { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .watch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field--wide { grid-column: 1 / -1; }
  .article-link { grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.65fr); align-items: end; }
  .footer-row { grid-template-columns: 1fr auto; align-items: end; }
}

@media (min-width: 60rem) {
  .site-nav { grid-template-columns: auto minmax(0, 1fr) auto; }
  .nav-toggle { display: none; }
  .nav-links {
    display: flex;
    position: static;
    justify-content: flex-end;
    gap: var(--space-lg);
    padding: 0;
    inset: auto;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .nav-links a { border-block-end: 0; font-size: var(--text-sm); }
  .nav-links .nav-cta { display: none; }
  .hero { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: var(--space-3xl); }
  /* Stretch only once the hero is two-column; on one column a stretched row
     plus aspect-ratio would size the figure from its height and under-fill. */
  .hero > .hero-media { align-self: stretch; aspect-ratio: auto; }
  .split aside .hero-media { aspect-ratio: 4 / 3; }
  .brands-layout { grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr); gap: var(--space-3xl); }
  .watch-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .routes { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-xl); }
  .route { padding: var(--space-2xl); }
  .process-layout { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: var(--space-3xl); }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .step { grid-template-columns: 1fr; padding: var(--space-xl); border-inline-end: var(--rule-hair) solid var(--color-rule-2); }
  .step:last-child { border-inline-end: 0; }
  /* Inside the process layout the steps read down the right-hand column. */
  .steps--stacked { grid-template-columns: minmax(0, 1fr); }
  .steps--stacked .step { grid-template-columns: 3rem minmax(0, 1fr); padding: var(--space-xl) 0; border-inline-end: 0; }
  .quote-layout { grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr); }
  .quote-aside { position: sticky; inset-block-start: calc(var(--header-height) + var(--space-lg)); }
  .split { grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr); }
  .mobile-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms; animation-iteration-count: 1; scroll-behavior: auto; transition-duration: 0.01ms; }
  .mobile-cta { transition: none; }
}

/* ---------------------------------------------------------- ship-to block */

/* Revealed only when the seller picks the shipping route — asking everyone for
   a street address up front costs conversions from people who want a visit. */
.ship-to {
  margin: 0;
  padding: var(--space-lg);
  border: var(--rule-hair) solid var(--color-rule-2);
  border-inline-start: 3px solid var(--color-brass);
  background: var(--color-paper-2);
}
.ship-to[hidden] { display: none; }
.ship-to legend {
  padding-inline: var(--space-xs);
  margin-inline-start: calc(-1 * var(--space-xs));
  font-weight: 700;
  font-size: var(--text-sm);
}
.ship-to-note { margin: 0 0 var(--space-lg); color: var(--color-muted); font-size: var(--text-xs); line-height: 1.6; }
.ship-to .form-grid { gap: var(--space-md); }
