/* ========================================================================== 
   Dentist on Waverley — The Waverley Line
   Neighbourhood wayfinding, civic colour and one continuous care route.
   ========================================================================== */

:root {
  --paper: #F4F1E8;
  --paper-bright: #FFFDF7;
  --ink: #121933;
  --ink-soft: #50566C;
  --blue: #1747D1;
  --blue-deep: #0D2C91;
  --coral: #F15C45;
  --coral-deep: #C93F2C;
  --yellow: #FFD84D;
  --sky: #DCE6FF;
  --white: #FFFFFF;
  --rule: rgba(18, 25, 51, .22);
  --rule-light: rgba(255, 255, 255, .32);
  --container: 74rem;
  --font-display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --fs-display: clamp(3.3rem, 8.2vw, 7.4rem);
  --fs-h1: clamp(2.8rem, 6.2vw, 5.8rem);
  --fs-h2: clamp(2.1rem, 4vw, 3.7rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.55rem);
  --fs-body: 1.0625rem;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --grid: linear-gradient(rgba(23, 71, 209, .08) 1px, transparent 1px),
          linear-gradient(90deg, rgba(23, 71, 209, .08) 1px, transparent 1px);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
a { color: inherit; }
ul[class], ol[class], .site-nav ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; }
h1, h2 {
  font-family: var(--font-display);
  font-weight: 750;
  letter-spacing: -.045em;
}
h1 { font-size: var(--fs-h1); line-height: .98; }
h2 { font-size: var(--fs-h2); line-height: 1.02; }
h3 { font-family: var(--font-display); font-size: var(--fs-h3); line-height: 1.2; }
p, li { max-width: 68ch; }
address { font-style: normal; }
::selection { background: var(--yellow); color: var(--ink); }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); }
.section--sky, .section--mist { background: var(--sky); }
.section--paper, .section--sand { background: var(--paper-bright); }
.section--blue { background: var(--blue); color: var(--white); }
.flow > * + * { margin-top: 1em; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.6rem; }
.mt-4 { margin-top: 2.4rem; }
.mt-5 { margin-top: 3.2rem; }
.ink-soft { color: var(--ink-soft); }
.lead, .page-hero__lead { font-size: clamp(1.15rem, 2vw, 1.35rem); line-height: 1.55; }
.voice { font-style: italic; }
.caption { color: var(--ink-soft); font-size: .95rem; }
.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; left: 1rem; top: -6rem; z-index: 300;
  padding: .8rem 1.2rem; background: var(--yellow); color: var(--ink);
  font-weight: 700; text-decoration: none; border: 2px solid var(--ink);
}
.skip-link:focus { top: 1rem; }

/* Type signals */
.route-label, .label, .eyebrow {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}
.route-label, .eyebrow { color: var(--blue); }
.line-kicker { display: flex; align-items: center; gap: .85rem; }
.line-kicker::before { content: ""; width: 2.7rem; height: 5px; background: var(--blue); }
.text-link, .link {
  display: inline-flex; align-items: center; gap: .4em;
  color: var(--blue); font-weight: 600; text-decoration-thickness: 2px;
  text-underline-offset: .24em;
}
.text-link { text-decoration: none; border-bottom: 2px solid currentColor; }
.text-link:hover, .link:hover { color: var(--coral-deep); }
.text-link--light { color: var(--white); }
p a:not([class]), li a:not([class]) { color: var(--blue); font-weight: 600; text-underline-offset: .2em; }

/* Controls */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .75em 1.25em;
  border: 2px solid var(--ink); border-radius: 0;
  font-family: var(--font-mono); font-size: .85rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease), background 220ms var(--ease);
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.btn:active { transform: translate(5px, 5px); box-shadow: none; }
.btn--yellow, .btn--milk { background: var(--yellow); color: var(--ink); }
.btn--blue, .btn--primary { background: var(--blue); color: var(--white); }
.btn--coral, .btn--emergency { background: var(--coral); color: var(--ink); }
.btn--outline, .btn--secondary { background: transparent; color: var(--ink); }

/* Status strip + navigation */
.service-strip { background: var(--ink); color: var(--white); }
.service-strip__in {
  width: min(100% - 2.5rem, var(--container)); margin-inline: auto;
  min-height: 32px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase;
}
.status-dot { display: inline-block; width: .55rem; height: .55rem; margin-right: .45rem; border-radius: 50%; background: var(--yellow); }
.site-header { position: relative; z-index: 60; background: var(--paper); border-bottom: 2px solid var(--ink); }
.site-header__in {
  width: min(100% - 2.5rem, var(--container)); margin-inline: auto;
  min-height: 92px; display: flex; align-items: center; gap: clamp(1rem, 2.3vw, 2.2rem);
}
.brand { display: block; flex: none; text-decoration: none; }
.official-logo {
  position: relative;
  width: clamp(10.5rem, 13vw, 11.5rem);
  aspect-ratio: 1.97;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
}
.official-logo img {
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: auto;
  max-width: none;
  transform: translateY(-50%);
  mix-blend-mode: multiply;
}
.official-logo:focus-visible { outline: 3px solid var(--blue); outline-offset: 5px; }
.site-nav { margin-inline: auto; }
.site-nav ul { display: flex; align-items: center; gap: clamp(.65rem, 1.5vw, 1.35rem); }
.site-nav a {
  position: relative; display: block; padding: .55rem .1rem;
  font-family: var(--font-mono); font-size: .75rem; font-weight: 600;
  text-decoration: none; text-transform: uppercase; white-space: nowrap;
}
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 4px; background: var(--blue); transition: right 220ms var(--ease); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.site-nav a[aria-current="page"] { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone { font-family: var(--font-mono); font-size: .82rem; font-weight: 600; text-decoration: none; white-space: nowrap; }
.header-phone span { color: var(--blue); }
.header-book { min-height: 44px; padding: .55em .9em; box-shadow: 4px 4px 0 var(--ink); }
.nav-toggle {
  display: none; align-items: center; gap: .6rem; min-height: 44px; padding: .6rem .8rem;
  background: var(--yellow); border: 2px solid var(--ink); font-family: var(--font-mono);
  font-size: .8rem; font-weight: 600; text-transform: uppercase; cursor: pointer;
}
.nav-toggle i, .nav-toggle i::before, .nav-toggle i::after { width: 18px; height: 2px; display: block; background: var(--ink); transition: transform 200ms var(--ease); }
.nav-toggle i { position: relative; }
.nav-toggle i::before, .nav-toggle i::after { content: ""; position: absolute; left: 0; }
.nav-toggle i::before { top: -6px; }
.nav-toggle i::after { top: 6px; }
.nav-toggle[aria-expanded="true"] i { background: transparent; }
.nav-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }

/* Homepage hero */
.hero-line { position: relative; overflow: hidden; min-height: 720px; border-bottom: 2px solid var(--ink); }
.hero-line::before {
  content: ""; position: absolute; inset: 0 0 0 50%; z-index: -1;
  background-color: var(--sky); background-image: var(--grid); background-size: 34px 34px;
}
.hero-line__grid {
  width: min(100% - 2.5rem, var(--container)); margin-inline: auto;
  display: grid; grid-template-columns: 1.05fr .95fr; min-height: 720px;
}
.hero-copy { align-self: center; padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem) 0; }
.hero-copy h1 { margin-top: 1.2rem; font-size: var(--fs-display); max-width: 8.5ch; }
.hero-copy h1 .signal { position: relative; display: inline-block; color: var(--blue); }
.hero-copy h1 .signal::after { content: ""; position: absolute; left: 0; right: 0; bottom: .05em; height: .11em; background: var(--yellow); z-index: -1; }
.hero-copy__lead { margin-top: 1.75rem; max-width: 52ch; font-size: 1.18rem; color: var(--ink-soft); }
.hero-actions, .hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-note, .hero__note { margin-top: 1.4rem; font-size: .96rem; color: var(--ink-soft); }
.route-board { position: relative; min-width: 0; padding: clamp(2rem, 5vw, 4.5rem); display: grid; align-items: center; }
.route-board__ticket {
  position: absolute; top: 3rem; right: 0; z-index: 4;
  background: var(--yellow); border: 2px solid var(--ink); padding: .65rem .9rem;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 600; text-transform: uppercase;
  transform: rotate(2deg);
}
.route-map { width: 100%; overflow: visible; }
.route-map .track { fill: none; stroke: var(--blue); stroke-width: 16; stroke-linecap: round; stroke-linejoin: round; }
.route-map .track-under { fill: none; stroke: var(--ink); stroke-width: 24; stroke-linecap: round; stroke-linejoin: round; }
.route-map .station-ring { fill: var(--paper-bright); stroke: var(--ink); stroke-width: 5; }
.route-map .station-core { fill: var(--yellow); }
.route-map .station-core--coral { fill: var(--coral); }
.route-map text { fill: var(--ink); font-family: var(--font-mono); font-size: 17px; font-weight: 600; letter-spacing: .04em; }
.route-photo {
  position: absolute; right: 7%; bottom: 4%; width: min(48%, 19rem); aspect-ratio: .88;
  overflow: hidden; border: 3px solid var(--ink); background: var(--paper-bright);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
  transform: rotate(-3deg); box-shadow: 12px 12px 0 var(--coral);
}
.route-photo img { width: 100%; height: 100%; object-fit: cover; }
.route-photo span { position: absolute; left: .75rem; bottom: .75rem; padding: .35rem .55rem; background: var(--paper-bright); border: 1px solid var(--ink); font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase; }

.proof-strip { background: var(--ink); color: var(--white); }
.proof-strip__in { width: min(100%, var(--container)); margin-inline: auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-stop { position: relative; padding: 1.8rem clamp(1.25rem, 4vw, 3.5rem); border-right: 1px solid var(--rule-light); }
.proof-stop:last-child { border-right: 0; }
.proof-stop::before { content: ""; position: absolute; left: 1rem; top: 50%; width: 10px; height: 10px; margin-top: -5px; border-radius: 50%; background: var(--yellow); }
.proof-stop strong { display: block; color: var(--yellow); font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.04em; }
.proof-stop p { margin-top: .35rem; font-size: .95rem; }

/* Homepage section vocabulary */
.section-heading { display: grid; grid-template-columns: 10rem minmax(0, 1fr); gap: clamp(1.5rem, 5vw, 5rem); align-items: start; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section-heading__no { color: var(--blue); font-family: var(--font-mono); font-size: .78rem; text-transform: uppercase; }
.section-heading h2 { max-width: 16ch; }
.section-heading p { margin-top: 1rem; color: var(--ink-soft); }
.service-map { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 2px solid var(--ink); }
.service-stop {
  position: relative; display: grid; grid-template-columns: 4.2rem minmax(0, 1fr) auto; gap: 1rem; align-items: center;
  min-height: 120px; padding: 1.4rem 1rem; border-bottom: 2px solid var(--ink); text-decoration: none;
  transition: color 220ms var(--ease), background 220ms var(--ease);
}
.service-stop:nth-child(odd) { border-right: 2px solid var(--ink); }
.service-stop::before { content: ""; position: absolute; left: 2.95rem; top: 0; bottom: 0; width: 6px; background: var(--blue); }
.service-stop__no {
  position: relative; z-index: 1; width: 3.9rem; height: 3.9rem; display: grid; place-items: center;
  border: 3px solid var(--ink); border-radius: 50%; background: var(--yellow);
  font-family: var(--font-mono); font-size: .8rem; font-weight: 600;
  transition: transform 280ms var(--ease), background 220ms var(--ease);
}
.service-stop h3 { font-size: 1.35rem; }
.service-stop p { margin-top: .3rem; color: var(--ink-soft); font-size: .94rem; }
.service-stop__arrow { font-size: 1.8rem; color: var(--blue); }
.service-stop:hover { background: var(--sky); color: var(--blue); }
.service-stop:hover .service-stop__no { transform: translateY(-8px); background: var(--coral); }
.service-stop--urgent .service-stop__no { background: var(--coral); }

.team-line { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 650px; }
.team-photo { position: relative; min-height: 650px; background: var(--blue); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; filter: contrast(1.05); }
.team-photo::after { content: ""; position: absolute; inset: 0; background: rgba(23, 71, 209, .35); mix-blend-mode: multiply; }
.team-photo__label { position: absolute; left: 2rem; bottom: 2rem; z-index: 2; padding: .6rem .8rem; background: var(--yellow); border: 2px solid var(--ink); font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; }
.team-copy { padding: clamp(4rem, 8vw, 7.5rem); background: var(--paper-bright); display: flex; flex-direction: column; justify-content: center; }
.team-copy h2 { margin-top: 1rem; }
.team-copy > p:not(.route-label) { margin-top: 1.5rem; color: var(--ink-soft); }
.team-names { margin-top: 2rem; border-top: 2px solid var(--ink); }
.team-name { display: grid; grid-template-columns: 3.2rem 1fr; gap: 1rem; padding: 1.2rem 0; border-bottom: 2px solid var(--ink); }
.team-name span { color: var(--blue); font-family: var(--font-mono); font-size: .8rem; }
.team-name strong { font-family: var(--font-display); font-size: 1.3rem; }

.quote-signal { padding-block: clamp(4.5rem, 9vw, 8rem); background: var(--coral); color: var(--ink); }
.quote-signal__in { width: min(100% - 2.5rem, 64rem); margin-inline: auto; display: grid; grid-template-columns: 7rem 1fr; gap: clamp(1.5rem, 5vw, 4rem); }
.quote-signal__mark { font-family: var(--font-display); font-size: 9rem; line-height: .65; color: var(--yellow); }
.quote-signal blockquote { max-width: 24ch; font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 650; letter-spacing: -.035em; line-height: 1.06; }
.quote-signal figcaption { margin-top: 1.5rem; font-family: var(--font-mono); font-size: .78rem; text-transform: uppercase; }

.location-line { background: var(--sky); background-image: var(--grid); background-size: 34px 34px; }
.location-line__grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.address-code { margin-top: 1.5rem; font-family: var(--font-display); font-size: clamp(3rem, 8vw, 7rem); font-weight: 800; letter-spacing: -.06em; color: var(--blue); line-height: .85; }
.address-copy { margin-top: 1.5rem; font-size: 1.2rem; }
.hours-board { border: 3px solid var(--ink); background: var(--paper-bright); box-shadow: 12px 12px 0 var(--blue); }
.hours-board__head { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem; background: var(--ink); color: var(--white); font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; }
.hours-board dl > div { display: grid; grid-template-columns: 1fr auto; padding: 1rem 1.25rem; border-bottom: 1px solid var(--rule); }
.hours-board dl > div:last-child { border-bottom: 0; }
.hours-board dd { font-family: var(--font-mono); }

.cta-final { position: relative; overflow: hidden; background: var(--blue); color: var(--white); padding-block: clamp(4.5rem, 9vw, 8rem); }
.cta-final::after { content: "861A"; position: absolute; right: -2vw; bottom: -5vw; color: rgba(255,255,255,.09); font-family: var(--font-display); font-size: clamp(9rem, 26vw, 24rem); font-weight: 800; letter-spacing: -.08em; line-height: .7; }
.cta-final__in { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.cta-final h2 { max-width: 12ch; }
.cta-final__phone { display: inline-block; margin-top: 1.25rem; font-family: var(--font-mono); font-size: clamp(1.6rem, 4vw, 3rem); font-weight: 600; text-decoration: none; border-bottom: 4px solid var(--yellow); }

/* Shared source-page treatment */
.breadcrumb { padding-block: 1.25rem; font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; }
.breadcrumb ol, .breadcrumb__list { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; padding: 0; }
.breadcrumb li + li::before { content: "→"; margin-right: .45rem; color: var(--blue); }
.breadcrumb a { color: var(--blue); text-underline-offset: .2em; }
.breadcrumb [aria-current="page"] { font-weight: 600; }
.page-hero, .hero:not(.hero-line) {
  position: relative; overflow: hidden; padding-block: clamp(4rem, 9vw, 8rem);
  background: var(--sky); background-image: var(--grid); background-size: 34px 34px;
  border-block: 2px solid var(--ink);
}
.page-hero::after {
  content: attr(data-route); position: absolute; right: -1rem; bottom: -4rem;
  color: rgba(23,71,209,.09); font-family: var(--font-display); font-size: 16rem; font-weight: 800;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__icon {
  width: 4.7rem; height: 4.7rem; display: grid; place-items: center; margin-bottom: 1.4rem;
  border: 3px solid var(--ink); border-radius: 50%; background: var(--yellow); color: var(--blue);
}
.page-hero__icon svg { width: 3rem; height: 3rem; }
.page-hero h1 { max-width: 12ch; }
.page-hero__lead { max-width: 56ch; margin-top: 1.4rem; color: var(--ink-soft); }
.emergency-hero { background-color: #FFD8D0; }
.emergency-phone { color: var(--coral-deep); font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 750; text-underline-offset: .15em; }
.keyline { height: 6px; background: var(--blue); }
.section-head { display: grid; grid-template-columns: 9rem minmax(0, 1fr); column-gap: clamp(1.5rem, 5vw, 5rem); margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-head > .label, .section-head > .eyebrow { grid-column: 1; grid-row: 1 / span 3; color: var(--blue); }
.section-head h2, .section-head p { grid-column: 2; }
.section-head p { margin-top: 1rem; color: var(--ink-soft); }
.section-head .voice { font-size: 1.15rem; }
.feature-split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.card, .consult-sheet, .paper-note {
  position: relative; padding: clamp(1.5rem, 3vw, 2.5rem); background: var(--paper-bright);
  border: 3px solid var(--ink); box-shadow: 10px 10px 0 var(--blue);
}
.card::before, .consult-sheet::before, .paper-note::before { content: "PATIENT INFO"; display: block; margin-bottom: 1rem; color: var(--blue); font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; }
.consult-layout { display: grid; grid-template-columns: minmax(18rem, .82fr) minmax(0, 1.25fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.consult-sheet { position: sticky; top: 1.5rem; }
.consult-sheet h2 { font-size: 1.65rem; letter-spacing: -.025em; }
.consult-sheet dl { margin-top: 1.2rem; }
.consult-sheet dt { margin-top: 1rem; color: var(--blue); font-family: var(--font-mono); font-size: .72rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.consult-sheet dd { margin: .3rem 0 0; color: var(--ink-soft); }
.consult-sheet__ctas, .paper-note__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.consult-plan .plan-step, .plan-step { position: relative; display: grid; grid-template-columns: 5rem 1fr; gap: 1rem; padding: 1.6rem 0; border-top: 2px solid var(--ink); }
.plan-step__num { color: var(--blue); font-family: var(--font-mono); font-size: .75rem; font-weight: 600; text-transform: uppercase; }
.plan-step p { margin-top: .45rem; color: var(--ink-soft); }
.plan { border-top: 2px solid var(--ink); }

.faq { border-top: 2px solid var(--ink); }
.faq__item { border-bottom: 2px solid var(--ink); }
.faq__q { width: 100%; min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1rem .6rem; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 600; cursor: pointer; }
.faq__q:hover, .faq__item.is-open .faq__q { background: var(--yellow); }
.faq__toggle, .faq__plus { position: relative; width: 1.3rem; height: 1.3rem; flex: none; }
.faq__toggle::before, .faq__toggle::after, .faq__plus path { transition: transform 220ms var(--ease); }
.faq__toggle::before, .faq__toggle::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: var(--blue); }
.faq__toggle::after { transform: rotate(90deg); }
.faq__item.is-open .faq__toggle::after { transform: rotate(0); }
.faq__item.is-open .faq__plus { transform: rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 280ms var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: .3rem .6rem 1.5rem; color: var(--ink-soft); }

.svc-rows { border-top: 2px solid var(--ink); }
.svc-row { display: grid; grid-template-columns: 3.4rem 3.6rem minmax(10rem, .75fr) 1.2fr auto; gap: 1rem; align-items: center; padding: 1.2rem .5rem; border-bottom: 2px solid var(--ink); text-decoration: none; }
.svc-row:hover { background: var(--sky); }
.svc-row__num { width: 3rem; height: 3rem; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; background: var(--yellow); font-family: var(--font-mono); font-size: .72rem; }
.svc-row__icon { color: var(--blue); }
.svc-row__name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.svc-row__desc { color: var(--ink-soft); }
.svc-row__go { color: var(--blue); font-family: var(--font-mono); font-size: .75rem; font-weight: 600; text-transform: uppercase; }
.chart-table { width: 100%; border-collapse: collapse; }
.chart-table th, .chart-table td { padding: 1rem; border-bottom: 2px solid var(--ink); text-align: left; vertical-align: top; }
.chart-table th { color: var(--blue); font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; }

.proof { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid var(--ink); }
.proof__item { padding: clamp(1.5rem, 4vw, 3rem); border-right: 2px solid var(--ink); }
.proof__item:last-child { border-right: 0; }
.proof__num { color: var(--blue); font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; line-height: 1; letter-spacing: -.05em; }
.proof__note { margin-top: .75rem; color: var(--ink-soft); }
.pull-quote { text-align: center; }
.pull-quote blockquote, .portrait__quote { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 650; letter-spacing: -.035em; line-height: 1.1; }
.pull-quote__stars { color: var(--coral); letter-spacing: .3em; }
.portrait__frame, .img-mask, .thumb { position: relative; overflow: hidden; border: 3px solid var(--ink); box-shadow: 10px 10px 0 var(--blue); }
.portrait__frame img, .img-mask img, .thumb img { width: 100%; height: 100%; object-fit: cover; }
.portrait__caption { margin-top: 1rem; font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; }

.honesty-band { padding-block: clamp(4rem, 8vw, 7rem); background: var(--coral); }
.honesty-band__in { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.honesty-band blockquote { max-width: 24ch; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 700; letter-spacing: -.04em; line-height: 1.05; }
.honesty-band__docs { display: flex; gap: 1rem; }
.honesty-band__doc .thumb { width: 5.5rem; aspect-ratio: 1; border-radius: 50%; box-shadow: 5px 5px 0 var(--ink); }
.cta-banner, .cta-band { position: relative; overflow: hidden; padding-block: clamp(4rem, 8vw, 7rem); background: var(--blue); color: var(--white); }
.cta-banner__in, .cta-band__in { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-banner__phone, .cta-band__phone { display: inline-block; margin-top: .6rem; color: var(--white); font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
.cta-banner__sub, .cta-band__hours { margin-top: .5rem; }
.arch-contours { position: absolute; right: -6%; top: -45%; width: 55%; opacity: .15; }
.living-arch { color: var(--blue); }

/* Emergency pathway + footer */
.station { width: 46px; height: 46px; display: grid; place-items: center; border: 3px solid var(--ink); border-radius: 50%; background: var(--yellow); color: var(--ink); font-family: var(--font-mono); font-size: .7rem; font-weight: 600; }
.station--urgent { background: var(--coral); font-size: 1.4rem; }
.emergency-line { background: var(--ink); color: var(--white); border-top: 6px solid var(--coral); }
.emergency-line__in { min-height: 150px; display: grid; grid-template-columns: auto 1fr auto auto; gap: clamp(1rem, 4vw, 3rem); align-items: center; }
.emergency-line .route-label { color: var(--coral); }
.emergency-line h2 { margin-top: .25rem; font-size: clamp(1.6rem, 3vw, 2.5rem); }
.emergency-line__phone { color: var(--yellow); font-family: var(--font-mono); font-size: clamp(1.1rem, 2.3vw, 1.6rem); font-weight: 600; text-decoration: none; white-space: nowrap; }
.site-footer { background: var(--paper-bright); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer-route { position: relative; display: flex; justify-content: space-between; align-items: center; margin-bottom: 3.5rem; }
.footer-route__line { position: absolute; left: 1.5rem; right: 1.5rem; height: 6px; background: var(--blue); }
.footer-route .station { position: relative; z-index: 1; }
.footer-route .station--end { width: 64px; height: 64px; background: var(--coral); }
.footer-grid { display: grid; grid-template-columns: .9fr 1.5fr .8fr; gap: clamp(2.5rem, 7vw, 7rem); padding-bottom: 3.5rem; }
.brand--footer { margin-bottom: 1.5rem; }
.official-logo--footer { width: min(100%, 14rem); background: var(--paper-bright); }
.footer-brand address { margin-bottom: 1rem; }
.footer-grid h3 { margin-bottom: 1rem; color: var(--blue); font-family: var(--font-mono); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: .5rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--blue); text-decoration: underline; text-underline-offset: .2em; }
.footer-links--services { grid-template-columns: repeat(2, 1fr); }
.footer-links--services span { color: var(--blue); font-family: var(--font-mono); font-size: .7rem; }
.footer-hours { display: grid; }
.footer-hours > div { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; border-bottom: 1px solid var(--rule); }
.footer-hours dd { font-family: var(--font-mono); font-size: .8rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-block: 1.25rem; border-top: 2px solid var(--ink); font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; }
.mobile-route-bar { display: none; }

/* Motion */
.js .reveal, .js .reveal-stagger > *, .js .route-reveal { opacity: 0; transform: translateY(8px); }
.js .reveal.is-in, .js .reveal-stagger.is-in > *, .js .route-reveal.is-in { opacity: 1; transform: none; transition: opacity 500ms var(--ease), transform 500ms var(--ease); }
.js .reveal-stagger.is-in > :nth-child(2) { transition-delay: 70ms; }
.js .reveal-stagger.is-in > :nth-child(3) { transition-delay: 140ms; }
.js .reveal-stagger.is-in > :nth-child(4) { transition-delay: 210ms; }
.js .route-map .track { stroke-dasharray: 1400; stroke-dashoffset: 0; }
.js.line-loading .route-map .track { stroke-dashoffset: 1400; }
.js.line-loading.line-ready .route-map .track { stroke-dashoffset: 0; transition: stroke-dashoffset 1400ms var(--ease); }

/* Responsive */
@media (max-width: 1120px) {
  .header-phone { display: none; }
  .site-nav ul { gap: .7rem; }
}
@media (max-width: 900px) {
  body { padding-bottom: 74px; }
  .service-strip__hours { display: none; }
  .site-header__in { min-height: 78px; }
  .header-actions { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 3px solid var(--ink); padding: .8rem 1.25rem 1.5rem;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { display: grid; gap: 0; }
  .site-nav a { padding: .95rem .25rem; border-bottom: 1px solid var(--rule); font-size: .9rem; }
  .hero-line, .hero-line__grid { min-height: 0; }
  .hero-line::before { inset: 52% 0 0; }
  .hero-line__grid { grid-template-columns: 1fr; width: 100%; }
  .hero-copy { padding: clamp(3.5rem, 8vw, 6rem) 1.25rem; }
  .route-board { min-height: 620px; padding: 2rem 1.25rem 5rem; }
  .route-map { max-height: 570px; }
  .route-photo { right: 7%; bottom: 7%; width: min(42%, 18rem); }
  .section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .service-map { grid-template-columns: 1fr; }
  .service-stop:nth-child(odd) { border-right: 0; }
  .team-line { grid-template-columns: 1fr; }
  .team-photo { min-height: 500px; }
  .location-line__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .mobile-route-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; height: 74px;
    display: grid; grid-template-columns: 1fr 1fr; background: var(--paper); border-top: 3px solid var(--ink);
  }
  .mobile-route-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; }
  .mobile-route-bar strong { font-family: var(--font-mono); font-size: .92rem; }
  .mobile-route-bar__book { background: var(--yellow); border-left: 3px solid var(--ink); font-family: var(--font-mono); font-size: .82rem; font-weight: 600; text-transform: uppercase; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 2rem, var(--container)); }
  .proof-strip__in { grid-template-columns: 1fr; }
  .proof-stop { border-right: 0; border-bottom: 1px solid var(--rule-light); padding-left: 2.6rem; }
  .proof-stop:last-child { border-bottom: 0; }
  .section-head { grid-template-columns: 1fr; gap: 1rem; }
  .section-head > .label, .section-head > .eyebrow { grid-column: 1; grid-row: auto; }
  .section-head h2, .section-head p { grid-column: 1; }
  .consult-layout { grid-template-columns: 1fr; }
  .consult-sheet { position: static; }
  .feature-split { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 3rem 3rem 1fr auto; }
  .svc-row__desc { display: none; }
  .proof { grid-template-columns: 1fr; }
  .proof__item { border-right: 0; border-bottom: 2px solid var(--ink); }
  .proof__item:last-child { border-bottom: 0; }
  .honesty-band__in, .cta-banner__in, .cta-band__in, .cta-final__in { flex-direction: column; align-items: flex-start; }
  .quote-signal__in { grid-template-columns: 1fr; }
  .quote-signal__mark { font-size: 6rem; }
  .emergency-line__in { grid-template-columns: auto 1fr; padding-block: 2rem; }
  .emergency-line__phone, .emergency-line .text-link { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-links--services { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .chart-table { display: block; overflow-x: auto; }
}
@media (max-width: 520px) {
  .service-strip__in, .site-header__in { width: min(100% - 1.5rem, var(--container)); }
  .official-logo { width: clamp(8.35rem, 40vw, 9.5rem); }
  .official-logo--footer { width: min(100%, 13rem); }
  .hero-copy h1 { font-size: clamp(3.2rem, 17vw, 5.2rem); }
  .route-board { min-height: 520px; }
  .route-board__ticket { top: 1rem; right: 1rem; }
  .route-photo { width: 46%; bottom: 8%; }
  .service-stop { grid-template-columns: 3.6rem 1fr auto; min-height: 108px; padding-inline: .4rem; }
  .service-stop::before { left: 2.7rem; }
  .service-stop__no { width: 3.4rem; height: 3.4rem; }
  .service-stop p { display: none; }
  .team-photo { min-height: 390px; }
  .team-copy { padding: 3.5rem 1.25rem; }
  .page-hero__icon { width: 4rem; height: 4rem; }
  .page-hero__icon svg { width: 2.5rem; height: 2.5rem; }
  .consult-plan .plan-step, .plan-step { grid-template-columns: 1fr; }
  .breadcrumb { font-size: .67rem; letter-spacing: 0; }
  .mobile-route-bar { grid-template-columns: 52% 48%; }
  .mobile-route-bar strong { font-size: .82rem; }
}

/* Phone composition — the care line becomes a deliberate one-handed journey. */
@media (max-width: 900px) {
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .site-header { position: sticky; top: 0; z-index: 80; }
  .site-nav {
    max-height: calc(100svh - 110px - 74px - env(safe-area-inset-bottom));
    overflow-y: auto;
    padding: .55rem 1rem 1rem;
    box-shadow: 0 16px 0 rgba(18, 25, 51, .12);
  }
  .site-nav ul { counter-reset: mobile-route; }
  .site-nav li {
    counter-increment: mobile-route;
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr);
    align-items: center;
    border-bottom: 1px solid var(--rule);
  }
  .site-nav li::before {
    content: counter(mobile-route, decimal-leading-zero);
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    font-family: var(--font-mono);
    font-size: .65rem;
    font-weight: 600;
  }
  .site-nav li:nth-child(3)::before { background: var(--coral); }
  .site-nav a {
    min-height: 54px;
    display: flex;
    align-items: center;
    border-bottom: 0;
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: -.015em;
    text-transform: none;
  }
  .site-nav a::after { bottom: 7px; }
  .hero-line::before { display: none; }
  .hero-copy { padding-block: clamp(3rem, 8vw, 4.5rem) clamp(2.6rem, 7vw, 3.5rem); }
  .hero-copy__lead { margin-top: 1.35rem; }
  .hero-actions, .hero__ctas { margin-top: 1.6rem; }
  .hero-note, .hero__note { margin-top: 1.15rem; }
  .route-board {
    min-height: 540px;
    border-top: 2px solid var(--ink);
    background-color: var(--sky);
    background-image: var(--grid);
    background-size: 30px 30px;
  }
  .proof-strip__in { border-inline: 2px solid var(--ink); }
  .team-photo { aspect-ratio: 4 / 3; min-height: 0; }
  .team-photo img { object-position: center 28%; }
  .mobile-route-bar {
    height: calc(74px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-route-bar a { min-height: 74px; }
}

@media (max-width: 520px) {
  :root {
    --fs-body: 1rem;
    --fs-h2: clamp(2rem, 10.5vw, 2.75rem);
  }
  .container { width: min(100% - 2rem, var(--container)); }
  .section { padding-block: clamp(3.75rem, 15vw, 4.75rem); }
  .service-strip__in { min-height: 30px; font-size: .66rem; }
  .site-header__in { min-height: 72px; }
  .nav-toggle { min-width: 88px; justify-content: center; }
  .site-nav { max-height: calc(100svh - 102px - 74px - env(safe-area-inset-bottom)); }

  .hero-copy { padding: 2.8rem 1rem 2.35rem; }
  .line-kicker { gap: .65rem; font-size: .7rem; }
  .line-kicker::before { width: 2.5rem; height: 4px; }
  .hero-copy h1 {
    margin-top: 1rem;
    max-width: 9ch;
    font-size: clamp(3.15rem, 16.5vw, 4.4rem);
    line-height: .94;
  }
  .hero-copy__lead { margin-top: 1.25rem; font-size: 1.04rem; line-height: 1.55; }
  .hero-actions, .hero__ctas { display: grid; grid-template-columns: 1fr; gap: .75rem; }
  .hero-actions .btn, .hero__ctas .btn { width: 100%; min-height: 52px; }
  .hero-line .hero-actions a[href^="tel:"] { display: none; }
  .hero-note, .hero__note { font-size: .9rem; line-height: 1.5; }
  .route-board { min-height: 450px; padding: 1rem .75rem 2.5rem; }
  .route-board__ticket { top: .85rem; right: .85rem; padding: .5rem .65rem; font-size: .61rem; }
  .route-map { max-height: 440px; }
  .route-photo { right: 8%; bottom: 7%; width: 48%; box-shadow: 8px 8px 0 var(--coral); }
  .route-photo span { left: .45rem; bottom: .45rem; font-size: .55rem; }

  .proof-strip__in { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-stop { min-height: 132px; padding: 1.15rem 1rem 1.15rem 2rem; border-right: 1px solid var(--rule-light); }
  .proof-stop:first-child { grid-column: 1 / -1; min-height: 112px; }
  .proof-stop:nth-child(2) { border-bottom: 0; }
  .proof-stop strong { font-size: 2.45rem; }
  .proof-stop p { font-size: .84rem; line-height: 1.4; }
  .proof-stop::before { left: .75rem; top: 1.6rem; }

  .section-heading { margin-bottom: 2rem; }
  .section-heading__no, .section-head > .label, .section-head > .eyebrow {
    width: fit-content;
    padding: .3rem .5rem;
    background: var(--yellow);
    border: 1px solid var(--ink);
    color: var(--ink);
  }
  .section-heading p, .section-head p { margin-top: .75rem; }
  .service-stop { grid-template-columns: 3.25rem minmax(0, 1fr) 1.5rem; min-height: 96px; padding: .8rem .2rem; gap: .75rem; }
  .service-stop::before { left: 1.48rem; width: 4px; }
  .service-stop__no { width: 3.05rem; height: 3.05rem; font-size: .72rem; }
  .service-stop h3 { font-size: 1.18rem; line-height: 1.1; }
  .service-stop__arrow { font-size: 1.45rem; }
  .service-stop--urgent { min-height: 112px; }
  .service-stop--urgent p { display: block; font-size: .78rem; line-height: 1.35; }

  .team-photo { aspect-ratio: 1 / .88; }
  .team-photo__label { left: 1rem; right: 1rem; bottom: 1rem; padding: .5rem .65rem; text-align: center; }
  .team-copy { padding: 3.5rem 1rem; }
  .team-name { grid-template-columns: 2.65rem minmax(0, 1fr); gap: .75rem; }
  .team-name strong { font-size: 1.18rem; }
  .team-name p { font-size: .9rem; line-height: 1.45; }

  .quote-signal { padding-block: 4rem; }
  .quote-signal__in { position: relative; width: min(100% - 2rem, 64rem); padding-top: 1.25rem; }
  .quote-signal__mark { position: absolute; top: -.5rem; right: 0; font-size: 7rem; opacity: .5; }
  .quote-signal blockquote { position: relative; font-size: clamp(2rem, 10vw, 2.65rem); }

  .hours-board { box-shadow: 7px 7px 0 var(--blue); }
  .hours-board__head { font-size: .67rem; }
  .hours-board dl > div { grid-template-columns: 1fr; gap: .15rem; padding: .85rem 1rem; }
  .hours-board dd { color: var(--blue); font-size: .78rem; }
  .cta-final::after { right: -1rem; bottom: 0; }
  .cta-final__phone { font-size: 1.45rem; }
  .cta-final .btn, .cta-banner .btn, .cta-band .btn { width: 100%; }

  .breadcrumb { padding-block: .9rem; line-height: 1.5; }
  .page-hero, .hero:not(.hero-line) { padding-block: 2.8rem 3.25rem; }
  .page-hero__icon { width: 3.75rem; height: 3.75rem; margin-bottom: 1.15rem; }
  .page-hero__icon svg { width: 2.35rem; height: 2.35rem; }
  .page-hero h1 { margin-top: .8rem; font-size: clamp(2.75rem, 13vw, 3.5rem); line-height: .95; }
  .page-hero__lead { margin-top: 1rem; font-size: 1.05rem; line-height: 1.5; }
  .section-head { gap: .8rem; margin-bottom: 2.25rem; }
  .section-head h2 { font-size: clamp(2rem, 10vw, 2.55rem); }
  .section-head .voice { font-size: 1.04rem; }
  .card, .consult-sheet, .paper-note { padding: 1.25rem; box-shadow: 6px 6px 0 var(--blue); }
  .consult-sheet__ctas, .paper-note__ctas { display: grid; grid-template-columns: 1fr; }
  .consult-sheet__ctas .btn, .paper-note__ctas .btn { width: 100%; }
  .consult-plan .plan-step, .plan-step {
    grid-template-columns: 1fr;
    gap: .45rem;
    margin-left: .45rem;
    padding: 1.4rem .25rem 1.4rem 1.35rem;
    border-top: 0;
    border-left: 4px solid var(--blue);
  }
  .consult-plan .plan-step::before, .plan-step::before {
    content: "";
    position: absolute;
    left: -.62rem;
    top: 1.55rem;
    width: .85rem;
    height: .85rem;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
  }
  .plan-step__num { color: var(--blue); }
  .faq__q { min-height: 62px; padding: 1rem .35rem; font-size: .98rem; line-height: 1.35; }
  .faq__a p { padding-inline: .35rem; }
  .svc-row { grid-template-columns: 2.8rem minmax(0, 1fr) 1.5rem; gap: .75rem; min-height: 78px; padding: .8rem .15rem; }
  .svc-row__icon, .svc-row__desc { display: none; }
  .svc-row__num { width: 2.65rem; height: 2.65rem; }
  .svc-row__name { font-size: 1.12rem; line-height: 1.15; }
  .svc-row__go { font-size: 0; }
  .svc-row__go::after { content: "→"; font-size: 1.25rem; }
  .honesty-band { padding-block: 3.75rem; }
  .honesty-band__docs { width: 100%; justify-content: flex-start; }
  .honesty-band__doc .thumb { width: 4.75rem; }

  .emergency-line__in { padding-block: 1.75rem; }
  .emergency-line h2 { font-size: 1.65rem; }
  .emergency-line__phone { font-size: 1rem; }
  .site-footer { padding-top: 3.5rem; }
  .footer-route { margin-bottom: 2.5rem; }
  .footer-grid { gap: 2.75rem; padding-bottom: 2.75rem; }
  .footer-links a { display: block; min-height: 40px; padding-block: .35rem; }
  .footer-bottom { gap: .65rem; }
}

@media (max-width: 360px) {
  .brand__name { font-size: .86rem; }
  .nav-toggle { min-width: 80px; padding-inline: .6rem; }
  .hero-copy h1 { font-size: clamp(3rem, 16.8vw, 3.8rem); }
  .proof-stop { padding-right: .7rem; }
  .proof-stop strong { font-size: 2.2rem; }
  .service-stop { grid-template-columns: 3rem minmax(0, 1fr) 1.25rem; gap: .55rem; }
  .service-stop::before { left: 1.35rem; }
  .service-stop__no { width: 2.8rem; height: 2.8rem; }
  .mobile-route-bar strong { font-size: .76rem; }
  .mobile-route-bar__book { font-size: .76rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0ms !important; }
  .js .reveal, .js .reveal-stagger > *, .js .route-reveal { opacity: 1; transform: none; }
  .js .route-map .track { stroke-dashoffset: 0; }
}

@media print {
  body { background: #fff; color: #000; padding: 0; }
  body::after, .service-strip, .site-nav, .nav-toggle, .header-actions, .mobile-route-bar, .emergency-line { display: none !important; }
  .site-header { border-bottom: 1px solid #000; }
  .section--sky, .section--mist, .page-hero, .hero:not(.hero-line) { background: #fff; }
  .js .reveal, .js .reveal-stagger > *, .js .route-reveal { opacity: 1 !important; transform: none !important; }
}
