/* =================================================================
   WeBuyOld — one-page site
   Design system: "the travelling valuer's catalogue"
   Palette: Charcoal / Ivory / Stone (brand) + Ink (derived)
   Type: Fraunces (display) · Libre Caslon Text (body/labels)
   ================================================================= */

/* ---------- Tokens ---------- */
:root{
  /* brand palette */
  --ink:      #232222;   /* deepest — footer, intro */
  --charcoal: #474746;   /* brand charcoal — text + dark sections */
  --ivory:    #F1F1EE;   /* brand ivory — page */
  --stone:    #D9D8D6;   /* brand stone — rules, secondary */
  --champagne:#C9AE8C;   /* warm brass — hero accent only, sampled from the photography */

  /* derived */
  --paper-2:  #E9E8E4;   /* faint panel on ivory */
  --ink-2:    #302F2E;   /* raised panel on dark */
  --line:     color-mix(in srgb, var(--charcoal) 22%, transparent);
  --line-soft:color-mix(in srgb, var(--charcoal) 12%, transparent);
  --line-d:   color-mix(in srgb, var(--ivory) 20%, transparent);
  --line-d-soft: color-mix(in srgb, var(--ivory) 11%, transparent);

  /* type */
  --font-display: 'Fraunces', 'Big Caslon', 'Hoefler Text', Georgia, 'Times New Roman', serif;
  --font-body: 'Libre Caslon Text', 'Big Caslon', 'Hoefler Text', Georgia, 'Times New Roman', serif;

  /* fluid scale */
  --t--1: clamp(0.8rem, 0.77rem + 0.12vw, 0.875rem);
  --t-0:  clamp(1rem, 0.95rem + 0.22vw, 1.12rem);
  --t-1:  clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  --t-2:  clamp(1.5rem, 1.28rem + 1vw, 2.15rem);
  --t-3:  clamp(2rem, 1.55rem + 2.1vw, 3.4rem);
  --t-4:  clamp(2.5rem, 1.8rem + 3.4vw, 4.8rem);
  --t-hero: clamp(3rem, 1.7rem + 6.6vw, 8.6rem);
  --t-mega: clamp(4rem, 1rem + 15vw, 15rem);

  /* layout */
  --container: 1680px;
  --pad: clamp(1.25rem, 4.5vw, 5.5rem);
  --section-y: clamp(5rem, 4rem + 6vw, 10rem);
  --nav-h: 74px;

  /* motion */
  --ease: cubic-bezier(.19, 1, .22, 1);
  --ease-out: cubic-bezier(.22, .61, .36, 1);

  /* photography plates */
  --r-plate: clamp(12px, 1.1vw, 18px);
  --r-chip: 10px;

  --sel: color-mix(in srgb, var(--charcoal) 22%, var(--stone));
}

/* ---------- Reset / base ---------- */
*, *::before, *::after{ box-sizing: border-box; }
*{ margin: 0; }
html{
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior: auto; } }

body{
  font-family: var(--font-body);
  font-size: var(--t-0);
  line-height: 1.62;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  overflow-x: hidden;
}
body.is-loading{ overflow: hidden; height: 100vh; }

img, svg{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
button, input, textarea{ font: inherit; color: inherit; }
button{ background: none; border: 0; cursor: pointer; }
::selection{ background: var(--charcoal); color: var(--ivory); }

/* Fraunces display defaults — dignified, low softness/wonk */
.display{
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'SOFT' 0, 'WONK' 0;
  line-height: 1.02;
  letter-spacing: -0.012em;
}

/* ---------- Utilities ---------- */
.sr-only{
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link{
  position: fixed; top: 8px; left: 8px; z-index: 200;
  padding: .6rem 1rem; background: var(--charcoal); color: var(--ivory);
  border-radius: 2px; transform: translateY(-160%); transition: transform .25s var(--ease);
}
.skip-link:focus{ transform: translateY(0); }

:where(a, button, input, textarea, .btn):focus-visible{
  outline: 2px solid var(--charcoal);
  outline-offset: 3px;
  border-radius: 1px;
}
.tour :focus-visible, .contact :focus-visible,
.hero :focus-visible, .nav:not(.is-stuck) :focus-visible{ outline-color: var(--ivory); }

.eyebrow{
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: var(--t--1);
  letter-spacing: .2em;
  color: color-mix(in srgb, var(--charcoal) 78%, transparent);
}
.hallmark{ width: 26px; height: 26px; color: var(--charcoal); flex: none; }
.hallmark--sm{ width: 18px; height: 18px; }

/* Buttons */
.btn{
  --bg: transparent; --fg: var(--charcoal); --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .95em 1.6em;
  font-family: var(--font-body);
  font-size: var(--t--1);
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--fg); background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 999px;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .5s var(--ease);
  will-change: transform;
}
.btn .i{ width: 1.1em; height: 1.1em; transition: transform .4s var(--ease); }
.btn--solid{ --bg: var(--charcoal); --fg: var(--ivory); --bd: var(--charcoal); }
.btn--solid:hover{ --bg: var(--ink); --bd: var(--ink); }
.btn--solid:hover .i{ transform: translateX(4px); }
.btn--ghost{ --fg: var(--charcoal); padding-inline: .2em; border-radius: 0; }
.btn--pill{ --bd: var(--line); }
.btn--pill:hover{ --bg: var(--charcoal); --fg: var(--ivory); --bd: var(--charcoal); }
.btn--outline-light{ --fg: var(--ivory); --bd: var(--line-d); }
.btn--outline-light:hover{ --bg: var(--ivory); --fg: var(--ink); --bd: var(--ivory); }
.btn--block{ width: 100%; }

.link-arrow{ position: relative; }
.link-arrow::after{
  content: ""; position: absolute; left: .2em; right: 1.9em; bottom: .62em; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.link-arrow:hover::after{ transform: scaleX(1); }
.btn--solid.link-arrow::after, .btn--pill.link-arrow::after{ content: none; }

/* Wordmark */
.wordmark{ width: clamp(118px, 12vw, 150px); height: auto; color: var(--charcoal); }
.wordmark--xl{ width: min(92vw, 1180px); color: var(--ivory); }

/* ---------- Grain + vignette ---------- */
.grain{
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .05; mix-blend-mode: multiply;
}
body::after{ /* soft vignette */
  content: ""; position: fixed; inset: 0; z-index: 89; pointer-events: none;
  background: radial-gradient(130% 100% at 50% 0%, transparent 62%, color-mix(in srgb, var(--charcoal) 9%, transparent) 100%);
}

/* ---------- Intro (panel-split reveal) ---------- */
.intro{ position: fixed; inset: 0; z-index: 500; display: flex; }
.intro__panel{ flex: 1; height: 100%; background: var(--ivory); will-change: transform; }
.intro__brand{
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-content: center; justify-items: center; gap: 1.1rem;
}
.intro__wordmark{ width: clamp(180px, 30vw, 340px); color: var(--charcoal); opacity: 0; transform: translateY(14px); }
.intro__tag{
  text-transform: uppercase; letter-spacing: .28em; font-size: var(--t--1);
  color: color-mix(in srgb, var(--charcoal) 55%, transparent);
  opacity: 0; transform: translateY(14px);
}
.intro.is-brand .intro__wordmark{ opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .9s var(--ease); }
.intro.is-brand .intro__tag{ opacity: 1; transform: none; transition: opacity .7s var(--ease) .12s, transform .9s var(--ease) .12s; }
.intro.is-brand-out .intro__brand{ opacity: 0; transition: opacity .45s var(--ease); }
.intro.is-open .intro__panel{ transform: translateY(-100.5%); transition: transform 1s var(--ease); }
.intro.is-open .intro__panel:nth-child(2){ transition-delay: .08s; }
.intro.is-open .intro__panel:nth-child(3){ transition-delay: .16s; }
.intro.is-gone{ display: none; }

/* ---------- Nav ---------- */
.nav{
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  padding-inline: max(var(--pad), calc((100% - var(--container)) / 2));
  /* ivory over the dark hero -> charcoal on the warm glass once stuck */
  --nav-fg: var(--ivory); --nav-contrast: var(--ink);
  color: var(--nav-fg);
  transition: background .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s, color .5s var(--ease);
  border-bottom: 1px solid transparent;
  /* enters gently once the intro clears (JS toggles body.hero-in) */
  opacity: 0; transform: translateY(-14px);
}
body.hero-in .nav{ opacity: 1; transform: none; transition: opacity .8s var(--ease) .1s, transform .9s var(--ease) .1s, color .5s var(--ease); }
.nav__inner{
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav.is-stuck{
  --nav-fg: var(--charcoal); --nav-contrast: var(--ivory);
  background: color-mix(in srgb, var(--ivory) 80%, transparent);
  backdrop-filter: blur(16px) saturate(1.06);
  -webkit-backdrop-filter: blur(16px) saturate(1.06);
  border-bottom-color: var(--line-soft);
}
/* the toggle sits over the ivory mobile menu when open */
body.menu-open .nav{ --nav-fg: var(--charcoal); }
.nav__brand .wordmark{ color: currentColor; }

.live-dot{
  width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex: none; position: relative;
}
.live-dot::after{
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid currentColor; opacity: .5;
  animation: livePulse 2.4s var(--ease-out) infinite;
}
@keyframes livePulse{ 0%{ transform: scale(.55); opacity: .6; } 70%,100%{ transform: scale(1.6); opacity: 0; } }

.nav__links{ display: flex; gap: clamp(1rem, 2.2vw, 2.4rem); margin-inline-start: auto; }
.nav__links a{
  position: relative; font-size: var(--t--1); letter-spacing: .02em;
  color: color-mix(in srgb, currentColor 88%, transparent); padding-block: .35rem;
}
/* mask text-swap on hover */
.nav__swap{ position: relative; display: inline-block; overflow: hidden; vertical-align: top; }
.nav__swap span{ display: block; transition: transform .5s var(--ease); }
.nav__swap span:nth-child(2){ position: absolute; inset: 0; transform: translateY(105%); }
.nav__links a:hover .nav__swap span:nth-child(1){ transform: translateY(-105%); }
.nav__links a:hover .nav__swap span:nth-child(2){ transform: translateY(0); }
/* understated active-link underline */
.nav__links a::after{
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.nav__links a.is-current::after{ transform: scaleX(1); }
.nav__cta{
  margin-inline-start: .6rem;
  color: var(--nav-fg); border-color: color-mix(in srgb, var(--nav-fg) 42%, transparent);
}
.nav__cta:hover{ background: var(--nav-fg); color: var(--nav-contrast); border-color: var(--nav-fg); }
.nav__toggle{ display: none; width: 42px; height: 42px; position: relative; z-index: 96; }
.nav__toggle span{
  position: absolute; left: 9px; right: 9px; height: 1.5px; background: currentColor;
  transition: transform .4s var(--ease), opacity .3s;
}
.nav__toggle span:nth-child(1){ top: 17px; }
.nav__toggle span:nth-child(2){ bottom: 17px; }
body.menu-open .nav__toggle span:nth-child(1){ transform: translateY(4px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2){ transform: translateY(-4px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu{
  position: fixed; inset: 0; z-index: 95;
  background: var(--ivory);
  padding: calc(var(--nav-h) + 3rem) var(--pad) 3rem;
  display: flex; flex-direction: column; justify-content: center; gap: 2.5rem;
  clip-path: inset(0 0 100% 0); pointer-events: none;
  transition: clip-path .8s var(--ease);
}
body.menu-open .mobile-menu{ clip-path: inset(0 0 0 0); pointer-events: auto; }
.mobile-menu__links{ display: flex; flex-direction: column; gap: .35rem; }
.mobile-menu__links a{ display: block; overflow: hidden; }
.m-line{
  display: flex; align-items: baseline; gap: 1rem;
  font-family: var(--font-display); font-size: clamp(2rem, 9vw, 3rem); line-height: 1.22;
  transform: translateY(115%); transition: transform .6s var(--ease);
}
body.menu-open .m-line{ transform: none; }
body.menu-open .mobile-menu__links a:nth-child(1) .m-line{ transition-delay: .16s; }
body.menu-open .mobile-menu__links a:nth-child(2) .m-line{ transition-delay: .22s; }
body.menu-open .mobile-menu__links a:nth-child(3) .m-line{ transition-delay: .28s; }
body.menu-open .mobile-menu__links a:nth-child(4) .m-line{ transition-delay: .34s; }
body.menu-open .mobile-menu__links a:nth-child(5) .m-line{ transition-delay: .40s; }
body.menu-open .mobile-menu__links a:nth-child(6) .m-line{ transition-delay: .46s; }
.mobile-menu__links .idx{
  font-family: var(--font-body); font-size: .8rem; letter-spacing: .1em;
  color: color-mix(in srgb, var(--charcoal) 50%, transparent);
}
.mobile-menu__cta{ opacity: 0; transform: translateY(14px); }
body.menu-open .mobile-menu__cta{ opacity: 1; transform: none; transition: opacity .5s var(--ease) .52s, transform .5s var(--ease) .52s; }

/* ---------- Section base ---------- */
.section{
  position: relative;
  padding-block: var(--section-y);
  padding-inline: max(var(--pad), calc((100% - var(--container)) / 2));
}
.section__head{ margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section__head--split{
  display: grid; gap: 1.5rem clamp(2rem, 6vw, 6rem);
  grid-template-columns: 1fr; align-items: end;
}
.section__title{ font-size: var(--t-4); margin-top: 1rem; }
.section__intro{
  font-size: var(--t-1); line-height: 1.5; max-width: 46ch;
  color: color-mix(in srgb, var(--charcoal) 82%, transparent);
}

/* ---------- Plates (photography) ----------
   Rounded "specimen plates" — the arch echoes the church-hall windows
   the tour lives in; the inner hairline is the museum mount. */
.plate{
  position: relative; overflow: hidden; margin: 0;
  border-radius: var(--r-plate);
  border: 1px solid var(--line);
  background: var(--paper-2);
  isolation: isolate;
}
.plate img{
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.93);
  transition: transform 1.2s var(--ease);
}
.plate:hover img{ transform: scale(1.035); }
.plate::after{
  content: ""; position: absolute; inset: 10px; z-index: 2; pointer-events: none;
  border: 1px solid color-mix(in srgb, var(--ivory) 45%, transparent);
  border-radius: calc(var(--r-plate) - 6px);
}
.plate--arch{
  border-radius: 999px 999px var(--r-plate) var(--r-plate);
  aspect-ratio: 4 / 5;
}
.plate--arch::after{ border-radius: 999px 999px calc(var(--r-plate) - 6px) calc(var(--r-plate) - 6px); }
.tour .plate, .contact .plate{ border-color: var(--line-d); background: var(--ink-2); }

.plate__tag{
  position: absolute; z-index: 3; left: 14px; bottom: 14px;
  max-width: calc(100% - 28px); overflow: hidden; text-overflow: ellipsis;
  padding: .5em 1em; border-radius: 999px; white-space: nowrap;
  font-size: .68rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink);
  background: color-mix(in srgb, var(--ivory) 86%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid color-mix(in srgb, var(--charcoal) 14%, transparent);
}

/* ---------- Hero (full-bleed, cinematic) ---------- */
.hero{
  position: relative; isolation: isolate;
  min-height: 100svh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding-block: calc(var(--nav-h) + clamp(1.4rem, 3.5vh, 2.5rem)) clamp(4.5rem, 11vh, 6.5rem);
  padding-inline: max(var(--pad), calc((100% - var(--container)) / 2));
  color: var(--ivory);
}

/* full-bleed background image + layered overlays */
.hero__media{ position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__bg{
  width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%;
  display: block; will-change: transform;
}
.hero__overlay{
  position: absolute; inset: 0; pointer-events: none;
  background:
    /* left scrim so the headline reads over the image */
    linear-gradient(90deg, rgba(20,18,16,.74) 0%, rgba(20,18,16,.36) 40%, rgba(20,18,16,0) 66%),
    /* bottom + top scrims + gentle vignette for depth */
    linear-gradient(0deg,  rgba(20,18,16,.58) 0%, rgba(20,18,16,0) 48%),
    linear-gradient(180deg, rgba(20,18,16,.42) 0%, rgba(20,18,16,0) 22%),
    radial-gradient(135% 120% at 62% 42%, transparent 52%, rgba(20,18,16,.4) 100%),
    /* soft fade into the ivory section below — sits below the foot row */
    linear-gradient(180deg, transparent 84%, color-mix(in srgb, var(--ivory) 50%, transparent) 93%, var(--ivory) 100%);
}

/* content — anchored lower-left */
.hero__inner{ position: relative; max-width: min(100%, 46rem); }
.hero__eyebrow{ margin-bottom: clamp(.8rem, 1.8vh, 1.4rem); text-wrap: balance; }
@media (min-width: 900px){ .hero__eyebrow{ white-space: nowrap; } .hero__eyebrow-in{ letter-spacing: .14em; } }
.hero__eyebrow-mask{ display: inline-block; overflow: hidden; padding-block: .12em; }
.hero__eyebrow-in{
  display: inline-flex; align-items: center; gap: .6rem;
  text-transform: uppercase; font-size: var(--t--1); letter-spacing: .2em;
  color: color-mix(in srgb, var(--ivory) 82%, transparent);
  transform: translateY(130%);
}
.hero__eyebrow-in .hallmark{ color: color-mix(in srgb, var(--champagne) 90%, var(--ivory)); }
.hero__title{
  font-family: var(--font-display); font-weight: 400;
  font-variation-settings: 'SOFT' 0, 'WONK' 0;
  /* capped by viewport height too, so the headline + copy + scroll cue all fit within 100svh */
  font-size: clamp(2.25rem, min(5vw, 8vh), 5.4rem); line-height: .98; letter-spacing: -0.021em;
}
.hero__title .line{ display: block; overflow: hidden; padding-block: .05em; }
.hero__title .line__in{ display: block; transform: translateY(115%); }
.hero__title em{ font-style: italic; color: var(--champagne); }
.why__statement em{ white-space: nowrap; }
.hero__lede{ margin-top: clamp(1.1rem, 2.2vh, 1.7rem); display: flex; flex-direction: column; gap: clamp(1.1rem, 2.2vh, 1.5rem); }
.hero__lead{ max-width: 40ch; font-size: var(--t-1); line-height: 1.5; color: color-mix(in srgb, var(--ivory) 88%, transparent); }
.hero__actions{ display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem 1.7rem; }
.hero__rating{
  display: inline-flex; align-items: center; gap: .65rem; margin-top: .4rem;
  font-size: var(--t--1); letter-spacing: .12em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ivory) 70%, transparent); text-decoration: none;
  transition: color .35s var(--ease);
}
.hero__rating-stars{ color: var(--champagne); letter-spacing: .25em; font-size: .72rem; }
.hero__rating:hover{ color: var(--ivory); }
/* CTAs tuned for the dark image */
.hero__actions .btn--solid{ --bg: var(--ivory); --fg: var(--ink); --bd: var(--ivory); }
.hero__actions .btn--solid:hover{ --bg: transparent; --fg: var(--ivory); --bd: var(--ivory); }
.hero__actions .btn--ghost{ --fg: var(--ivory); }

/* foot — now-touring meta (left) + scroll cue (right) */
/* pinned to the bottom so the headline block can sit vertically centred */
.hero__foot{
  position: absolute;
  inset-inline: max(var(--pad), calc((100% - var(--container)) / 2));
  bottom: clamp(1.8rem, 4.5vh, 3rem);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem;
  text-transform: uppercase; letter-spacing: .14em; font-size: var(--t--1);
  color: color-mix(in srgb, var(--ivory) 70%, transparent);
}
.hero__credit{ display: inline-flex; align-items: center; gap: .6rem; }
.hero__credit .live-dot{ color: color-mix(in srgb, var(--ivory) 80%, transparent); }
.hero__scroll{ display: inline-flex; align-items: center; gap: .8rem; white-space: nowrap; color: color-mix(in srgb, var(--ivory) 78%, transparent); }
.hero__scroll-line{ width: 46px; height: 1px; display: inline-block; position: relative; overflow: hidden; background: color-mix(in srgb, var(--ivory) 28%, transparent); }
.hero__scroll-line::after{ content: ""; position: absolute; inset: 0; background: var(--ivory); animation: scrollLine 2.6s var(--ease) infinite; }
@keyframes scrollLine{ 0%{ transform: translateX(-100%); } 55%,100%{ transform: translateX(105%); } }
.hero__scroll:hover .hero__scroll-line{ background: color-mix(in srgb, var(--ivory) 55%, transparent); }

/* hero reveal — JS toggles body.hero-in */
.hero__media{ opacity: 0; transform: scale(1.08); }
.hero__lede, .hero__foot{ opacity: 0; transform: translateY(22px); }
body.hero-in .hero__media{ opacity: 1; transform: scale(1); transition: opacity 1.3s ease .1s, transform 1.9s var(--ease) .1s; }
body.hero-in .hero__eyebrow-in{ transform: none; transition: transform .9s var(--ease) .35s; }
body.hero-in .hero__title .line:nth-child(1) .line__in{ transform: none; transition: transform 1s var(--ease) .5s; }
body.hero-in .hero__title .line:nth-child(2) .line__in{ transform: none; transition: transform 1s var(--ease) .62s; }
body.hero-in .hero__title .line:nth-child(3) .line__in{ transform: none; transition: transform 1.15s var(--ease) .8s; }
body.hero-in .hero__lede{ opacity: 1; transform: none; transition: opacity .9s var(--ease) .98s, transform 1s var(--ease) .98s; }
body.hero-in .hero__foot{ opacity: 1; transform: none; transition: opacity .9s var(--ease) 1.18s, transform 1s var(--ease) 1.18s; }

/* ---------- Marquee ---------- */
.marquee{
  position: relative; padding-block: clamp(1.4rem, 3vw, 2.4rem);
  border-block: 1px solid var(--line);
  background: var(--paper-2);
}
.marquee__viewport{ overflow: hidden; }
.marquee__track{ display: flex; width: max-content; will-change: transform; }
.marquee__group{ display: flex; align-items: center; flex: none; }
.marquee__group span{
  font-family: var(--font-display); font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  padding-inline: clamp(.7rem, 1.6vw, 1.4rem); white-space: nowrap;
  color: var(--charcoal);
}
.marquee__group i{ color: var(--stone); font-style: normal; font-size: clamp(1rem, 2vw, 1.4rem); }

/* ---------- Why / manifesto ---------- */
.why__grid{
  display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.why__statement{
  font-size: var(--t-3); line-height: 1.08; max-width: 22ch;
}
.why__statement em{ font-style: italic; color: color-mix(in srgb, var(--charcoal) 62%, var(--stone)); }
.why__body{ max-width: 52ch; }
.why__body p{ font-size: var(--t-1); line-height: 1.55; }

/* the valuer's spread — arch plate with an overlapping specimen tray */
.why__media{
  position: relative;
  width: min(100%, 470px);
  margin-block: 1rem 1.5rem;
}
.why__plate-main{ width: 86%; margin-inline-start: auto; }
.why__plate-over{
  position: absolute; left: 0; bottom: -1.2rem;
  width: 54%; aspect-ratio: 4 / 3;
  transform: rotate(2.4deg);
  box-shadow: 0 22px 44px -22px color-mix(in srgb, var(--ink) 45%, transparent);
}
@media (min-width: 1081px){
  .why__grid{
    grid-template-columns: 1.1fr .9fr;
    grid-template-areas: "statement media" "body media";
  }
  .why__statement{ grid-area: statement; }
  .why__body{ grid-area: body; }
  .why__media{ grid-area: media; justify-self: end; align-self: center; margin-block: 0; }
}

.pillars{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  margin-top: clamp(3rem, 7vw, 6rem);
  background: var(--line-soft); border: 1px solid var(--line-soft);
}
.pillar{ background: var(--ivory); padding: clamp(1.8rem, 3vw, 2.6rem); }
.pillar__no{
  font-family: var(--font-display); font-size: 1.1rem; letter-spacing: .1em;
  color: var(--stone); display: block; margin-bottom: 1.4rem;
  text-transform: uppercase;
}
.pillar h3{ font-family: var(--font-display); font-weight: 400; font-size: var(--t-2); margin-bottom: .7rem; }
.pillar p{ color: color-mix(in srgb, var(--charcoal) 82%, transparent); max-width: 34ch; }

.values{
  display: flex; flex-wrap: wrap; gap: .8rem clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 2rem; border-top: 1px solid var(--line);
  font-family: var(--font-display); font-size: var(--t-1);
  color: color-mix(in srgb, var(--charcoal) 75%, transparent);
}

/* ---------- Catalogue / ledger ---------- */
.ledger{ list-style: none; border-top: 1px solid var(--line); }
.ledger__row{
  display: grid;
  grid-template-columns: 2.6rem 3.4rem 1fr auto; gap: .4rem 1.4rem;
  align-items: center;
  padding-block: clamp(1.3rem, 2.4vw, 2rem);
  border-bottom: 1px solid var(--line);
  transition: background .5s var(--ease), padding-inline .5s var(--ease);
}
.ledger__row:hover{ background: var(--paper-2); }
.ledger__lot{
  font-family: var(--font-display); font-size: var(--t-0);
  color: var(--stone); letter-spacing: .05em; align-self: start; padding-top: .35rem;
}
.ledger__icon{ color: var(--charcoal); }
.ledger__icon .i48{ width: 46px; height: 46px; transition: transform .6s var(--ease); }
.ledger__row:hover .i48{ transform: rotate(-6deg) scale(1.06); }
.ledger__name{
  grid-column: 3; font-family: var(--font-display); font-weight: 400;
  font-size: var(--t-2); line-height: 1.05;
}
.ledger__desc{
  grid-column: 3; font-size: var(--t-0);
  color: color-mix(in srgb, var(--charcoal) 72%, transparent); max-width: 60ch;
}
/* specimen chip — tilted at rest, straightens when the row is read */
.ledger__spec{
  grid-column: 4; grid-row: 1 / span 2; align-self: center;
  width: clamp(96px, 11vw, 150px); aspect-ratio: 3 / 2;
  overflow: hidden; border-radius: var(--r-chip);
  border: 1px solid var(--line);
  transform: rotate(-1.6deg);
  transition: transform .6s var(--ease);
}
.ledger__row:nth-child(even) .ledger__spec{ transform: rotate(1.6deg); }
.ledger__row:hover .ledger__spec{ transform: rotate(0deg) scale(1.05); }
.ledger__spec img{ width: 100%; height: 100%; object-fit: cover; filter: saturate(.93); }
.catalogue__foot{
  margin-top: clamp(2rem, 4vw, 3rem); font-family: var(--font-display);
  font-size: var(--t-2); font-style: italic; max-width: 24ch;
  color: color-mix(in srgb, var(--charcoal) 70%, transparent);
}
.catalogue__note{
  margin-top: 1rem; font-size: var(--t--1); max-width: 52ch;
  text-transform: uppercase; letter-spacing: .08em;
  color: color-mix(in srgb, var(--charcoal) 62%, transparent);
}

/* ---------- Tour (dark, signature) ---------- */
.tour{ background: var(--charcoal); color: var(--ivory); }
.tour .eyebrow{ color: color-mix(in srgb, var(--ivory) 72%, transparent); }
.tour .hallmark{ color: var(--stone); }
.tour__head{ margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.tour__plate{ width: min(100%, 390px); margin-top: 2.4rem; }
@media (min-width: 1081px){
  .tour__head{
    display: grid; grid-template-columns: 1fr auto;
    gap: clamp(2.5rem, 6vw, 6rem); align-items: end;
  }
  .tour__plate{ width: clamp(300px, 24vw, 390px); margin-top: 0; }
}
.tour .section__title{ color: var(--ivory); }
.tour .section__intro{ color: color-mix(in srgb, var(--ivory) 80%, transparent); }

.finder{ margin-top: 2rem; max-width: 30rem; }
.finder__label, .field label, .notify__text h3{ }
.finder__label{
  display: block; text-transform: uppercase; letter-spacing: .18em;
  font-size: var(--t--1); color: color-mix(in srgb, var(--ivory) 62%, transparent);
  margin-bottom: .7rem;
}
.finder__field{ display: flex; gap: .6rem; }
.finder input, .notify input{
  flex: 1 1 auto; min-width: 0;
  background: transparent; color: var(--ivory);
  border: 1px solid var(--line-d);
  border-radius: 999px; padding: .85em 1.3em;
  transition: border-color .4s var(--ease);
}
.finder input::placeholder, .notify input::placeholder{ color: color-mix(in srgb, var(--ivory) 45%, transparent); }
.finder input:focus, .notify input:focus{ outline: none; border-color: var(--ivory); }
.finder__result{ margin-top: 1rem; min-height: 1.4em; color: var(--stone); font-style: italic; }
.finder__result a{ color: var(--ivory); text-decoration: underline; text-underline-offset: 3px; }

.timetable{ list-style: none; border-top: 1px solid var(--line-d); }
.event{
  display: grid; align-items: baseline; gap: .3rem 1.5rem;
  grid-template-columns: 8.5rem 1fr auto auto auto auto;
  padding-block: clamp(1.1rem, 2vw, 1.7rem);
  border-bottom: 1px solid var(--line-d-soft);
  transition: background .5s var(--ease);
}
.event:hover{ background: var(--ink-2); }
.event__date{ font-family: var(--font-display); font-size: var(--t-1); color: var(--ivory); font-variant-numeric: tabular-nums; }
.event__date em{ font-style: normal; color: var(--stone); font-size: .82em; margin-right: .3em; }
.event__venue{ font-size: var(--t-1); color: var(--ivory); }
.event__town{ color: color-mix(in srgb, var(--ivory) 68%, transparent); font-size: var(--t-0); }
.event__time{
  color: color-mix(in srgb, var(--ivory) 55%, transparent); font-size: var(--t-0);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.event__rsvp{
  justify-self: end; text-transform: uppercase; letter-spacing: .14em; font-size: var(--t--1);
  padding: .35em 1.1em; border: 1px solid color-mix(in srgb, var(--ivory) 45%, transparent);
  border-radius: 999px; white-space: nowrap; text-decoration: none;
  color: color-mix(in srgb, var(--ivory) 88%, transparent);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.event__rsvp:hover{ background: var(--stone); border-color: var(--stone); color: var(--ink); }
.event__status{
  justify-self: end; text-transform: uppercase; letter-spacing: .14em; font-size: var(--t--1);
  color: color-mix(in srgb, var(--ivory) 62%, transparent);
  padding: .35em .9em; border: 1px solid var(--line-d-soft); border-radius: 999px; white-space: nowrap;
}
.event .status--now{
  color: var(--ink); background: var(--stone); border-color: var(--stone);
}
.event.is-hit{ background: var(--ink-2); box-shadow: inset 3px 0 0 var(--stone); }

.notify{
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid; gap: 1.4rem 3rem; align-items: center;
  grid-template-columns: 1fr;
  padding: clamp(1.6rem, 3vw, 2.4rem); border: 1px solid var(--line-d); border-radius: 4px;
}
.notify__text h3{ font-family: var(--font-display); font-weight: 400; font-size: var(--t-2); color: var(--ivory); margin-bottom: .3rem; }
.notify__text p{ color: color-mix(in srgb, var(--ivory) 76%, transparent); max-width: 40ch; }
.notify__field{ display: flex; gap: .6rem; }
.notify__result{ grid-column: 1 / -1; min-height: 1.2em; color: var(--stone); font-style: italic; margin-top: -.4rem; }
.tour__aside{ margin-top: clamp(2rem, 4vw, 3rem); color: color-mix(in srgb, var(--ivory) 72%, transparent); }
.tour__aside a{ color: var(--ivory); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Team ---------- */
.members{ display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.members--three{ grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.6rem); }
.member__plate img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.member__plate.has-photo::before{ display: none; }
.member__plate.has-photo::after{ border-color: color-mix(in srgb, var(--ivory) 45%, transparent); z-index: 1; }
.member__plate{
  position: relative; aspect-ratio: 3 / 4; border: 1px solid var(--line);
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--stone) 55%, var(--ivory)), var(--paper-2));
  display: grid; place-content: center; overflow: hidden; margin-bottom: 1.1rem;
}
.member__plate::after{
  content: ""; position: absolute; inset: 10px; border: 1px solid var(--line-soft);
}
.member__plate::before{
  content: ""; position: absolute; top: 26px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 24px; opacity: .42; z-index: 1;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='10' fill='none' stroke='%23474746' stroke-width='1.15'/%3E%3Cpath d='M16 10.9l1.3 3 3.25.27-2.47 2.13.77 3.18-2.85-1.7-2.85 1.7.77-3.18-2.47-2.13 3.25-.27z' fill='%23474746'/%3E%3C/svg%3E");
}
.member__mono{
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: color-mix(in srgb, var(--charcoal) 55%, var(--stone)); letter-spacing: .02em;
}
.member__name{ font-family: var(--font-display); font-weight: 400; font-size: var(--t-1); }
.member__role{ text-transform: uppercase; letter-spacing: .12em; font-size: var(--t--1); color: color-mix(in srgb, var(--charcoal) 62%, transparent); margin: .3rem 0 .6rem; }
.member__bio{ font-size: var(--t-0); color: color-mix(in srgb, var(--charcoal) 78%, transparent); }

/* ---------- Reviews ---------- */
.reviews__grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.review{ background: var(--ivory); padding: clamp(1.8rem, 3.5vw, 3rem); display: flex; flex-direction: column; gap: 1.1rem; }
.review__stars{ color: var(--charcoal); letter-spacing: .2em; font-size: .8rem; }
.review blockquote{ font-family: var(--font-display); font-weight: 400; font-size: var(--t-2); line-height: 1.28; }
.review figcaption{ margin-top: auto; text-transform: uppercase; letter-spacing: .1em; font-size: var(--t--1); color: color-mix(in srgb, var(--charcoal) 70%, transparent); }
.review figcaption span{ color: var(--stone); letter-spacing: .06em; }
.reviews__marquee{ position: relative; }
.reviews__marquee::before, .reviews__marquee::after{
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(2rem, 6vw, 6rem);
  z-index: 2; pointer-events: none;
}
.reviews__marquee::before{ left: 0; background: linear-gradient(90deg, var(--ivory), transparent); }
.reviews__marquee::after{ right: 0; background: linear-gradient(270deg, var(--ivory), transparent); }
.reviews__viewport{ overflow: hidden; }
.reviews__track{ display: flex; width: max-content; will-change: transform; }
.reviews__set{ display: flex; flex: none; align-items: stretch; gap: clamp(1rem, 2vw, 1.5rem); padding-right: clamp(1rem, 2vw, 1.5rem); }
.reviews__set .review{
  width: min(460px, 82vw); flex: none;
  border: 1px solid var(--line-soft);
}
.reviews__set .review blockquote{ font-size: var(--t-1); }
@media (prefers-reduced-motion: reduce){
  .reviews__viewport{ overflow-x: auto; }
}

/* ---------- How to ---------- */
.steps{ list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border-block: 1px solid var(--line-soft); }
.step{ background: var(--ivory); padding: clamp(1.8rem, 3vw, 2.6rem) clamp(1.5rem, 2.5vw, 2.2rem); }
.step__no{ font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4rem); color: var(--stone); display: block; line-height: 1; margin-bottom: 1.6rem; }
.step h3{ font-family: var(--font-display); font-weight: 400; font-size: var(--t-2); margin-bottom: .6rem; }
.step p{ color: color-mix(in srgb, var(--charcoal) 80%, transparent); max-width: 34ch; }
.howto__band{
  margin-top: clamp(2.5rem, 5vw, 4rem);
  aspect-ratio: 21 / 9;
}
.howto__band img{ object-position: 50% 45%; }
.housecall{
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid; grid-template-columns: 1.5fr auto; gap: 1.5rem 3rem; align-items: center;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border: 1px solid var(--line); background: var(--paper-2);
}
.housecall__title{
  font-family: var(--font-display); font-weight: 400; font-size: var(--t-3);
  line-height: 1.05; margin-bottom: .9rem; letter-spacing: -0.015em;
}
.housecall__title em{ font-style: italic; color: color-mix(in srgb, var(--charcoal) 72%, transparent); }
.housecall__text p{ max-width: 52ch; font-size: var(--t-0); line-height: 1.55; color: color-mix(in srgb, var(--charcoal) 88%, transparent); }
.housecall__actions{ display: flex; flex-wrap: wrap; gap: 1rem; }
@media (max-width: 900px){
  .housecall{ grid-template-columns: 1fr; }
}

/* ---------- Contact (dark) ---------- */
.contact{ background: var(--ink); color: var(--ivory); }
.contact .eyebrow{ color: color-mix(in srgb, var(--ivory) 70%, transparent); }
.contact .hallmark{ color: var(--stone); }
.contact__grid{ display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.contact__title{ font-size: var(--t-4); color: var(--ivory); margin: 1rem 0 1.5rem; }
.contact__sub{ font-size: var(--t-1); color: color-mix(in srgb, var(--ivory) 80%, transparent); max-width: 40ch; }
.contact__details{ list-style: none; margin-top: 2.2rem; display: grid; gap: 1px; background: var(--line-d-soft); border-block: 1px solid var(--line-d-soft); }
.contact__details li{ background: var(--ink); display: flex; align-items: baseline; gap: 1.5rem; padding-block: 1rem; }
.contact__details span{ text-transform: uppercase; letter-spacing: .16em; font-size: var(--t--1); color: color-mix(in srgb, var(--ivory) 58%, transparent); width: 6.5rem; flex: none; }
.contact__details a{ font-family: var(--font-display); font-size: var(--t-1); }
.contact__details a:hover{ color: var(--stone); }
.contact__media{ margin-top: clamp(2.5rem, 4vw, 3.5rem); }
.contact__plate{
  width: min(300px, 72%); aspect-ratio: 4 / 5;
  transform: rotate(-2deg);
}

.enquiry{
  display: grid; gap: 1.7rem 2.2rem; grid-template-columns: 1fr 1fr;
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  border: 1px solid var(--line-d); border-radius: 4px;
  background: var(--ink-2);
}
.enquiry .field--full, .enquiry .btn, .enquiry__result{ grid-column: 1 / -1; }
.field{ display: grid; gap: .5rem; }
.field label{ text-transform: uppercase; letter-spacing: .16em; font-size: var(--t--1); color: color-mix(in srgb, var(--ivory) 65%, transparent); }
.field input, .field textarea, .field select{
  background: transparent; color: var(--ivory);
  border: 0; border-bottom: 1px solid var(--line-d);
  padding: .55em 0; border-radius: 0; resize: vertical;
  font-size: var(--t-0); line-height: 1.4;
  transition: border-color .4s var(--ease);
}
.field select{ color-scheme: dark; cursor: pointer; }
.field input::placeholder, .field textarea::placeholder{ color: color-mix(in srgb, var(--ivory) 40%, transparent); }
.field input:focus, .field textarea:focus, .field select:focus{ outline: none; border-bottom-color: var(--ivory); }
.field__hint{ font-size: var(--t--1); color: color-mix(in srgb, var(--ivory) 48%, transparent); font-style: italic; }
.enquiry .btn{ margin-top: .6rem; }
.follow{
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: clamp(1.8rem, 4vw, 2.8rem);
  border-top: 1px solid var(--line-d-soft);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.2rem 2rem;
}
.follow__text h3{ font-family: var(--font-display); font-weight: 400; font-size: var(--t-2); color: var(--ivory); margin-bottom: .3rem; }
.follow__text p{ color: color-mix(in srgb, var(--ivory) 65%, transparent); }
.follow .btn--solid{ --bg: var(--ivory); --fg: var(--ink); --bd: var(--ivory); }
.follow .btn--solid:hover{ --bg: transparent; --fg: var(--ivory); --bd: var(--ivory); }
.enquiry__result{ min-height: 1.2em; color: var(--stone); font-style: italic; }

/* ---------- Footer ---------- */
.footer{
  background: var(--ink); color: var(--ivory);
  padding: clamp(3rem, 6vw, 5rem) max(var(--pad), calc((100% - var(--container)) / 2)) 2.5rem;
  border-top: 1px solid var(--line-d-soft);
}
.footer__mark{ overflow: hidden; padding-block: clamp(1rem, 3vw, 2.5rem); }
.footer__mark .wordmark--xl{ opacity: .96; }
.footer__cols{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem 2rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line-d-soft);
}
.footer__col h4{ text-transform: uppercase; letter-spacing: .18em; font-size: var(--t--1); font-weight: 400; color: var(--stone); margin-bottom: 1.1rem; }
.footer__col a, .footer__col p{ display: block; color: color-mix(in srgb, var(--ivory) 78%, transparent); padding-block: .28rem; font-size: var(--t-0); }
.footer__col a:hover{ color: var(--ivory); }
.footer__col .muted{ color: color-mix(in srgb, var(--ivory) 50%, transparent); margin-top: .5rem; }
.footer__base{
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.6rem; border-top: 1px solid var(--line-d-soft);
  font-size: var(--t--1); color: color-mix(in srgb, var(--ivory) 60%, transparent);
}
.footer__base a:hover{ color: var(--ivory); }

/* =================================================================
   Reveal / motion
   ================================================================= */
[data-reveal]{ opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].is-visible{ opacity: 1; transform: none; }
[data-delay="1"]{ transition-delay: .09s; }
[data-delay="2"]{ transition-delay: .18s; }
[data-delay="3"]{ transition-delay: .27s; }
[data-delay="4"]{ transition-delay: .36s; }

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 1080px){
  .members{ grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .members--three{ grid-template-columns: 1fr; max-width: 560px; }
  .contact__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 900px){
  :root{ --nav-h: 64px; }
  .nav__links, .nav__cta{ display: none; }
  .nav__toggle{ display: block; }
  .why__grid{ grid-template-columns: 1fr; }
  .pillars{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .reviews__grid{ grid-template-columns: 1fr; }
  /* full-bleed hero: bottom-weighted overlay so text reads over the image */
  .hero{ padding-block: calc(var(--nav-h) + clamp(2rem, 6vh, 3.5rem)) clamp(2.5rem, 9vh, 4.5rem); }
  .hero__bg{ object-position: 66% 44%; }
  .hero__overlay{ background:
    linear-gradient(0deg, rgba(20,18,16,.78) 0%, rgba(20,18,16,.2) 50%, rgba(20,18,16,0) 74%),
    linear-gradient(180deg, rgba(20,18,16,.44) 0%, rgba(20,18,16,0) 18%),
    linear-gradient(180deg, transparent 86%, var(--ivory) 100%); }
  .hero__inner{ max-width: 100%; }
  .event{ grid-template-columns: 6.5rem 1fr; gap: .2rem 1rem; }
  .event__town{ grid-column: 2; }
  .event__time{ grid-column: 2; }
  .event__status{ grid-column: 1 / -1; justify-self: start; margin-top: .5rem; }
  .event__rsvp{ grid-column: 1 / -1; justify-self: start; margin-top: .2rem; }
  .notify{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .ledger__row{ grid-template-columns: 2rem 1fr auto; }
  .ledger__icon{ display: none; }
  .ledger__name, .ledger__desc{ grid-column: 2; }
  .ledger__spec{ grid-column: 3; width: clamp(84px, 22vw, 120px); }
  .howto__band{ aspect-ratio: 4 / 3; }
  .howto__band img{ object-position: 42% 42%; }
  .contact__plate{ width: min(280px, 86%); }
  .plate__tag{ font-size: .56rem; padding: .45em .85em; left: 10px; bottom: 10px; max-width: calc(100% - 20px); }
  .members{ grid-template-columns: 1fr; }
  .member{ display: grid; grid-template-columns: 6.5rem 1fr; gap: 1.2rem; align-items: center; }
  .member__plate{ aspect-ratio: 3/4; margin-bottom: 0; }
  .footer__cols{ grid-template-columns: repeat(2, 1fr); }
  .hero__actions{ gap: 1rem; width: 100%; }
  .hero__actions .btn{ flex: 1 1 auto; justify-content: center; }
  .hero__eyebrow-in{ font-size: 11px; letter-spacing: .1em; gap: .5rem; }
  .hero__title{ font-size: clamp(2rem, 8.4vw, 2.25rem); }
  .hero__foot{ flex-direction: column; align-items: flex-start; gap: 1rem; }
  .enquiry{ grid-template-columns: 1fr; }
  .finder__field, .notify__field{ flex-direction: column; }
  .finder__field .btn, .notify__field .btn{ width: 100%; }
}

/* =================================================================
   Reduced motion
   ================================================================= */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal]{ opacity: 1; transform: none; }
  .intro{ display: none !important; }
  .nav{ opacity: 1 !important; transform: none !important; }
  .hero__eyebrow-in, .hero__title .line__in, .m-line{ transform: none !important; }
  .hero__media, .hero__lede, .hero__foot{ opacity: 1 !important; transform: none !important; }
  .marquee__track{ transform: none !important; }
}
