/* ==========================================================================
   Woolpit Truck Repairs - design system
   Display: Archivo (variable, width axis) · Body: Inter (variable)
   ========================================================================== */

@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-roman-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-italic-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-roman-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-italic-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #0b1220;
  --ink-2: #111c31;
  --ink-3: #182543;
  --blue: #1f6feb;
  --blue-2: #2b8cff;
  --blue-deep: #0b4fb3;
  --amber: #f6b21a;
  --orange: #ff8a1a;
  --paper: #f5f7fa;
  --white: #ffffff;
  --line: #e2e8f0;
  --text: #0f172a;
  --body: #243044;
  --muted: #56657a;
  --light: #e6ecf5;
  --light-muted: rgba(230, 236, 245, 0.72);
  --success: #0f9f6e;
  --danger: #e11d48;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 30px 60px -24px rgba(11, 18, 32, 0.28);
  --shadow-soft: 0 18px 40px -22px rgba(11, 18, 32, 0.22);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --font-display: "Archivo", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --max: 1200px;
  --header-h: 76px;
}

@view-transition {
  navigation: auto;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

img {
  height: auto;
}

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue-deep);
}

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

p {
  margin: 0 0 1em;
  text-wrap: pretty;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text);
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 {
  font-weight: 800;
  font-stretch: 106%;
  font-size: clamp(2.35rem, 1.45rem + 3.4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h2 {
  font-weight: 800;
  font-stretch: 104%;
  font-size: clamp(1.7rem, 1.25rem + 1.7vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h3 {
  font-weight: 700;
  font-stretch: 102%;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted);
}

.small {
  font-size: 0.875rem;
}

.muted {
  color: var(--muted);
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.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;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
}

.icon {
  width: 22px;
  height: 22px;
  flex: none;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

/* --------------------------------------------------------------------------
   Eyebrow, links, buttons
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.eyebrow-light {
  color: var(--amber);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(246, 178, 26, 0.6);
  animation: ping 2.2s infinite;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, gap 0.2s;
}

.text-link:hover {
  border-color: currentColor;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn .icon {
  width: 18px;
  height: 18px;
}

.btn-lg {
  padding: 16px 26px;
  font-size: 16px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: 0 14px 28px -12px rgba(31, 111, 235, 0.8);
}

.btn-accent {
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: var(--ink);
}

.btn-accent:hover {
  color: var(--ink);
  box-shadow: 0 14px 30px -12px rgba(255, 138, 26, 0.9);
}

.btn-outline {
  background: var(--white);
  border-color: var(--line);
  color: var(--text);
}

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

.btn-outline-light {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn[disabled] {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

/* --------------------------------------------------------------------------
   Ribbon + header + navigation
   -------------------------------------------------------------------------- */
.ribbon {
  background: linear-gradient(90deg, var(--amber), var(--orange));
  color: var(--ink);
  font-size: 14px;
}

.ribbon-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 6px 0;
}

.ribbon p {
  margin: 0;
  flex: 1;
  min-width: 0;
}

.ribbon a {
  color: inherit;
  font-weight: 700;
}

.ribbon-dot {
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  animation: ping-dark 2s infinite;
}

.ribbon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.9);
  color: var(--white) !important;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.3s;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px -18px rgba(11, 18, 32, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: none;
  transition: transform 0.35s var(--ease);
}

.brand:hover .brand-mark {
  transform: translateX(3px);
}

.brand-text {
  display: grid;
  gap: 4px;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-stretch: 115%;
  font-size: 23px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--blue);
}

.brand.is-dark .brand-name,
.site-footer .brand-name,
body.nav-open .site-header .brand-name {
  color: var(--white);
}

.brand.is-dark .brand-sub,
.site-footer .brand-sub,
body.nav-open .site-header .brand-sub {
  color: var(--amber);
}

.site-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-list a:hover {
  background: var(--paper);
  color: var(--blue);
}

.nav-list a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}

.nav-list a.nav-accent {
  color: #b45309;
}

.nav-list a.nav-accent::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.nav-list a.nav-accent[aria-current="page"] {
  background: var(--orange);
  color: var(--ink);
}

.nav-list a.nav-accent[aria-current="page"]::before {
  background: var(--ink);
}

.nav-extra {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  place-items: center;
  cursor: pointer;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

@media (max-width: 1023px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    margin: 0;
    padding: calc(var(--header-h) + 24px) 20px 40px;
    background: var(--ink);
    color: var(--white);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s linear 0.3s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition-delay: 0s;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-list a {
    padding: 16px 18px;
    border-radius: 14px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--white);
  }

  .nav-list a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
  }

  .nav-list a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-list a.nav-accent {
    color: var(--amber);
  }

  .nav-extra {
    display: block;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-extra-text {
    margin: 18px 0 0;
    color: var(--light-muted);
    font-size: 14px;
    line-height: 1.7;
  }

  body.nav-open .site-header {
    background: var(--ink);
    border-color: transparent;
  }

  body.nav-open .nav-toggle {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
  }

  body.nav-open .header-call {
    visibility: hidden;
  }
}

@media (max-width: 639px) {
  :root {
    --header-h: 64px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-sub {
    font-size: 9px;
  }

  .header-call span {
    display: none;
  }

  .header-call {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 14px;
  }

  .ribbon-note {
    display: none;
  }

  .ribbon {
    font-size: 13px;
  }
}

@media (max-width: 479px) {
  .ribbon-link {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Sections + headings
   -------------------------------------------------------------------------- */
.section {
  padding: clamp(56px, 8vw, 104px) 0;
}

.section-tint {
  background: var(--paper);
}

.section-dark {
  background: var(--ink);
  color: var(--light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: var(--light-muted);
}

.section-dark a:not(.btn) {
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-heading h2 {
  margin-bottom: 0.4em;
}

.section-heading .section-text {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}

.section-dark .section-heading .section-text {
  color: var(--light-muted);
}

.section-heading.is-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.is-center .eyebrow {
  justify-content: center;
}

.section-heading.is-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px 48px;
  align-items: end;
  max-width: none;
}

.section-heading.is-split h2 {
  margin-bottom: 0;
}

.section-foot {
  margin: 32px 0 0;
}

/* --------------------------------------------------------------------------
   Home hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  opacity: 0.7;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 18, 32, 0.97) 0%, rgba(11, 18, 32, 0.86) 42%, rgba(11, 18, 32, 0.35) 100%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.2) 0%, rgba(11, 18, 32, 0) 30%, rgba(11, 18, 32, 0.9) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: center;
  padding: clamp(64px, 9vw, 120px) 0 clamp(40px, 5vw, 64px);
}

.hero h1 {
  color: var(--white);
  max-width: 14ch;
}

.hero h1 .accent {
  background: linear-gradient(90deg, var(--amber), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  color: var(--light-muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin: 22px 0 0;
  max-width: 60ch;
  font-size: 14px;
  color: var(--light-muted);
}

.hero-note a {
  color: var(--white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats div {
  display: grid;
  gap: 4px;
}

.hero-stats dt {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 112%;
  font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.6rem);
  letter-spacing: -0.03em;
  color: var(--amber);
  line-height: 1;
}

.hero-stats dd {
  margin: 0;
  font-size: 14px;
  color: var(--light-muted);
  max-width: 24ch;
}

@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero-media img {
      animation: hero-drift linear both;
      animation-timeline: scroll(root);
      animation-range: 0 100vh;
    }
  }
}

@keyframes hero-drift {
  to {
    transform: scale(1.1) translateY(6%);
  }
}

/* Status card */
.status-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--white);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6);
}

.status-row {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #94a3b8;
}

.status-pill.is-open {
  background: rgba(15, 159, 110, 0.22);
  color: #9ff0cf;
}

.status-pill.is-open .status-dot {
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: ping 2s infinite;
}

.status-sub {
  font-size: 14px;
  color: var(--light-muted);
}

.status-facts {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.status-facts li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  color: var(--light-muted);
}

.status-facts li strong {
  color: var(--white);
  font-weight: 600;
}

.status-facts .icon {
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--amber);
}

.status-card.is-compact {
  padding: 22px;
}

/* Marquee */
.marquee {
  overflow: hidden;
  background: var(--amber);
  color: var(--ink);
  border-block: 1px solid rgba(11, 18, 32, 0.12);
}

.marquee-track {
  display: flex;
  gap: 44px;
  width: max-content;
  margin: 0;
  padding: 13px 0;
  list-style: none;
  animation: marquee 48s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   Steps + triage
   -------------------------------------------------------------------------- */
.steps-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps.is-four {
  grid-template-columns: repeat(4, 1fr);
}

.steps li {
  position: relative;
  padding: 28px 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.steps li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.step-num {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 112%;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--blue);
}

.step-num::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-top: 10px;
  border-radius: 2px;
  background: var(--amber);
}

.steps h3 {
  margin-bottom: 8px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.dvsa-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--light);
  border-left: 4px solid var(--amber);
}

.dvsa-card h3 {
  color: var(--white);
  font-size: 1.35rem;
}

.dvsa-card p {
  color: var(--light-muted);
  font-size: 15px;
}

.dvsa-card .text-link {
  color: var(--amber);
}

/* --------------------------------------------------------------------------
   Service cards (bento)
   -------------------------------------------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-card {
  grid-column: span 4;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent;
  color: var(--text);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--blue) 10%, var(--white));
  color: var(--blue);
}

.service-body {
  display: grid;
  gap: 8px;
}

.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.service-text {
  font-size: 15px;
  color: var(--muted);
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  transition: gap 0.2s;
}

.service-card:hover .service-more {
  gap: 10px;
}

.service-card.is-featured {
  grid-column: span 8;
  background:
    radial-gradient(circle at 100% 0%, rgba(43, 140, 255, 0.35), transparent 45%),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  color: var(--white);
  border-color: transparent;
}

.service-card.is-featured:hover {
  color: var(--white);
}

.service-card.is-featured .service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--amber);
}

.service-card.is-featured .service-title {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 800;
  font-stretch: 104%;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.service-card.is-featured .service-text {
  color: var(--light-muted);
  font-size: 1rem;
  max-width: 48ch;
}

.service-card.is-featured .service-more {
  color: var(--amber);
}

.service-grid.is-compact .service-card {
  grid-column: span 4;
}

/* --------------------------------------------------------------------------
   Corridor map + drive chips
   -------------------------------------------------------------------------- */
.corridor {
  margin: 0;
  padding: 20px 12px 8px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.corridor-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.map-road {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 14;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-route {
  fill: none;
  stroke: var(--amber);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.corridor.is-visible .map-route,
html.no-js .map-route {
  animation: draw 2.2s cubic-bezier(0.65, 0, 0.35, 1) 0.2s forwards;
}

.map-dot {
  fill: var(--ink);
  stroke: var(--white);
  stroke-width: 3;
}

.map-node.is-home .map-dot {
  fill: var(--amber);
  stroke: var(--ink);
}

.map-node.is-highlight .map-dot {
  fill: var(--blue-2);
  stroke: var(--white);
}

.map-node.is-home.is-highlight .map-dot {
  fill: var(--amber);
}

.map-pulse {
  fill: var(--amber);
  opacity: 0.3;
  transform-origin: center;
  transform-box: fill-box;
  animation: map-pulse 2.4s ease-out infinite;
}

.map-label {
  fill: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}

.map-node.is-home .map-label,
.map-node.is-highlight .map-label {
  fill: var(--amber);
}

.map-node.is-highlight:not(.is-home) .map-label {
  fill: #9cc8ff;
}

.map-sub {
  fill: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
}

.map-tag {
  fill: rgba(255, 255, 255, 0.45);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-dvsa rect {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.28);
}

.map-dvsa text {
  fill: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
}

.drive-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 24px 0 8px;
  padding: 0;
}

.drive-chips a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 150px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.drive-chips a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--amber);
}

.drive-chips strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}

.drive-chips span {
  font-size: 12px;
  color: var(--light-muted);
}

.section-dark .drive-chips + .small {
  color: rgba(230, 236, 245, 0.5);
}

/* --------------------------------------------------------------------------
   Fleet section, feature list, principles
   -------------------------------------------------------------------------- */
.fleet-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.fleet-media {
  position: relative;
  margin: 0;
}

.fleet-media img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.fleet-media figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: grid;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(11, 18, 32, 0.88);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.fleet-media figcaption strong {
  font-family: var(--font-display);
  font-weight: 700;
}

.fleet-media figcaption span {
  font-size: 13px;
  color: var(--light-muted);
}

.feature-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 16px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-list .icon {
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--amber) 18%, var(--white));
  color: #b45309;
}

.feature-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.feature-list span {
  font-size: 15px;
  color: var(--muted);
}

.principle-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.principle-grid.is-three {
  grid-template-columns: repeat(3, 1fr);
}

.principle-grid li {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.principle-grid .icon {
  width: 48px;
  height: 48px;
  padding: 12px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--amber);
}

.principle-grid h3 {
  margin-bottom: 8px;
}

.principle-grid p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Contact layout + forms
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: start;
}

.contact-intro h2 {
  margin-bottom: 0.4em;
}

.contact-intro > p {
  color: var(--muted);
}

.contact-details {
  margin: 24px 0;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-details address {
  font-style: normal;
  margin-bottom: 10px;
}

.contact-form-wrap {
  padding: clamp(22px, 3vw, 36px);
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}

.field label span {
  color: var(--danger);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field select {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2356657a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 18%, transparent);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #94a3b8;
}

.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-help {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 20px;
  padding: 12px 14px;
  border-left: 3px solid var(--amber);
  border-radius: 10px;
  background: color-mix(in srgb, var(--amber) 14%, var(--white));
  font-size: 14px;
  color: var(--text);
}

.form-help .icon {
  color: #b45309;
  margin-top: 2px;
}

.form-help a {
  font-weight: 600;
}

.form-status {
  margin: 0 0 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-weight: 500;
}

.form-status:empty {
  display: none;
}

.form-status.success {
  background: #e7f8f1;
  color: #0b6b4a;
}

.form-status.error {
  background: #fdecef;
  color: #9f1239;
}

.turnstile-wrap {
  min-height: 66px;
  margin: 16px 0;
}

.check-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
}

.check-field input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--blue);
  flex: none;
}

.form-privacy {
  margin: 14px 0 0;
}

/* Checklist card + lists */
.check-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.check-card h3 {
  margin-bottom: 6px;
}

.check-card > p {
  font-size: 15px;
  color: var(--muted);
}

.check-list {
  list-style: none;
  margin: 0 0 1.5em;
  padding: 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}

.check-list .icon {
  width: 26px;
  height: 26px;
  padding: 5px;
  margin-top: 1px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--blue) 12%, var(--white));
  color: var(--blue);
}

.check-list.is-grid {
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.check-list li .icon:is([class*="warning"], .warn),
.check-list li .icon path[d^="M12 3l10"] {
  color: #b45309;
}

.check-list li:has(path[d^="M12 3l10"]) .icon {
  background: color-mix(in srgb, var(--amber) 22%, var(--white));
  color: #b45309;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 40px;
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  margin-bottom: 0;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item[open] {
  border-color: color-mix(in srgb, var(--blue) 35%, var(--line));
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--blue);
  transition: transform 0.3s var(--ease), background 0.3s;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: var(--white);
}

.faq-body {
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-body p {
  margin: 0;
}

@supports (interpolate-size: allow-keywords) {
  .faq-item {
    interpolate-size: allow-keywords;
  }

  .faq-item::details-content {
    block-size: 0;
    overflow: hidden;
    transition: block-size 0.35s var(--ease), content-visibility 0.35s allow-discrete;
  }

  .faq-item[open]::details-content {
    block-size: auto;
  }
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 88px) 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 138, 26, 0.28), transparent 40%),
    radial-gradient(circle at 10% 100%, rgba(43, 140, 255, 0.3), transparent 45%),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  color: var(--white);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-copy {
  max-width: 620px;
}

.cta-copy h2 {
  color: var(--white);
  margin-bottom: 0.4em;
}

.cta-copy p {
  margin: 0;
  color: var(--light-muted);
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Footer + mobile CTA
   -------------------------------------------------------------------------- */
.site-footer {
  padding: clamp(56px, 7vw, 80px) 0 32px;
  background: #070d19;
  color: #b7c2d3;
  font-size: 15px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  max-width: 44ch;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .brand-mark {
  width: 48px;
  height: 48px;
}

.footer-heading {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}

.site-footer address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 12px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white) !important;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.hours {
  display: grid;
  gap: 6px;
  margin: 14px 0;
  font-size: 14px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.hours dt {
  font-weight: 500;
  color: var(--white);
}

.hours dd {
  margin: 0;
  text-align: right;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-cta {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 55;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ink);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -10px 30px -12px rgba(0, 0, 0, 0.4);
}

.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

.mobile-cta-call {
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: var(--ink);
}

.mobile-cta-help {
  background: var(--ink);
  color: var(--white);
}

@media (max-width: 899px) {
  body {
    padding-bottom: 56px;
  }

  .mobile-cta {
    display: grid;
  }

  body.nav-open .mobile-cta {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Inner page hero, breadcrumbs, chips
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 6vw, 80px) 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(43, 140, 255, 0.28), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(246, 178, 26, 0.16), transparent 40%),
    var(--ink);
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 70%);
}

.page-hero-alert {
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 138, 26, 0.38), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(225, 29, 72, 0.22), transparent 40%),
    var(--ink);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

.page-hero.has-aside .page-hero-inner {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
}

.page-hero h1 {
  color: var(--white);
  max-width: 18ch;
}

.page-hero .lead {
  color: var(--light-muted);
  max-width: 62ch;
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.crumbs li + li::before {
  content: "/";
  margin-right: 6px;
  opacity: 0.5;
}

.crumbs a {
  color: inherit;
}

.crumbs a:hover {
  color: var(--white);
}

.crumbs [aria-current="page"] {
  color: var(--white);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

.chips .icon {
  color: var(--amber);
}

/* --------------------------------------------------------------------------
   Detail layout, side cards, prose
   -------------------------------------------------------------------------- */
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
}

.side-card {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  padding: 26px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.side-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.4em;
}

.side-card > p {
  font-size: 15px;
  color: var(--muted);
}

.side-card .btn + .btn {
  margin-top: 10px;
}

.side-note {
  margin-top: 12px;
}

.side-hours,
.side-related {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.side-hours .hours dt {
  color: var(--text);
}

.side-hours .hours div {
  border-color: var(--line);
}

.side-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.link-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}

.link-list a:hover {
  background: var(--paper);
  color: var(--blue);
}

.link-list .icon {
  color: var(--blue);
}

.side-stack {
  display: grid;
  gap: 20px;
}

.side-stack .side-card {
  position: static;
}

.detail-list {
  margin: 0 0 8px;
}

.detail-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.detail-list dt {
  color: var(--muted);
}

.detail-list dd {
  margin: 0;
  color: var(--text);
}

.prose {
  max-width: 70ch;
}

.prose-narrow {
  max-width: 72ch;
}

.prose h2 {
  font-size: clamp(1.45rem, 1.2rem + 0.9vw, 1.9rem);
  margin: 1.8em 0 0.6em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 1.6em 0 0.5em;
}

.prose p,
.prose li {
  color: var(--body);
}

.prose ul:not(.check-list),
.prose ol {
  padding-left: 1.3em;
  margin: 0 0 1.4em;
}

.prose ul:not(.check-list) li,
.prose ol li {
  margin-bottom: 0.5em;
}

.prose blockquote {
  margin: 1.6em 0;
  padding: 4px 0 4px 22px;
  border-left: 4px solid var(--amber);
  font-style: italic;
  color: var(--muted);
}

.prose img {
  border-radius: 16px;
  margin: 1.5em 0;
}

.prose figure {
  margin: 1.5em 0;
}

.prose figcaption {
  font-size: 14px;
  color: var(--muted);
}

.prose strong {
  color: var(--text);
}

.prose .lead {
  margin-bottom: 1.5em;
}

/* --------------------------------------------------------------------------
   Areas
   -------------------------------------------------------------------------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.area-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent;
  color: var(--text);
}

.area-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

.area-junction {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--blue);
}

.area-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.area-text {
  font-size: 15px;
  color: var(--muted);
}

.pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.pill-links a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s, border-color 0.2s;
}

.pill-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--amber);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: center;
}

.map-layout h2 {
  color: var(--white);
}

.map-layout .hero-actions {
  margin-top: 20px;
}

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */
.post-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  margin-bottom: 32px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.post-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: var(--text);
}

.post-featured-media {
  display: block;
  min-height: 300px;
  background: var(--paper);
}

.post-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-featured-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 3vw, 40px);
}

.post-featured-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 104%;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.post-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.post-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--paper);
  overflow: hidden;
}

.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.post-card:hover .post-card-media img {
  transform: scale(1.04);
}

.post-card-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--blue);
}

.post-card-placeholder .icon {
  width: 48px;
  height: 48px;
}

.post-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 22px;
}

.post-title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
}

.post-title a {
  color: var(--text);
  text-decoration: none;
}

.post-title a:hover {
  color: var(--blue);
}

.post-excerpt {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  color: var(--muted);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.post-meta > * + *::before {
  content: "·";
  margin-right: 12px;
}

.post-meta-light {
  color: var(--light-muted);
  margin-top: 18px;
}

.post-tag {
  font-weight: 700;
  color: var(--blue);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: auto 0 0;
  padding: 0;
}

.post-tags li {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper);
  font-size: 12px;
  color: var(--muted);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.pagination-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.pagination-pages a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.pagination-pages a[aria-current="page"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.notice {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px dashed var(--line);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: start;
}

.article-hero-image {
  margin: 0 0 32px;
}

.article-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
}

.article-body {
  max-width: 72ch;
  font-size: 1.05rem;
}

.article-body h2 {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
}

.article-body a {
  color: var(--blue);
}

.article-tags {
  margin-top: 28px;
}

.article-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--paper);
}

.article-cta p {
  margin: 0;
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.article-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.article-nav-link:hover {
  border-color: var(--blue);
  background: var(--paper);
  color: var(--text);
}

.article-nav-link span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.article-nav-link.is-next {
  text-align: right;
}

.page-hero-article h1 {
  max-width: 24ch;
  font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3.4rem);
}

/* --------------------------------------------------------------------------
   Reveal + motion
   -------------------------------------------------------------------------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(246, 178, 26, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(246, 178, 26, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(246, 178, 26, 0);
  }
}

@keyframes ping-dark {
  0% {
    box-shadow: 0 0 0 0 rgba(11, 18, 32, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(11, 18, 32, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(11, 18, 32, 0);
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes map-pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.45;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

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

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-track,
  .eyebrow-dot,
  .ribbon-dot,
  .status-dot,
  .map-pulse {
    animation: none !important;
  }

  .map-route {
    stroke-dashoffset: 0;
    animation: none !important;
  }

  .btn:hover,
  .service-card:hover,
  .area-card:hover,
  .steps li:hover,
  .post-card:hover,
  .post-featured:hover {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1023px) {
  .hero-grid,
  .page-hero.has-aside .page-hero-inner,
  .fleet-layout,
  .contact-layout,
  .faq-layout,
  .detail-layout,
  .article-layout,
  .map-layout,
  .steps-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout .section-heading {
    position: static;
  }

  .side-card {
    position: static;
  }

  .service-card {
    grid-column: span 6;
  }

  .service-card.is-featured {
    grid-column: span 12;
  }

  .service-grid.is-compact .service-card {
    grid-column: span 6;
  }

  .steps.is-four,
  .principle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-grid,
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading.is-split {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .status-card {
    max-width: 560px;
  }
}

@media (max-width: 639px) {
  .service-card,
  .service-card.is-featured,
  .service-grid.is-compact .service-card {
    grid-column: span 12;
  }

  .steps,
  .steps.is-four,
  .principle-grid,
  .principle-grid.is-three,
  .area-grid,
  .post-grid,
  .form-grid,
  .check-list.is-grid,
  .article-nav,
  .footer-top,
  .post-featured {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .article-nav-link.is-next {
    text-align: left;
  }

  .corridor {
    padding: 12px 6px 4px;
  }

  .map-label {
    font-size: 30px;
  }

  .map-sub {
    font-size: 21px;
  }

  .map-tag,
  .map-dvsa {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */
@media print {
  .ribbon,
  .header-actions,
  .mobile-cta,
  .marquee,
  .cta-band,
  .hero-media,
  .hero-grain {
    display: none !important;
  }

  .hero,
  .page-hero,
  .section-dark {
    background: none !important;
    color: #000 !important;
  }

  .hero h1,
  .page-hero h1 {
    color: #000 !important;
  }

  html.js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
