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

/* Inter Tight is the design's typeface, and until now nothing ever loaded it, so every
   browser fell through the stack to Arial Narrow — a condensed face that ships on macOS
   and Windows — and rendered the entire site horizontally squeezed. It is self-hosted as
   one variable woff2 (weights 400-700 come from the same file) and every fallback below
   it is normal-width, so a failed font request can never condense the page again. */
@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-tight-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-tight-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Northline brand palette. The five authoritative brand colours are --void
     (Midnight), --cream (White), --graphite, --ash (Steel) and --scot
     (Northline Blue); --sand is the rare warm accent. */
  --void: #03070d;
  --navy: #07111c;
  --graphite: #1a1d21;
  --cream: #ffffff;
  --stone: #333a41;
  --ash: #8d949c;
  /* Northline Blue #3b5a7a only clears ~2.6:1 on --void, so it fills rules and
     surfaces; --scot-lift is the bright partner (~5.3:1) used for every small
     label, link, focus ring and interactive highlight. */
  --scot: #3b5a7a;
  --scot-lift: #3d8dd1;
  --sand: #c6b8a0;
  --pulse: linear-gradient(114.41deg, #e8edf2 20.74%, #3d8dd1 65.5%);
  --font: "Inter Tight", Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max: 1600px;
  /* --gutter carries the side safe-area insets and both nav heights carry the top
     one, so every offset measured from the viewport edge (scroll-padding, crumbs,
     the sticky vehicle panel, hero padding in the page sheets) clears a notch for
     free. Only the nav row itself pads the top inset back out. */
  --gutter: max(clamp(20px, 3vw, 40px), env(safe-area-inset-left), env(safe-area-inset-right));
  --edge: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  --nav-top-h: calc(78px + env(safe-area-inset-top));
  --nav-h: calc(126px + env(safe-area-inset-top));
  --radius: 8px;
  --pill: 100px;
  --ease: cubic-bezier(.76, 0, .24, 1);
}

html {
  background: var(--void);
  color-scheme: dark;
  overflow-x: clip;
  scroll-padding-top: var(--nav-h);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth } }

body {
  background: var(--void);
  color: var(--cream);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.38;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden }
a { color: inherit; text-decoration: none }
button { background: none; border: 0; color: inherit; cursor: pointer; font: inherit }
img, svg { display: block; max-width: 100% }
ul, ol { list-style: none }
h1, h2, h3, p { text-wrap: pretty }
:focus-visible { outline: 2px solid var(--scot-lift); outline-offset: 4px }
::selection { background: var(--scot-lift); color: var(--void) }

.wrap { margin-inline: auto; max-width: var(--max); padding-inline: var(--gutter); width: 100% }
.sr-only {
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip {
  background: var(--scot-lift);
  color: var(--void);
  font-size: 13px;
  font-weight: 600;
  left: max(16px, env(safe-area-inset-left));
  padding: 12px 18px;
  position: fixed;
  top: 0;
  transform: translateY(-120%);
  z-index: 300;
}
.skip:focus { transform: translateY(calc(16px + env(safe-area-inset-top))) }

.bracket {
  color: var(--cream);
  display: inline-block;
  font-size: 14px;
  letter-spacing: -.01em;
  line-height: 1.38;
}
.bracket::before { content: "{ " }
.bracket::after { content: " }" }

.pill {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: var(--pill);
  color: var(--cream);
  display: inline-flex;
  font-size: 16px;
  gap: 10px;
  justify-content: center;
  line-height: 1;
  min-height: 46px;
  padding: 10px 16px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
  white-space: nowrap;
}
.pill__arrow {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  font-size: 12px;
  height: 23px;
  justify-content: center;
  transition: transform .3s var(--ease);
  width: 23px;
}

.gradient-text {
  background: var(--pulse);
  background-clip: text;
  color: transparent;
  padding-bottom: .08em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav {
  border-bottom: 1px solid transparent;
  color: var(--cream);
  inset: 0 0 auto;
  position: fixed;
  /* backdrop-filter is deliberately NOT transitioned — animating it stalls
     compositing on iOS. The blur snaps; background and border still fade. */
  transition: background .45s var(--ease), border-color .45s var(--ease);
  z-index: 50;
}
.nav.is-scrolled:not(.is-collapsed) {
  backdrop-filter: blur(18px);
  background: rgba(3, 7, 13, .78);
  border-color: rgba(255, 255, 255, .12);
  -webkit-backdrop-filter: blur(18px);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav.is-scrolled:not(.is-collapsed) { background: rgba(3, 7, 13, .92) }
}
/* The nav floats transparent over the photo heroes on / and /inventory/, where the
   10px descriptor and the 12px link row disappear into a bright frame. This scrim is
   the nav's own guard, so it holds for any photograph that lands behind it later. It
   fades out once .is-scrolled paints a real background. */
.nav::before {
  background: linear-gradient(to bottom, rgba(3, 7, 13, .85), rgba(3, 7, 13, .58) 58%, rgba(3, 7, 13, 0));
  content: "";
  inset: 0 0 -32px;
  pointer-events: none;
  position: absolute;
  transition: opacity .45s var(--ease);
  z-index: -1;
}
.nav.is-scrolled:not(.is-collapsed)::before,
.nav.is-collapsed::before { opacity: 0 }
.nav__inner {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  height: var(--nav-top-h);
  margin-inline: auto;
  max-width: var(--max);
  padding-inline: var(--gutter);
  padding-top: env(safe-area-inset-top);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.nav.is-collapsed .nav__inner,
.nav.is-collapsed .nav__links { opacity: 0; pointer-events: none; transform: translateY(-8px) }
.nav__brand { align-items: center; display: inline-flex; gap: 12px; justify-self: start; min-height: 48px }
.nav__logo { height: 38px; object-fit: contain; width: 38px }
.nav__brand-copy { display: flex; flex-direction: column; line-height: 1.05 }
.nav__word { font-size: 15px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase }
.nav__descriptor { color: var(--ash); font-size: 10px; letter-spacing: .16em; margin-top: 4px; text-transform: uppercase }
.nav__location {
  align-items: center;
  color: rgba(255, 255, 255, .68);
  display: flex;
  font-size: 11px;
  gap: 10px;
  justify-self: center;
  letter-spacing: .02em;
  line-height: 1.25;
  transition: color .25s var(--ease);
}
.nav__location strong { color: var(--cream); display: block; font-size: 10px; letter-spacing: .13em; margin-bottom: 3px; text-transform: uppercase }
.nav__location-icon { color: var(--scot-lift); font-size: 21px }
.nav__links {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  gap: 4px;
  height: calc(var(--nav-h) - var(--nav-top-h));
  justify-content: center;
  margin-inline: auto;
  max-width: var(--max);
  padding-inline: var(--gutter);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.nav__link {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  letter-spacing: .1em;
  padding: 12px 14px;
  position: relative;
  text-transform: uppercase;
  transition: color .25s var(--ease);
}
.nav__link::after {
  background: var(--scot-lift);
  bottom: 5px;
  content: "";
  height: 1px;
  left: 14px;
  position: absolute;
  right: 14px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__link[aria-current="page"] { color: var(--cream) }
.nav__link[aria-current="page"]::after { transform: scaleX(1) }
.nav__admin, .menu__link[href="/admin/"] { display: none }
.nav__cta { font-size: 14px; justify-self: end; min-height: 42px; padding-block: 8px }
.nav__actions { align-items: center; display: flex; gap: 14px; justify-self: end }
.nav__phone { color: rgba(255, 255, 255, .72); font-size: 13px; font-weight: 600; letter-spacing: .03em; transition: color .25s var(--ease); white-space: nowrap }

.menu-toggle {
  align-items: center;
  background: var(--void);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  display: flex;
  height: 48px;
  justify-content: center;
  position: fixed;
  right: var(--edge);
  /* --nav-top-h holds the inset once; the row centre sits a full inset down. */
  top: calc((var(--nav-top-h) + env(safe-area-inset-top) - 48px) / 2);
  transition: opacity .45s var(--ease), transform .45s var(--ease), background .25s var(--ease), color .25s var(--ease);
  width: 48px;
  z-index: 70;
}
.menu-toggle--open { opacity: 0; pointer-events: none; transform: scale(.88) }
.nav.is-collapsed ~ .menu-toggle--open { opacity: 1; pointer-events: auto; transform: scale(1) }
.menu-toggle__icon { height: 14px; position: relative; width: 20px }
.menu-toggle__icon span {
  background: currentColor;
  border-radius: 2px;
  height: 1.5px;
  left: 0;
  position: absolute;
  transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
  width: 100%;
}
.menu-toggle__icon span:nth-child(1) { top: 0 }
.menu-toggle__icon span:nth-child(2) { top: 6px }
.menu-toggle__icon span:nth-child(3) { top: 12px }
.menu-toggle--close .menu-toggle__icon span:nth-child(1) { top: 6px; transform: rotate(45deg) }
.menu-toggle--close .menu-toggle__icon span:nth-child(2) { opacity: 0 }
.menu-toggle--close .menu-toggle__icon span:nth-child(3) { top: 6px; transform: rotate(-45deg) }

.menu {
  background: var(--void);
  border: 0;
  clip-path: circle(0 at calc(100% - var(--edge) - 24px) calc((var(--nav-top-h) + env(safe-area-inset-top)) / 2));
  color: var(--cream);
  height: 100vh;
  height: 100dvh;
  inset: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  opacity: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0;
  transition: clip-path .7s var(--ease), opacity .15s linear;
  width: 100vw;
}
.menu::backdrop { background: transparent }
.menu.is-open { clip-path: circle(150% at 100% 0); opacity: 1 }
.menu .menu-toggle--close { position: fixed }
.menu__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-inline: auto;
  max-width: var(--max);
  min-height: 100%;
  padding: calc(var(--nav-top-h) + 24px) var(--gutter) calc(34px + env(safe-area-inset-bottom));
}
.menu__label { border-bottom: 1px solid var(--stone); display: block; padding-bottom: 16px }
.menu__nav { margin-top: 26px }
.menu__link {
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  font-size: clamp(34px, 5.6vw, 70px);
  font-weight: 400;
  justify-content: space-between;
  letter-spacing: -.035em;
  line-height: 1;
  padding: 10px 0 14px;
  transition: color .25s var(--ease), padding .35s var(--ease);
}
.menu__link span { color: var(--ash); font-size: 12px; letter-spacing: .12em }
.menu__bottom { color: var(--ash); display: flex; flex-wrap: wrap; font-size: 14px; gap: 20px 36px; justify-content: space-between; margin-top: 48px }
html:not(.js) .menu-toggle { display: none }

.footer {
  background: #0a0e17;
  color: #e6eaee;
  padding: clamp(72px, 10vw, 120px) 0 calc(clamp(46px, 7vw, 84px) + env(safe-area-inset-bottom));
  position: relative;
  z-index: 2;
}
.footer__title {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
  text-transform: uppercase;
}
.footer__grid { display: grid; gap: clamp(32px, 4vw, 48px); grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); margin-top: 40px }
.footer__box { align-items: flex-start; display: flex; flex-direction: column }
.footer__heading { color: rgba(230, 234, 238, .56); font-size: 15px; font-weight: 500; margin-bottom: 10px }
.footer__copy { max-width: 36ch }
.footer__link {
  align-items: center;
  border-bottom: 1px solid #ccc;
  display: flex;
  font-size: clamp(20px, 2vw, 25px);
  gap: 12px;
  justify-content: space-between;
  /* A label longer than the rule wraps inside it instead of spilling into the next column. */
  overflow-wrap: anywhere;
  padding: 3px 0;
  transition: color .2s ease;
  width: min(100%, 240px);
}
.footer__link span { flex: none }
/* The mailto label is 27ch: ~300px at the shared link size, well past the 240px rule. Size it
   to the rule wherever that cap binds; under 600px the link owns the full column and fits. */
@media (min-width: 601px) {
  .footer__link[href^="mailto:"] { font-size: clamp(15.5px, 1.45vw, 17px) }
}
.footer__statement { font-size: clamp(18px, 2vw, 23px); line-height: 1.2 }
.footer__statement span { color: var(--scot-lift) }
.footer__meta { color: rgba(230, 234, 238, .5); font-size: 14px; margin-top: 30px }

[data-reveal] { transition: opacity .8s cubic-bezier(.33, 1, .68, 1), transform .8s cubic-bezier(.33, 1, .68, 1) }
html.js [data-reveal] { opacity: 0; transform: translateY(42px) }
html.js [data-reveal].is-in { opacity: 1; transform: none }

/* 1100, not 1023: the three-column top row needs ~970px of Arial (no webfont is ever
   loaded), so a 1024px iPad Pro portrait wraps the brand descriptor under the desktop nav. */
@media (max-width: 1100px) {
  :root { --nav-top-h: calc(76px + env(safe-area-inset-top)); --nav-h: calc(76px + env(safe-area-inset-top)) }
  .nav__inner { display: flex; justify-content: space-between }
  .nav__location, .nav__links, .nav__cta, .nav__actions { display: none }
  .menu-toggle--open { opacity: 1; pointer-events: auto; transform: scale(1) }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)) }
  html:not(.js) .nav__inner { flex-wrap: wrap; height: auto; min-height: var(--nav-h); padding-block: 10px }
  html:not(.js) .nav__links { display: flex; flex-wrap: wrap; height: auto; order: 3; width: 100% }
}

@media (max-width: 600px) {
  :root { --gutter: max(20px, env(safe-area-inset-left), env(safe-area-inset-right)); --nav-top-h: calc(72px + env(safe-area-inset-top)); --nav-h: calc(72px + env(safe-area-inset-top)) }
  body { font-size: 16px }
  .nav__logo { height: 34px; width: 34px }
  .nav__descriptor { display: none }
  .menu-toggle { height: 44px; right: var(--gutter); top: calc(14px + env(safe-area-inset-top)); width: 44px }
  .menu { clip-path: circle(0 at calc(100% - var(--gutter) - 22px) calc(36px + env(safe-area-inset-top))) }
  .menu__body { padding-bottom: calc(30px + env(safe-area-inset-bottom)) }
  .menu__link { font-size: clamp(32px, 10.5vw, 50px) }
  .menu__bottom { flex-direction: column }
  .footer__grid { gap: 40px; grid-template-columns: 1fr }
  .footer__link { width: 100% }
}

/* A landscape phone is wide and short, so the vw-sized menu type showed 3 of 7 links.
   Cap it against the short edge instead; the sheet still scrolls if a link is added. */
@media (max-height: 520px) and (orientation: landscape) {
  .menu__body { padding-block: calc(var(--nav-top-h) + 8px) calc(20px + env(safe-area-inset-bottom)) }
  .menu__label { padding-bottom: 10px }
  .menu__nav { margin-top: 14px }
  .menu__link { font-size: clamp(20px, 6.5vh, 32px); padding: 9px 0 11px }
  .menu__bottom { gap: 8px 28px; margin-top: 20px }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; scroll-behavior: auto !important; transition-duration: .01ms !important }
  /* Keep a gentle opacity-only reveal: no translate, and the duration must out-important the kill above. */
  html.js [data-reveal] { transform: none; transition-duration: .6s !important }
}

@media print {
  .nav, .menu-toggle, .menu, .footer, .skip { display: none }
  body { background: #fff; color: #000 }
}

/* ---------------------------------------------------------- server-rendered SEO sections */

.crumbs { border-bottom: 1px solid var(--stone); font-size: 13px; padding-block: 18px; padding-top: calc(var(--nav-h) + 18px) }
.crumbs .wrap { align-items: center; color: var(--ash); display: flex; flex-wrap: wrap; gap: 8px }
.crumbs a { color: var(--ash); text-decoration: none; transition: color .2s ease }
.crumbs [aria-current] { color: var(--cream) }
.crumbs__sep { color: var(--stone) }

.seo-faq { padding-block: clamp(72px, 9vw, 120px) }
.seo-faq__title { font-size: clamp(36px, 5vw, 64px); font-weight: 400; letter-spacing: -.035em; line-height: 1; margin-top: 16px }
.seo-faq__list { border-top: 1px solid var(--stone); margin-top: clamp(36px, 5vw, 56px) }
.seo-faq__item { border-bottom: 1px solid var(--stone) }
.seo-faq__q {
  cursor: pointer;
  font-size: clamp(17px, 1.8vw, 21px);
  list-style: none;
  padding: 24px 44px 24px 0;
  position: relative;
  transition: color .2s ease;
}
.seo-faq__q::-webkit-details-marker { display: none }
.seo-faq__q::after {
  content: "+";
  color: var(--scot-lift);
  font-size: 24px;
  line-height: 1;
  position: absolute;
  right: 6px;
  top: 24px;
  transition: transform .25s ease;
}
.seo-faq__item[open] .seo-faq__q::after { transform: rotate(45deg) }
.seo-faq__a { color: var(--ash); font-size: 16px; line-height: 1.6; max-width: 68ch; padding: 0 44px 26px 0 }

.seo-links { border-top: 1px solid var(--stone); padding-block: clamp(64px, 8vw, 104px) }
.seo-links__title { font-size: clamp(30px, 3.6vw, 46px); font-weight: 400; letter-spacing: -.03em; line-height: 1.02; margin-top: 14px }
.seo-links__grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); margin-top: 34px }
.seo-links__link {
  align-items: center;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  color: var(--cream);
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  padding: 16px 18px;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}

/* ---------------------------------------------------------- vehicle detail */

.veh { padding-block: clamp(40px, 5vw, 64px) 0 }
.veh__grid { display: grid; gap: clamp(28px, 4vw, 56px); grid-template-columns: 1.25fr 1fr }
.veh__media { display: grid; gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)) }
.veh__shot { border: 1px solid var(--stone); border-radius: var(--radius); height: auto; object-fit: cover; width: 100% }
.veh__shot--empty { aspect-ratio: 3 / 2; background: #1a1d21 }
/* Hero photo spans the pair; the rest tile 2-up so a 30-shot gallery stays a panel, not a column. */
.veh__media > .veh__shot:first-child { grid-column: 1 / -1 }
.veh__media .veh__shot:not(:first-child) { aspect-ratio: 3 / 2 }
.veh__panel { align-self: start; position: sticky; top: calc(var(--nav-h) + 20px) }
.veh__title { font-size: clamp(34px, 4vw, 54px); font-weight: 400; letter-spacing: -.035em; line-height: 1.02; margin-top: 14px }
.veh__price { color: var(--scot-lift); font-size: clamp(26px, 2.6vw, 34px); margin-top: 18px }
.veh__sold { background: var(--stone); border-radius: var(--pill); color: var(--cream); font-size: 12px; padding: 5px 12px; vertical-align: middle }
.veh__lede { color: var(--ash); font-size: 16px; line-height: 1.6; margin-top: 18px; max-width: 52ch }
.veh__specs { border-top: 1px solid var(--stone); display: grid; gap: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 30px }
.veh__spec { border-bottom: 1px solid var(--stone); padding: 14px 0 }
.veh__spec:nth-child(odd) { padding-right: 16px }
.veh__spec dt { color: var(--ash); font-size: 11px; letter-spacing: .12em; text-transform: uppercase }
.veh__spec dd { font-size: 16px; margin-top: 6px }
.veh__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px }
.veh__cta { background: var(--scot-lift); border-color: var(--scot-lift); color: var(--void) }
.veh__carfax { color: var(--scot-lift); display: inline-block; font-size: 14px; margin-top: 20px }
.veh__body { padding-block: clamp(56px, 7vw, 96px) }
.veh__block + .veh__block { margin-top: clamp(44px, 5vw, 68px) }
.veh__block h2 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 400; letter-spacing: -.03em }
.veh__block p { color: var(--ash); font-size: 16px; line-height: 1.65; margin-top: 16px; max-width: 70ch }
.veh__features { display: grid; gap: 8px 24px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); list-style: none; margin-top: 20px }
.veh__features li { border-bottom: 1px solid var(--stone); font-size: 15px; padding-bottom: 10px }
.veh__related { display: grid; gap: 14px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 22px }
.veh__related-card {
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.veh__related-card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100% }
.veh__related-name { font-size: 15px; padding: 14px 16px 0 }
.veh__related-price { color: var(--ash); font-size: 14px; padding: 6px 16px 16px }

/* ---------------------------------------------------------- city landing + hub */

.loc__head { padding-block: clamp(44px, 6vw, 76px) }
.loc__title { font-size: clamp(40px, 5.6vw, 76px); font-weight: 400; letter-spacing: -.04em; line-height: .98; margin-top: 16px; max-width: 18ch }
.loc__answer { border-left: 2px solid var(--scot-lift); font-size: clamp(18px, 1.9vw, 23px); line-height: 1.45; margin-top: 30px; max-width: 60ch; padding-left: 20px }
.loc__intro { color: var(--ash); font-size: 17px; line-height: 1.65; margin-top: 24px; max-width: 66ch }
.loc__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px }
.loc__cta { background: var(--scot-lift); border-color: var(--scot-lift); color: var(--void) }
.loc__body { border-top: 1px solid var(--stone); padding-block: clamp(52px, 6vw, 84px) }
.loc__section + .loc__section { margin-top: clamp(44px, 5vw, 68px) }
.loc__section h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 400; letter-spacing: -.03em; line-height: 1.05; max-width: 22ch }
.loc__section p { color: var(--ash); font-size: 16px; line-height: 1.7; margin-top: 18px; max-width: 72ch }
.loc__list { color: var(--ash); display: grid; gap: 10px; list-style: none; margin-top: 20px }
.loc__list li { border-left: 1px solid var(--stone); font-size: 15px; line-height: 1.5; padding-left: 16px }
.loc__chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin-top: 22px }
.loc__chips li { border: 1px solid var(--stone); border-radius: var(--pill); font-size: 13px; padding: 8px 16px }

.hub__head { padding-block: clamp(44px, 6vw, 76px) }
.hub__title { font-size: clamp(40px, 5.4vw, 72px); font-weight: 400; letter-spacing: -.04em; line-height: .98; margin-top: 16px; max-width: 17ch }
.hub__group { border-top: 1px solid var(--stone); padding-block: clamp(36px, 4vw, 56px) }
.hub__region { color: var(--scot-lift); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase }
.hub__grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); margin-top: 26px }
.hub__card {
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  position: relative;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}
.hub__city { font-size: 21px; letter-spacing: -.02em }
.hub__blurb { color: var(--ash); font-size: 14px; line-height: 1.5 }
.hub__go { color: var(--scot-lift); position: absolute; right: 20px; top: 20px }

@media (max-width: 900px) {
  .veh__grid { grid-template-columns: 1fr }
  .veh__media { grid-template-columns: 1fr }
  .veh__panel { position: static }
  .veh__related { grid-template-columns: 1fr }
}
@media (max-width: 720px) {
  .crumbs { padding-top: calc(var(--nav-h) + 14px) }
  .veh__specs { grid-template-columns: 1fr }
  .veh__spec:nth-child(odd) { padding-right: 0 }
}

.fee-note { color: var(--ash); font-size: 12px; line-height: 1.6; margin-top: 14px; max-width: 60ch }

/* Decorative hovers only where a hover exists: on touch a tapped :hover sticks until the
   next tap, so pills stayed inverted and menu rows stayed indented. :focus-visible and
   [aria-current] stay unconditional above. */
@media (hover: hover) and (pointer: fine) {
  .pill:hover { background: var(--cream); color: var(--void) }
  .pill:hover .pill__arrow { transform: rotate(45deg) }
  .nav__location:hover { color: var(--cream) }
  .nav__link:hover { color: var(--cream) }
  .nav__link:hover::after { transform: scaleX(1) }
  .nav__phone:hover { color: var(--cream) }
  .menu-toggle:hover { background: var(--cream); color: var(--void); transform: scale(1.05) }
  .menu__link:hover { color: var(--scot-lift); padding-left: 12px }
  .menu__bottom a:hover { color: var(--cream) }
  .footer__link:hover { color: var(--scot-lift) }
  .crumbs a:hover { color: var(--cream) }
  .seo-faq__q:hover { color: var(--scot-lift) }
  .seo-links__link:hover { background: rgba(59, 90, 122, .12); border-color: var(--scot-lift) }
  .veh__cta:hover { background: var(--cream); color: var(--void) }
  .veh__related-card:hover { border-color: var(--scot-lift); transform: translateY(-3px) }
  .loc__cta:hover { background: var(--cream); color: var(--void) }
  .hub__card:hover { background: rgba(59, 90, 122, .1); border-color: var(--scot-lift) }
}

/* Touch: 16px is the floor below which iOS zooms a focused field, and the thin inline
   links pad out to a 44px target without moving (the negative margin eats the padding). */
@media (pointer: coarse) {
  input, select, textarea { font-size: 16px }
  .nav__link { padding-block: 14px }
  .nav__cta { min-height: 44px }
  /* An iPad past the 1100px breakpoint gets the desktop nav on a coarse pointer, so the
     two thin links in it need the hit box a mouse never did. */
  .nav__location { margin-block: -8px; padding-block: 8px }
  .nav__phone { margin-block: -14px; padding-block: 14px }
  .menu__bottom a { margin-block: -13px; padding-block: 13px }
  .crumbs a { margin-block: -14px; padding-block: 14px }
  .footer__link { min-height: 44px }
  .veh__carfax { margin-top: 8px; padding-block: 13px }
}
