/* ==========================================================================
   B&N Removals — "Docket" design system
   --------------------------------------------------------------------------
   A move is a journey between two postcodes, run by people who write things
   down and turn up. The site is built like the firm's own movement docket:
   ruled, monospaced where the data is real, and unmistakably red.

   Hand-written to replace the Tailwind Play CDN, which is a development-only
   tool (it compiles CSS in the browser on every page load).

   Contents
     01  Tokens
     02  Reset & base
     03  Layout: wrap / band
     04  Typography components
     05  Buttons & links
     06  Icons
     07  Navigation
     08  Hero & route docket
     09  Borough ticker
     10  Figures (stats)
     11  Cards, services, media
     12  Steps (sequence)
     13  Tick lists
     14  Reviews
     15  Forms
     16  Legal / prose pages
     17  Footer
     18  Fixed chrome (sticky CTA, WhatsApp, cookies)
     19  Motion & reveals
   ========================================================================== */


/* 01  Tokens
   ========================================================================== */

:root {
  /* Colour — red is a surface here, not a garnish. No green, no yellow:
     ticks and stars are red or ink, which is what keeps this off-template. */
  --red:        #c8102e;
  --red-press:  #a80c26;
  --red-deep:   #7a0a1c;
  --red-tint:   #fbeff1;

  --ink:        #17120f;
  --ink-2:      #3d3430;
  --ink-3:      #6e625b;
  --ink-4:      #9a8f88;

  --paper:      #ffffff;
  --mist:       #f5f2ef;
  --rule:       #e4ddd7;
  --rule-soft:  #efe9e4;
  --rule-dark:  rgba(255, 255, 255, .18);

  /* Type */
  --font-sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Azeret Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --t-micro:   0.6875rem;
  --t-xs:      0.8125rem;
  --t-sm:      0.9375rem;
  --t-base:    1.0625rem;
  --t-lg:      clamp(1.0625rem, 0.35vw + 1rem, 1.25rem);
  --t-lede:    clamp(1.125rem, 0.6vw + 1rem, 1.4375rem);
  --t-h3:      clamp(1.3125rem, 0.9vw + 1.05rem, 1.75rem);
  --t-h2:      clamp(1.875rem, 3.2vw + 0.75rem, 3.25rem);
  --t-display: clamp(2.5rem, 7.4vw, 5.75rem);
  --t-figure:  clamp(1.75rem, 2.4vw + 1rem, 2.75rem);

  /* Space */
  --gap:       clamp(1.25rem, 2.5vw, 2rem);
  --band-y:    clamp(4rem, 8vw, 7.5rem);
  --wrap:      78rem;
  --pad-x:     clamp(1.25rem, 4vw, 3rem);

  /* Surface */
  --r:         3px;
  --r-lg:      5px;
  --shadow:    0 1px 2px rgba(23, 18, 15, .05), 0 12px 32px -12px rgba(23, 18, 15, .16);
  --shadow-lg: 0 2px 4px rgba(23, 18, 15, .06), 0 32px 64px -24px rgba(23, 18, 15, .28);

  --ease:      cubic-bezier(.22, .61, .36, 1);
  --dur:       .28s;
}


/* 02  Reset & base
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* The fixed navbar must not cover anchored headings. */
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--t-base);
  font-weight: 420;
  font-variation-settings: "wdth" 100;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* The drawer scrolls itself; the page behind it should not. */
body.is-locked { overflow: hidden; }

/* Layout utilities set display, which would otherwise beat the UA's
   [hidden] rule on routed sections and the quote form's two states. */
[hidden] { display: none !important; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-variation-settings: "wdth" 112;
  text-wrap: balance;
}

p  { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg, picture, video { display: block; max-width: 100%; }
img { height: auto; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  margin: 0;
}

button { background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 1px;
}

.band--ink :focus-visible,
.band--red :focus-visible,
.foot :focus-visible { outline-color: #fff; }

::selection { background: var(--red); color: #fff; }

.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: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1.25rem;
  font: 500 var(--t-xs)/1 var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s var(--ease);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Clears the fixed navbar. */
.page { flex: 1 0 auto; padding-top: 4.5rem; }
@media (min-width: 62rem) { .page { padding-top: 5rem; } }


/* 03  Layout: wrap / band
   ========================================================================== */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.wrap--narrow { max-width: 48rem; }
.wrap--mid    { max-width: 62rem; }

/* Every vertical rhythm decision lives on .band and nowhere else, so section
   spacing can never be fought over by two competing selectors. */
.band {
  padding-block: var(--band-y);
  position: relative;
}

.band--tight  { padding-block: clamp(2.5rem, 5vw, 4rem); }
.band--flush-top    { padding-top: 0; }
.band--flush-bottom { padding-bottom: 0; }

.band--mist { background: var(--mist); }

.band--ink {
  background: var(--ink);
  color: #fff;
}
.band--ink .eyebrow { color: #ff8a9b; }

.band--red {
  background: var(--red);
  color: #fff;
}
.band--red .eyebrow { color: rgba(255, 255, 255, .72); }

.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* Section masthead: eyebrow + heading + optional lede */
.masthead { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.masthead--center { margin-inline: auto; text-align: center; }
.masthead > * + * { margin-top: 1rem; }

.masthead-split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--gap);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.masthead-split .masthead { margin-bottom: 0; }

.grid-2 {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 62rem) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-2--wide-left  { grid-template-columns: 1.15fr .85fr; }
  .grid-2--wide-right { grid-template-columns: .85fr 1.15fr; }
}


/* 04  Typography components
   ========================================================================== */

/* Monospace is reserved for data that really is data — postcodes, boroughs,
   figures, field numbers. Prose never uses it. */
.eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.4;
}

.eyebrow--ink  { color: var(--ink-3); }
.eyebrow--rule {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.eyebrow--rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.band--ink .eyebrow--rule::after,
.band--red .eyebrow--rule::after { background: var(--rule-dark); }

.display {
  font-size: var(--t-display);
  font-variation-settings: "wdth" 118;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: .96;
}

.h2 { font-size: var(--t-h2); }
.h3 { font-size: var(--t-h3); letter-spacing: -0.02em; }
.h4 {
  font-size: var(--t-lg);
  font-weight: 700;
  letter-spacing: -0.012em;
  font-variation-settings: "wdth" 106;
  line-height: 1.25;
}

.lede {
  font-size: var(--t-lede);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 34em;
  text-wrap: pretty;
}
.band--ink .lede,
.band--red .lede { color: rgba(255, 255, 255, .8); }
.masthead--center .lede { margin-inline: auto; }

.copy {
  color: var(--ink-2);
  line-height: 1.68;
  max-width: 38em;
  text-wrap: pretty;
}
.band--ink .copy,
.band--red .copy { color: rgba(255, 255, 255, .78); }

/* Links inside running text stay running text — no mono, no uppercase. */
.copy a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.copy a:hover { color: var(--red-deep); }
.band--ink .copy a,
.band--red .copy a { color: #fff; }

/* A phone number in running text is a tap target on a phone, so it never
   breaks across lines, it gets the mono treatment every other real figure on
   the site gets, and it is underlined whatever it sits inside. */
.tel {
  font-family: var(--font-mono);
  font-size: .94em;
  font-weight: 500;
  letter-spacing: .02em;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mono {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: .04em;
}

.underline-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding-bottom: 2px;
  background-image: linear-gradient(var(--red), var(--red));
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size var(--dur) var(--ease), color var(--dur) var(--ease);
}
.underline-link:hover,
.underline-link:focus-visible {
  color: var(--red);
  background-size: 100% 1px;
}
.underline-link .ico { transition: transform var(--dur) var(--ease); }
.underline-link:hover .ico { transform: translateX(3px); }


/* 05  Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  padding: .9375rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--r);
  font-family: var(--font-sans);
  font-size: var(--t-sm);
  font-weight: 650;
  font-variation-settings: "wdth" 104;
  letter-spacing: .005em;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform .12s var(--ease);
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--red);
  color: #fff;
}
.btn--primary:hover { background: var(--red-press); }

.btn--ink {
  background: var(--ink);
  color: #fff;
}
.btn--ink:hover { background: var(--red); }

.btn--outline {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: #fff;
}

/* On a red plane */
.btn--paper {
  background: #fff;
  color: var(--red-deep);
}
.btn--paper:hover { background: var(--red-tint); }

.btn--onred {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}
.btn--onred:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

/* On an ink plane */
.btn--onink {
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}
.btn--onink:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .6);
}

.btn--lg { padding: 1.125rem 1.875rem; font-size: var(--t-base); }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.btn-row--center { justify-content: center; }

/* Once the row has to stack, ragged button widths look accidental. */
@media (max-width: 29.999rem) {
  .btn-row > .btn { flex: 1 1 100%; }
}


/* 06  Icons
   ========================================================================== */

.ico {
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ico--sm { width: 1rem;    height: 1rem; }
.ico--lg { width: 1.5rem;  height: 1.5rem; }
.ico--xl { width: 1.75rem; height: 1.75rem; }
.ico--fill { fill: currentColor; }

/* Square icon plate used on cards and contact rows */
.plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex: none;
  border-radius: var(--r);
  background: var(--red-tint);
  color: var(--red);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.plate--lg { width: 3.25rem; height: 3.25rem; }
.plate--red  { background: var(--red); color: #fff; }
.plate--ink  { background: var(--ink); color: #fff; }
.plate--onink { background: rgba(255, 255, 255, .08); color: #fff; }


/* 07  Navigation
   ========================================================================== */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.nav.is-stuck {
  border-bottom-color: var(--rule);
  box-shadow: 0 1px 24px -8px rgba(23, 18, 15, .18);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .125rem;
}
.nav__logo img { height: 2.25rem; width: auto; object-fit: contain; }
.nav__logo span {
  font-size: 1.375rem;
  font-weight: 800;
  font-variation-settings: "wdth" 108;
  letter-spacing: -0.04em;
  color: var(--red-deep);
}

.nav__links {
  display: none;
  align-items: center;
  gap: .25rem;
}

.nav__link {
  position: relative;
  padding: .5rem .75rem;
  font-size: var(--t-sm);
  font-weight: 550;
  color: var(--ink-2);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: .125rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--ink); }

.nav__aside {
  display: none;
  align-items: center;
  gap: 1rem;
}

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink);
}
.nav__phone:hover { color: var(--red); }
.nav__phone .ico { color: var(--red); }

.nav__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: -.5rem;
  color: var(--ink);
}
.nav__burger .ico { width: 1.625rem; height: 1.625rem; }
.nav__burger[aria-expanded="true"] .nav__burger-open,
.nav__burger[aria-expanded="false"] .nav__burger-close { display: none; }

.nav__drawer {
  display: none;
  border-top: 1px solid var(--rule);
  background: var(--paper);
  padding-block: 1rem 1.5rem;
  max-height: calc(100vh - 4.5rem);
  overflow-y: auto;
}
.nav__drawer.is-open { display: block; }

.nav__drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9375rem .25rem;
  font-size: 1.0625rem;
  font-weight: 600;
  border-bottom: 1px solid var(--rule-soft);
}
.nav__drawer-link.is-active { color: var(--red); }
.nav__drawer-link .ico { color: var(--ink-4); }

.nav__drawer-actions {
  display: grid;
  gap: .625rem;
  margin-top: 1.5rem;
}

@media (min-width: 62rem) {
  .nav__inner  { height: 5rem; }
  .nav__links  { display: flex; }
  .nav__aside  { display: flex; }
  .nav__burger { display: none; }
  .nav__drawer { display: none !important; }
}


/* 08  Hero & route docket
   ========================================================================== */

.hero {
  position: relative;
  background: var(--red);
  color: #fff;
  overflow: hidden;
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: 0;
}

/* The van photo is multiplied into the red plane rather than sat beside it,
   so the brand colour is the surface of the page, not a trim. */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
  filter: grayscale(1) contrast(1.12);
  mix-blend-mode: multiply;
  opacity: .5;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(102deg, var(--red) 8%, rgba(200, 16, 46, .82) 42%, rgba(122, 10, 28, .55) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(5rem, 9vw, 8rem);
  max-width: 46rem;
}

.hero__eyebrow { margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem); }

.hero__title {
  font-size: var(--t-display);
  font-variation-settings: "wdth" 118;
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: .94;
}
/* Headline strings in content/*.json wrap their emphasis in <span>. The class
   names inside are left over from Tailwind; honour the author's intent here so
   the admin keeps working without editing saved content. */
.hero__title em,
.hero__title span {
  font-style: normal;
  color: #ffd7dd;
}
.display span,
.h2 span { color: var(--red); }

.hero__lede {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  font-size: var(--t-lede);
  line-height: 1.5;
  color: rgba(255, 255, 255, .86);
  max-width: 30em;
}

.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}
.hero__assurances li {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero__assurances .ico { width: .875rem; height: .875rem; stroke-width: 2.5; }

/* --- The signature: a movement docket straddling the hero's bottom edge --- */

.docket-mount {
  position: relative;
  z-index: 2;
  margin-top: clamp(-5.5rem, -7vw, -4rem);
}

.docket {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.docket__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem 1rem;
  padding: .75rem clamp(1.25rem, 3vw, 2rem);
  background: var(--ink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.docket__ref { color: rgba(255, 255, 255, .55); }

.docket__body { padding: clamp(1.5rem, 3.5vw, 2.25rem) clamp(1.25rem, 3vw, 2rem); }

/* Route: two postcode legs joined by a line that draws on load. */
.route {
  display: grid;
  gap: 1.25rem;
  align-items: end;
}

.route__leg { min-width: 0; }

.route__label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: .5rem;
}

.route__input {
  width: 100%;
  padding: .875rem 1rem;
  background: var(--mist);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.route__input::placeholder {
  color: var(--ink-4);
  text-transform: uppercase;
}
.route__input:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, .14);
}

/* The connector. Horizontal from 48rem up, a short vertical stub below. */
.route__path {
  position: relative;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.route__track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 0;
  border-top: 1px dashed var(--ink-4);
  transform: scaleX(0);
  transform-origin: left center;
  animation: route-draw 1s var(--ease) .45s forwards;
}

.route__node {
  position: absolute;
  top: 50%;
  width: .5rem;
  height: .5rem;
  margin-top: -.25rem;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0;
  animation: route-node .3s var(--ease) .4s forwards;
}
.route__node--start { left: 0; }
.route__node--end {
  right: 0;
  width: .625rem;
  height: .625rem;
  margin-top: -.3125rem;
  background: var(--red);
  animation-delay: 1.35s;
}

.route__van {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -.75rem;
  padding: 0 .375rem;
  background: var(--paper);
  color: var(--red);
  opacity: 0;
  animation: route-van 1.1s var(--ease) .45s forwards;
}
.route__van .ico { width: 1.5rem; height: 1.5rem; }

.route__go { margin-top: .25rem; }

.docket__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule-soft);
}

.docket__note {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.docket__call {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: var(--t-sm);
}
.docket__call:hover { color: var(--red); }
.docket__call .ico { color: var(--red); }

@media (min-width: 48rem) {
  .route {
    grid-template-columns: 1fr 7rem 1fr;
    align-items: end;
  }
  .route__path { height: 3.25rem; margin-bottom: .125rem; }
}

@media (min-width: 62rem) {
  .hero__inner { padding-bottom: clamp(6rem, 10vw, 9rem); }
  .route { grid-template-columns: 1fr 9rem 1fr auto; }
  .route__go { margin: 0; }
  .route__go .btn { height: 3.375rem; }
}


/* 09  Borough ticker
   ========================================================================== */

/* "All 32 boroughs" is a claim until you list them. This does. */
.ticker {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  border-block: 1px solid var(--ink);
  padding-block: .875rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 70s linear infinite;
}

.ticker:hover .ticker__track { animation-play-state: paused; }

.ticker__group {
  display: flex;
  align-items: center;
  flex: none;
}

.ticker__item {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-right: 1.75rem;
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  white-space: nowrap;
}
.ticker__item::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--red);
}


/* 10  Figures (stats)
   ========================================================================== */

.figures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.figure {
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 2vw, 1.5rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.figure__icon { color: var(--red); margin-bottom: 1rem; }

.figure__value {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-figure);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

.figure__label {
  display: block;
  margin-top: .5rem;
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.band--ink .figures,
.band--ink .figure { border-color: var(--rule-dark); }
.band--ink .figure__value { color: #fff; }
.band--ink .figure__label { color: rgba(255, 255, 255, .6); }
.band--ink .figure__icon  { color: #ff8a9b; }

@media (min-width: 48rem) {
  .figures { grid-template-columns: repeat(4, 1fr); }
}


/* 11  Cards, services, media
   ========================================================================== */

.card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { border-color: var(--ink-4); box-shadow: var(--shadow); }
.card > * + * { margin-top: 1rem; }
.card__title { font-size: var(--t-lg); font-weight: 700; letter-spacing: -0.015em; }

/* A real figure (the Google rating) sitting inline in a heading still needs
   the heading's own size and weight - only the typeface should change,
   otherwise the number reads as a different, smaller piece of text. */
.card__title .mono { font-size: inherit; font-weight: inherit; letter-spacing: inherit; }

/* A whole card that is one link. The action sits on the baseline so a row of
   cards with titles of different lengths still lines up. */
.card--link { color: inherit; text-decoration: none; }
.card--link .underline-link { margin-top: auto; padding-top: 1rem; }
.card--link:hover .plate { background: var(--red); color: var(--paper); }

.band--ink .card {
  background: rgba(255, 255, 255, .04);
  border-color: var(--rule-dark);
}
.band--ink .card:hover { border-color: rgba(255, 255, 255, .4); box-shadow: none; }

.card-grid {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
}
.card-grid > * { border: 0; border-radius: 0; }
.card-grid > *:hover { box-shadow: none; }

.band--ink .card-grid { background: var(--rule-dark); border-color: var(--rule-dark); }

/* A three-up grid stays single-column at tablet: two columns would leave a
   ghost cell showing the grid's own hairline background. */
@media (min-width: 40rem) {
  .card-grid   { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: 1fr; }
  .card-grid--5 { grid-template-columns: 1fr; }
}
@media (min-width: 62rem) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .card-grid--5 { grid-template-columns: repeat(5, 1fr); }
}

/* Service tiles */
.svc-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}
/* Six service tiles plus the CTA tile fill the grid exactly when the CTA
   spans the last row's remaining width - two columns at both sizes below,
   since six 1-wide tiles leave a two-wide remainder at 2 or 4 columns. */
@media (min-width: 44rem) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc--cta { grid-column: span 2; }
}
@media (min-width: 68rem) {
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
}

.svc {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.svc:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.svc__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--red);
  overflow: hidden;
}
.svc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  mix-blend-mode: multiply;
  opacity: .62;
  transition: opacity .6s var(--ease), filter .6s var(--ease);
}
.svc:hover .svc__media img {
  filter: grayscale(0) contrast(1);
  mix-blend-mode: normal;
  opacity: 1;
}

.svc__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: .625rem;
  background: var(--paper);
  color: var(--red);
  border-top-right-radius: var(--r);
}

.svc__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.375rem, 2.5vw, 1.75rem);
  gap: .75rem;
}
.svc__title { font-size: var(--t-h3); }
.svc__body .copy { flex: 1; font-size: var(--t-sm); }

.svc__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: .5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule-soft);
}

/* Red conversion tile that sits inside the service grid */
.svc--cta {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  justify-content: center;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  gap: 1rem;
}
.svc--cta:hover { transform: translateY(-3px); border-color: var(--red); }
.svc--cta .copy { color: rgba(255, 255, 255, .82); }

/* Alternating editorial rows (services page) */
.row {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--rule);
}
.row:first-child { border-top: 0; padding-top: 0; }

.row__media {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--red);
  aspect-ratio: 4 / 3;
}
.row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  mix-blend-mode: multiply;
  opacity: .65;
  transition: opacity .7s var(--ease), filter .7s var(--ease), transform .7s var(--ease);
}
.row:hover .row__media img {
  filter: grayscale(0);
  mix-blend-mode: normal;
  opacity: 1;
  transform: scale(1.03);
}

.row__body > * + * { margin-top: 1.25rem; }
.row__index {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-4);
}

@media (min-width: 62rem) {
  .row { grid-template-columns: 1fr 1fr; }
  .row--flip .row__media { order: 2; }
}

/* Plain framed image */
.frame {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
}
/* <picture> is inline by default, which leaves a baseline gap below the image
   and stops height:100% resolving — the frame's own colour would show through. */
.frame picture,
.row__media picture,
.svc__media picture,
.hero__media picture { display: block; height: 100%; }

.frame img { width: 100%; height: 100%; object-fit: cover; }

.frame--duo { background: var(--red); }
.frame--duo img {
  filter: grayscale(1) contrast(1.1);
  mix-blend-mode: multiply;
  opacity: .6;
  transition: opacity .7s var(--ease), filter .7s var(--ease);
}
.frame--duo:hover img { filter: grayscale(0); mix-blend-mode: normal; opacity: 1; }

/* Small caption plate anchored to an image corner */
.frame__stat {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--paper);
  color: var(--ink);
  padding: .875rem 1.125rem;
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.frame__stat b {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.frame__stat span {
  display: block;
  margin-top: .375rem;
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Photo mosaic (about) */
.mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.mosaic .frame { aspect-ratio: 1 / 1; }
.mosaic .frame:nth-child(2) { margin-top: 2rem; }
.mosaic .frame:nth-child(3) { margin-top: -2rem; }


/* 12  Steps — numbered because this genuinely is a sequence
   ========================================================================== */

.steps {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border-block: 1px solid var(--rule);
}

.step {
  position: relative;
  background: var(--paper);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: .875rem;
  transition: background-color var(--dur) var(--ease);
}
.step:hover { background: var(--mist); }

.step__num {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--red);
}

.step__icon { color: var(--ink); }
.step__title { font-size: var(--t-h3); }

@media (min-width: 56rem) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}


/* 13  Tick lists
   ========================================================================== */

.ticks {
  display: grid;
  gap: .75rem;
}
.ticks li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: var(--t-sm);
  color: var(--ink-2);
}
.ticks .ico {
  width: 1.0625rem;
  height: 1.0625rem;
  margin-top: .25rem;
  color: var(--red);
  stroke-width: 2.25;
}
.band--ink .ticks li { color: rgba(255, 255, 255, .82); }
.band--ink .ticks .ico { color: #ff8a9b; }
.band--red .ticks li { color: rgba(255, 255, 255, .9); }
.band--red .ticks .ico { color: #fff; }

.ticks--2 { grid-template-columns: 1fr; }
@media (min-width: 40rem) { .ticks--2 { grid-template-columns: repeat(2, 1fr); } }

/* Marker list of places / features, mono */
.chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem 1.5rem;
}
.chips li {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.chips li::before {
  content: "";
  width: .375rem;
  height: .375rem;
  flex: none;
  background: var(--red);
}
@media (min-width: 48rem) { .chips--3 { grid-template-columns: repeat(3, 1fr); } }


/* 14  Reviews
   ========================================================================== */

.stars {
  display: inline-flex;
  gap: .1875rem;
  color: var(--red);
}
.stars .ico { width: .9375rem; height: .9375rem; fill: currentColor; stroke-width: 0; }
.stars--lg .ico { width: 1.25rem; height: 1.25rem; }
.band--ink .stars { color: #ff8a9b; }

.pullquote {
  font-size: clamp(1.5rem, 2.6vw + .75rem, 2.5rem);
  font-weight: 700;
  font-variation-settings: "wdth" 108;
  letter-spacing: -0.025em;
  line-height: 1.18;
  text-wrap: pretty;
}

.review {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.review:hover { border-color: var(--ink-4); box-shadow: var(--shadow); }

.review__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.review__source {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.review__text { flex: 1; color: var(--ink-2); line-height: 1.65; }

.review__by {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule-soft);
}

.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex: none;
  border-radius: var(--r);
  background: var(--ink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: var(--t-sm);
  font-weight: 500;
}
.avatar--red { background: var(--red); }
.avatar--lg { width: 3.25rem; height: 3.25rem; font-size: 1.125rem; }

.review__name { font-weight: 650; font-size: var(--t-sm); line-height: 1.3; }
.review__meta {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.reviews-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (min-width: 44rem) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68rem) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }


/* 15  Forms
   ========================================================================== */

.form { display: grid; gap: 1.25rem; }

.form-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 40rem) {
  .form-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .form-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.field { display: block; min-width: 0; }

.field__label {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: .5rem;
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field__num { color: var(--red); }

.input,
.textarea {
  width: 100%;
  padding: .875rem 1rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  font-size: var(--t-base);
  color: var(--ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.input::placeholder,
.textarea::placeholder { color: var(--ink-4); }

.input:focus,
.textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, .14);
}

.input--mono {
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.textarea { resize: vertical; min-height: 7.5rem; line-height: 1.55; }

.form__note {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
}

.form__error {
  padding: .875rem 1rem;
  border: 1px solid var(--red);
  border-left-width: 3px;
  border-radius: var(--r);
  background: var(--red-tint);
  color: var(--red-deep);
  font-size: var(--t-sm);
}
.form__error a { color: inherit; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.form-panel {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.form-panel__body { padding: clamp(1.5rem, 3.5vw, 2.5rem); }

.confirm { text-align: center; padding: clamp(2rem, 5vw, 3.5rem) 0; }
.confirm > * + * { margin-top: 1rem; }
.confirm .plate { margin-inline: auto; }

/* Contact rows beside the form */
.contact-list { display: grid; gap: .75rem; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.contact-row:hover { border-color: var(--red); background: var(--red-tint); }
.contact-row:hover .plate { background: var(--red); color: #fff; }
.contact-row__label {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.contact-row__value { font-size: var(--t-lg); font-weight: 650; letter-spacing: -0.01em; }


/* 16  Legal / prose pages
   ========================================================================== */

.prose { max-width: 44rem; }
.prose > * + * { margin-top: 1.25rem; }
.prose h3 {
  margin-top: 2.75rem;
  font-size: var(--t-h3);
}
.prose p { color: var(--ink-2); line-height: 1.7; }
.prose a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--red-deep); }

.callout {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--red);
  border-radius: var(--r);
  background: var(--mist);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}
.callout__title {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: var(--t-lg);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: .625rem;
}
.callout__title .ico { color: var(--red); }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.crumbs a:hover { color: var(--red); }
.crumbs span[aria-current] { color: var(--ink); }


/* 17  Footer
   ========================================================================== */

.foot {
  background: var(--ink);
  color: rgba(255, 255, 255, .68);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  /* Room for the mobile sticky CTA bar. */
  padding-bottom: calc(6rem + env(safe-area-inset-bottom));
}
@media (min-width: 48rem) { .foot { padding-bottom: 3rem; } }

.foot__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 44rem) { .foot__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68rem) { .foot__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }

.foot__logo img { height: 4.5rem; width: auto; object-fit: contain; }

.foot__title {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

.foot__list { display: grid; gap: .75rem; }
.foot__list a { font-size: var(--t-sm); }
.foot__list a:hover { color: #fff; }

.foot__social { display: flex; gap: .5rem; }
.foot__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--rule-dark);
  border-radius: var(--r);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.foot__social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.foot__social svg { width: 1.0625rem; height: 1.0625rem; fill: currentColor; }

.foot__contact { display: grid; gap: 1rem; }
.foot__contact-row {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.foot__contact-row .plate { width: 2.25rem; height: 2.25rem; }
.foot__contact-row b { color: #fff; font-weight: 600; font-size: var(--t-sm); }
.foot__contact-row:hover .plate { background: var(--red); color: #fff; }

.foot__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule-dark);
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .5);
}
.foot__bottom a:hover,
.foot__bottom button:hover { color: #fff; }
.foot__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.foot__legal button {
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  cursor: pointer;
}


/* 18  Fixed chrome
   ========================================================================== */

.fab {
  display: none;
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
  width: 3.375rem;
  height: 3.375rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 28px -6px rgba(0, 0, 0, .35);
  transition: transform var(--dur) var(--ease);
}
.fab:hover { transform: scale(1.06); }
.fab svg { width: 1.75rem; height: 1.75rem; fill: currentColor; }
@media (min-width: 48rem) { .fab { display: flex; } }

.sticky-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 55;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
  border-top: 1px solid var(--rule);
  box-shadow: 0 -6px 24px -12px rgba(23, 18, 15, .3);
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 48rem) { .sticky-cta { display: none; } }

.sticky-cta a,
.sticky-cta button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  padding: .75rem .5rem;
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.sticky-cta > * + * { border-left: 1px solid var(--rule); }
.sticky-cta .is-primary {
  background: var(--red);
  color: #fff;
  border-left-color: var(--red);
}

.cookie {
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  background: var(--ink);
  color: rgba(255, 255, 255, .8);
  border-top: 1px solid var(--rule-dark);
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
}
@media (min-width: 48rem) { .cookie { padding-bottom: 0; } }

.cookie[hidden] { display: none; }

.cookie__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.125rem;
}
.cookie__title {
  font-weight: 700;
  color: #fff;
  font-size: var(--t-sm);
  margin-bottom: .25rem;
}
.cookie__text { font-size: var(--t-sm); max-width: 46em; }
.cookie__text a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
/* Reject and Accept must be equally reachable, so the actions never wrap into
   a stack that buries one of them below the fold. */
.cookie__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie__actions .btn { flex: 1 1 auto; justify-content: center; }
.cookie .btn { padding: .625rem 1.125rem; font-size: var(--t-xs); }


/* 19  Motion & reveals
   ========================================================================== */

@keyframes route-draw {
  to { transform: scaleX(1); }
}

@keyframes route-node {
  to { opacity: 1; }
}

@keyframes route-van {
  0%   { opacity: 0; left: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0; left: calc(100% - 1.5rem); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* Page-load sequence in the hero */
.lift { animation: rise .7s var(--ease) both; }
.lift--1 { animation-delay: .05s; }
.lift--2 { animation-delay: .15s; }
.lift--3 { animation-delay: .25s; }
.lift--4 { animation-delay: .35s; }

/* Scroll reveals, driven by one IntersectionObserver in app.js.
   Only applied once JS confirms support, so no-JS visitors see everything. */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .ticker__track { animation: none; }
  .route__track  { transform: scaleX(1); }
  .route__node   { opacity: 1; }
  .route__van    { opacity: 1; left: calc(50% - .75rem); }
  .js .reveal    { opacity: 1; transform: none; }
}


/* Print
   ========================================================================== */

@media print {
  .nav, .foot, .sticky-cta, .fab, .cookie, .ticker, .hero__media { display: none !important; }
  body { color: #000; }
  .band { padding-block: 1rem; }
}
