/* ==========================================================================
   RDB's Towing & Auto — design system
   Corporate-grade, Cleveland-local. Built for trust and one action: contact.
   ========================================================================== */

/* --- tokens ------------------------------------------------------------- */
:root {
  /* brand */
  /* Ronnie's actual livery red, sampled from the truck door and saturated
     back to the vinyl colour. Both darker steps clear WCAG AA on white. */
  --red:        #d23a28;
  --red-600:    #b32f1c;
  --red-700:    #8f2313;
  --red-tint:   #fdf3f1;

  --navy:       #0e2038;
  --navy-800:   #16304f;
  --navy-700:   #1f4067;
  --ink:        #0c1420;

  --gold:       #f0a500;

  /* neutrals */
  --paper:      #ffffff;
  --bone:       #f6f8fa;
  --bone-200:   #eef1f5;
  --line:       #dfe5ec;
  --line-2:     #c9d3de;
  --steel:      #55657a;
  --steel-600:  #3f4d5f;

  /* type */
  --font-display: "Archivo", "Inter", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* space + shape */
  --wrap:   1200px;
  --wrap-narrow: 860px;
  --r-sm:   6px;
  --r:      10px;
  --r-lg:   16px;
  --r-xl:   24px;

  --sh-1: 0 1px 2px rgba(12,20,32,.06), 0 1px 3px rgba(12,20,32,.05);
  --sh-2: 0 2px 6px rgba(12,20,32,.06), 0 6px 16px rgba(12,20,32,.07);
  --sh-3: 0 10px 24px rgba(12,20,32,.10), 0 24px 56px rgba(12,20,32,.12);
  --sh-red: 0 6px 18px rgba(210,58,40,.32);

  --sec: clamp(56px, 7vw, 104px); /* section rhythm */
}

/* --- reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  overflow-x: clip;                    /* last-resort guard against wobble */
  -webkit-tap-highlight-color: rgba(210,58,40,.18);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--red-600); text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
a:hover { color: var(--red-700); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  color: var(--ink);
  font-weight: 800;
}
h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -.028em; }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.45rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.2em; }

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

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap--narrow { max-width: var(--wrap-narrow); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--red); color: #fff; padding: 12px 20px; font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

.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;
}

/* --- buttons ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body);
  font-weight: 700; font-size: .97rem; line-height: 1;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: var(--r);
  background: var(--btn-bg); color: var(--btn-fg);
  text-decoration: none; cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, color .14s ease;
  white-space: nowrap;
}
.btn { touch-action: manipulation; }
.btn:hover { transform: translateY(-1px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--red); box-shadow: var(--sh-red); }
.btn--primary:hover { background: var(--red-600); }

.btn--dark { background: var(--navy); }
.btn--dark:hover { background: var(--navy-800); }

.btn--outline {
  background: transparent; color: var(--ink); border-color: var(--line-2);
}
.btn--outline:hover { border-color: var(--ink); color: var(--ink); background: var(--bone); }

.btn--on-dark {
  background: rgba(255,255,255,.10); color: #fff;
  border-color: rgba(255,255,255,.45);
  backdrop-filter: blur(6px);
}
.btn--on-dark:hover { background: rgba(255,255,255,.18); color: #fff; }

.btn--lg { font-size: 1.05rem; padding: 17px 28px; border-radius: 12px; }
.btn--block { width: 100%; }
/* Long labels ("Browse all 30 makes & 226 models") must be able to wrap or
   they push the page into horizontal scroll. max-width guards every width.
   .btn--nowrap opts critical short CTAs out — a phone number broken across
   two lines reads as a bug. */
.btn { max-width: 100%; }
@media (max-width: 1000px) {
  .btn { white-space: normal; text-align: center; }
  .btn--nowrap { white-space: nowrap; }
}

/* header call button: full number when it fits, "Call" when it doesn't */
.btn__short { display: none; }
@media (max-width: 430px) {
  .hdr__cta .btn__full { display: none; }
  .hdr__cta .btn__short { display: inline; }
}
.btn__ico { font-size: 1.05em; line-height: 1; }

/* --- utility bar -------------------------------------------------------- */
.util {
  background: var(--ink); color: #aebbcc;
  font-size: .82rem; letter-spacing: .01em;
}
.util__row {
  display: flex; align-items: center; justify-content: space-between;
  /* never wrap: a stacked utility bar pushes the whole page down, so items
     drop out in tiers instead as the viewport narrows */
  gap: 16px; min-height: 38px; flex-wrap: nowrap;
}
.util__items { display: flex; gap: 20px; flex-wrap: nowrap; align-items: center; min-width: 0; }
.util__items span { display: inline-flex; align-items: center; gap: 7px; }
.util b { color: #fff; font-weight: 600; }
.util a { color: #fff; text-decoration: none; font-weight: 600; }
.util a:hover { color: #fff; text-decoration: underline; }
/* `.util__items span` (0-1-1) outranks `.util__hide-*` (0-1-0), so these hides
   must be written at matching specificity or they silently do nothing — which
   is exactly why the bar stacked to ~150px above the fold on phones. */
@media (max-width: 1100px) {
  .util__items span.util__hide-md { display: none; }
}
@media (max-width: 900px) {
  .util__items span.util__hide-sm { display: none; }
  .util__row { min-height: 34px; gap: 10px; }
  .util { font-size: .78rem; }
  .util__items { gap: 10px; }
  .util__items span { min-width: 0; overflow: hidden; text-overflow: ellipsis;
                      white-space: nowrap; }
  .util__row > .util__items:last-child:empty { display: none; }
}

/* --- header ------------------------------------------------------------- */
.hdr {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid var(--line);
}
.hdr__row {
  display: flex; align-items: center; gap: 18px;
  min-height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.28rem; color: var(--ink); letter-spacing: -.03em;
}
.brand__sub {
  font-size: .76rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--steel); font-weight: 600;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a.nav__link {
  font-size: .92rem; font-weight: 600; color: var(--steel-600);
  text-decoration: none; padding: 10px 9px; border-radius: var(--r-sm);
  white-space: nowrap;
}
.nav a.nav__link:hover { color: var(--ink); background: var(--bone); }
.nav a.nav__link[aria-current="page"] { color: var(--red-600); }
.hdr__cta { display: flex; align-items: center; gap: 10px; margin-left: 10px; }

.navtoggle {
  display: none; margin-left: auto;
  background: var(--bone); border: 1px solid var(--line);
  border-radius: var(--r); padding: 11px 13px; cursor: pointer;
}
.navtoggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }
.navtoggle span + span { margin-top: 5px; }

@media (max-width: 1180px) {
  .nav { display: none; }
  .navtoggle { display: block; }
  .hdr__cta { margin-left: 0; }
  .hdr__cta .btn--email { display: none; }
  .hdr__row { min-height: 68px; gap: 12px; }
}
@media (max-width: 560px) {
  .hdr__cta .btn { padding: 12px 15px; font-size: .9rem; }
  .brand__sub { display: none; }
}

/* mobile drawer */
.drawer {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 14px 0 22px;
}
.drawer.is-open { display: block; }
.drawer a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 22px; font-weight: 650; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid var(--bone-200);
}
.drawer a span { color: var(--steel); font-size: .84rem; font-weight: 500; }
.drawer .btn { margin: 16px 22px 0; width: calc(100% - 44px); }

/* --- hero --------------------------------------------------------------- */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(9,17,29,.90) 0%, rgba(9,17,29,.74) 34%, rgba(9,17,29,.44) 62%, rgba(9,17,29,.34) 100%),
    linear-gradient(to top, rgba(9,17,29,.70), transparent 55%);
}
.hero__wrap { position: relative; padding-block: clamp(52px, 7vw, 92px); }
.hero__grid { display: grid; grid-template-columns: minmax(0,1.18fr) minmax(0,.82fr); gap: clamp(30px, 4vw, 56px); align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 4.4vw, 3.55rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #d8e2ef; margin: 0 0 20px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.20);
  padding: 8px 15px; border-radius: 100px;
}
.stars { color: var(--gold); letter-spacing: .05em; }

.hero h1 { color: #fff; margin-bottom: .38em; }
.hero__accent { color: var(--gold); display: inline-block; }
.hero__sub {
  font-size: clamp(1.03rem, 1.5vw, 1.2rem); color: #d5dfec;
  max-width: 48ch; margin-bottom: 30px;
}
.hero__sub strong { color: #fff; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

.hero__proof {
  list-style: none; margin: 0; padding: 26px 0 0;
  border-top: 1px solid rgba(255,255,255,.18);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(122px, 1fr)); gap: 22px;
}
.hero__proof li { display: flex; flex-direction: column; gap: 3px; }
.hero__proof b {
  font-family: var(--font-display); font-size: 1.28rem; font-weight: 800; color: #fff;
  letter-spacing: -.02em;
}
.hero__proof span { font-size: .84rem; color: #a9b8ca; line-height: 1.35; }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media img { object-position: 62% 30%; }
}

@media (max-width: 860px) {
  .hero__media { height: 460px; bottom: auto; }
  .hero__media img { object-position: 50% 60%; }
  .hero__scrim {
    background: linear-gradient(to bottom,
      rgba(9,17,29,.62) 0%, rgba(9,17,29,.78) 30%,
      rgba(14,32,56,.97) 52%, var(--navy) 66%);
  }
  .band__media { height: 380px; bottom: auto; }
  .band__scrim {
    background: linear-gradient(to bottom,
      rgba(9,17,29,.70) 0%, rgba(9,17,29,.86) 34%,
      rgba(14,32,56,.98) 56%, var(--navy) 70%);
  }
  .lhero__media { height: 420px; bottom: auto; }
  .lhero__scrim {
    background: linear-gradient(to bottom,
      rgba(9,17,29,.72) 0%, rgba(9,17,29,.86) 36%,
      rgba(14,32,56,.98) 58%, var(--navy) 72%);
  }
}

/* --- estimator card ----------------------------------------------------- */
.est {
  background: #fff; color: var(--ink);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-3);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.6);
}
.est__head {
  background: linear-gradient(135deg, var(--navy-800), var(--navy));
  color: #fff; padding: 20px 24px;
}
.est__head h2 { color: #fff; font-size: 1.3rem; margin: 0 0 3px; }
.est__head p { margin: 0; font-size: .88rem; color: #b9c8da; }
.est__body { padding: 22px 24px 24px; }

.field { display: block; margin-bottom: 14px; }
.field > span {
  display: block; font-size: .76rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--steel); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 14px; background: var(--bone);
  border: 1.5px solid var(--line); border-radius: var(--r);
  transition: border-color .14s ease, background .14s ease, box-shadow .14s ease;
}
.field textarea { resize: vertical; min-height: 74px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%2355657a' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 12px;
  padding-right: 38px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(210,58,40,.14);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa8b8; }

.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.row-3 { display: grid; grid-template-columns: .8fr 1fr 1fr; gap: 12px; }
@media (max-width: 460px) { .row-3 { grid-template-columns: 1fr 1fr; } .row-3 > :first-child { grid-column: 1 / -1; } }

.est__out {
  margin-top: 18px; padding: 18px 20px;
  background: var(--red-tint); border: 1.5px solid #f6d5db;
  border-radius: var(--r-lg); text-align: center;
}
.est__out[hidden] { display: none; }
.est__label {
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--red-600); margin: 0 0 4px;
}
.est__range {
  font-family: var(--font-display); font-size: clamp(1.9rem, 5vw, 2.5rem);
  font-weight: 900; letter-spacing: -.035em; color: var(--ink); margin: 0; line-height: 1.05;
}
.est__note { font-size: .82rem; color: var(--steel); margin: 8px 0 0; line-height: 1.45; }
.est__cta { margin-top: 14px; display: grid; gap: 9px; }
.est__foot {
  margin: 14px 0 0; font-size: .82rem; color: var(--steel); text-align: center; line-height: 1.5;
}

/* --- sections ----------------------------------------------------------- */
.sec { padding-block: var(--sec); }
.sec--bone { background: var(--bone); }
.sec--tight { padding-block: clamp(40px, 5vw, 64px); }

.sec__head { max-width: 62ch; margin-bottom: clamp(30px, 4vw, 50px); }
.sec__head--center { margin-inline: auto; text-align: center; }
.kicker {
  display: block; font-size: .8rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--red-600); margin-bottom: 12px;
}
.sec__head p { color: var(--steel-600); font-size: 1.08rem; margin-bottom: 0; }

/* --- trust strip -------------------------------------------------------- */
.trust { background: var(--bone); border-block: 1px solid var(--line); }
.trust__row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 4px 30px; padding-block: 22px;
}
.trust__item { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
.trust__ico { flex: none; width: 26px; height: 26px; color: var(--red); }
.trust__item b { display: block; font-size: .95rem; font-weight: 700; line-height: 1.25; }
.trust__item span { display: block; font-size: .83rem; color: var(--steel); line-height: 1.3; }

/* --- steps -------------------------------------------------------------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 26px 26px; box-shadow: var(--sh-1);
}
.step__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  margin-bottom: 16px; box-shadow: var(--sh-red);
}
.step h3 { margin-bottom: .4em; }
.step p { color: var(--steel-600); margin: 0; font-size: .97rem; }

/* --- card grids (kills the old link-soup) ------------------------------- */
.cards { display: grid; gap: 16px; list-style: none; margin: 0; padding: 0; }
.cards--3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.cards--4 { grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); }
.cards--5 { grid-template-columns: repeat(auto-fill, minmax(178px, 1fr)); }
/* body-type row: all seven on one line on wide screens, no orphan */
.cards--7 { grid-template-columns: repeat(7, 1fr); }
@media (max-width: 1120px) { .cards--7 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px)  { .cards--7 { grid-template-columns: repeat(2, 1fr); } }

.card {
  display: flex; flex-direction: column; gap: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 20px 20px 18px; text-decoration: none; color: inherit;
  box-shadow: var(--sh-1);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  min-height: 100%;
}
a.card:hover {
  transform: translateY(-3px); box-shadow: var(--sh-2);
  border-color: var(--line-2); color: inherit;
}
.card b { font-family: var(--font-display); font-size: 1.08rem; font-weight: 800; letter-spacing: -.02em; }
.card span { font-size: .86rem; color: var(--steel); line-height: 1.4; }
.card__meta { margin-top: auto; padding-top: 10px; font-size: .8rem; color: var(--steel); }
.card__go { color: var(--red-600); font-weight: 700; font-size: .86rem;
            margin-top: auto; padding-top: 10px; }

/* make/vehicle card with silhouette */
.vcard { align-items: flex-start; gap: 0; padding: 18px 18px 16px; }
.vcard__art {
  width: 100%; height: 62px; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-700); opacity: .92;
}
.vcard__art svg { width: 100%; height: 100%; }
a.vcard:hover .vcard__art { color: var(--red); }
.vcard b { font-size: 1.02rem; }
.vcard span { font-size: .81rem; }

/* city card */
.ccard { padding: 18px 20px 16px; }
.ccard b { font-size: 1.05rem; }
.ccard .ccard__zip {
  display: inline-block; font-size: .8rem; font-weight: 600; color: var(--steel);
  background: var(--bone); border: 1px solid var(--line);
  padding: 3px 9px; border-radius: 100px; margin-top: 9px;
  font-variant-numeric: tabular-nums;
}
.ccard__drive { font-size: .84rem; color: var(--red-600); font-weight: 650; }

/* --- filter box --------------------------------------------------------- */
.filter { margin-bottom: 24px; position: relative; max-width: 460px; }
.filter input {
  width: 100%; font: inherit; font-size: 1rem;
  padding: 15px 18px 15px 46px;
  border: 1.5px solid var(--line); border-radius: 100px; background: #fff;
  box-shadow: var(--sh-1);
}
.filter input:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(210,58,40,.14);
}
.filter__ico {
  position: absolute; left: 17px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--steel); pointer-events: none;
}
.filter__none { color: var(--steel); font-style: italic; padding: 10px 2px; }
.filter__none[hidden] { display: none; }
[data-filter-item][hidden] { display: none !important; }
.cards > li[hidden] { display: none !important; }

/* --- Cleveland band ----------------------------------------------------- */
.band { position: relative; color: #fff; overflow: hidden; background: var(--navy); }
.band__media { position: absolute; inset: 0; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9,17,29,.93) 0%, rgba(9,17,29,.82) 45%, rgba(9,17,29,.55) 100%);
}
.band__wrap { position: relative; padding-block: clamp(56px, 7vw, 92px); }
.band h2 { color: #fff; }
.band p { color: #cfdae7; }
.band .kicker { color: var(--gold); }
.band__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(28px, 5vw, 60px); align-items: center; }
@media (max-width: 860px) { .band__grid { grid-template-columns: 1fr; } }

.statgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stat {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg); padding: 20px 22px; backdrop-filter: blur(4px);
}
.stat b {
  display: block; font-family: var(--font-display); font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  font-weight: 900; letter-spacing: -.035em; color: #fff; line-height: 1;
}
.stat span { display: block; font-size: .86rem; color: #b6c4d4; margin-top: 6px; line-height: 1.35; }

/* --- photo feature (portrait-friendly, for the real shop photography) --- */
.feature { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(30px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; } }
.feature__shot {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-3); background: var(--bone-200);
  aspect-ratio: 4 / 5;
}
.feature__shot img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.feature__tag {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: rgba(12,20,32,.82); backdrop-filter: blur(8px);
  color: #fff; border-radius: var(--r); padding: 12px 16px;
  font-size: .86rem; line-height: 1.4;
}
.feature__tag b { display: block; font-family: var(--font-display); font-size: .98rem; }

/* image on the right instead of the left */
.feature--flip { grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); }
.feature--flip .feature__shot { order: 2; }
@media (max-width: 860px) {
  /* must be restated here: this rule sits after the .feature breakpoint and
     carries equal specificity, so without it the grid never collapses */
  .feature--flip { grid-template-columns: 1fr; }
  .feature--flip .feature__shot { order: -1; }
}
/* landscape variant for the truck shot: the source is ~2:1 and the door decal
   sits left of centre, so match the ratio and bias the crop that way */
.feature__shot--wide { aspect-ratio: 2 / 1; }
.feature__shot--wide img { object-position: 42% 50%; }

/* --- reviews ------------------------------------------------------------ */
.reviews { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.review {
  margin: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px 24px 22px; box-shadow: var(--sh-1);
  display: flex; flex-direction: column;
}
.review__stars { color: var(--gold); font-size: 1rem; letter-spacing: .08em; margin-bottom: 12px; }
.review blockquote { margin: 0 0 16px; font-size: 1rem; line-height: 1.6; color: var(--steel-600); }
.review figcaption { margin-top: auto; font-size: .88rem; font-weight: 700; color: var(--ink); }
.review figcaption span { display: block; font-weight: 500; color: var(--steel); font-size: .83rem; }

/* --- recently bought ---------------------------------------------------- */
.buys { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); list-style: none; margin: 0; padding: 0; }
@media (max-width: 860px) { .buys { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .buys { grid-template-columns: 1fr; } }
.buy {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 20px 22px; box-shadow: var(--sh-1);
  display: flex; flex-direction: column;
}
.buy__price {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 900;
  letter-spacing: -.03em; color: var(--red-600); line-height: 1;
}
.buy__car { display: block; font-weight: 700; margin-top: 8px; font-size: .97rem; }
.buy__where { display: block; font-size: .83rem; color: var(--steel); margin-top: 3px; }

/* --- prose -------------------------------------------------------------- */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.5em; }
.prose p, .prose li { color: var(--steel-600); }
.prose strong { color: var(--ink); }

.ticks { list-style: none; padding: 0; display: grid; gap: 13px; }
.ticks li { position: relative; padding-left: 34px; color: var(--steel-600); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--red-tint) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23d23a28' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='m3.5 8.5 3 3 6-7'/%3E%3C/svg%3E") center/13px no-repeat;
  border: 1px solid #f4cdd4;
}
.ticks li strong { color: var(--ink); }

/* --- FAQ ---------------------------------------------------------------- */
.faq { display: grid; gap: 12px; max-width: 800px; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-1); overflow: hidden;
}
.faq__item summary {
  cursor: pointer; list-style: none; padding: 20px 54px 20px 24px;
  font-weight: 700; font-size: 1.03rem; position: relative;
  font-family: var(--font-display); letter-spacing: -.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 22px; top: 50%;
  width: 13px; height: 13px; margin-top: -7px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23d23a28' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E") center/13px no-repeat;
  transition: transform .18s ease;
}
.faq__item[open] summary::after { transform: rotate(180deg); }
.faq__item summary:hover { background: var(--bone); }
.faq__item > p { margin: 0; padding: 0 24px 22px; color: var(--steel-600); }

/* --- final CTA ---------------------------------------------------------- */
.endcta { background: var(--ink); color: #fff; }
.endcta__wrap {
  padding-block: clamp(50px, 6vw, 82px);
  display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 34px; align-items: center;
}
.endcta h2 { color: #fff; margin-bottom: .35em; }
.endcta p { color: #b9c6d6; margin: 0; max-width: 52ch; }
.endcta__btns { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 800px) { .endcta__wrap { grid-template-columns: 1fr; } }

/* --- footer ------------------------------------------------------------- */
.foot { background: var(--navy); color: #a9b9cb; font-size: .93rem; }
.foot__grid {
  display: grid; gap: 34px;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  padding-block: clamp(44px, 5vw, 64px);
}
@media (max-width: 900px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__grid { grid-template-columns: 1fr; } }
.foot h3 {
  color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 16px; font-weight: 700;
}
.foot a { color: #cbd7e4; text-decoration: none; }
.foot a:hover { color: #fff; text-decoration: underline; }
.foot__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot__lockup { margin: -14px 0 10px -10px; max-width: 280px; }
.foot__lockup svg { width: 100%; height: auto; }
.foot__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.foot__brand .brand__name { color: #fff; }
.foot__brand .brand__sub { color: #8fa2b8; }
.foot__phone {
  display: inline-block; font-family: var(--font-display); font-size: 1.35rem;
  font-weight: 800; color: #fff !important; letter-spacing: -.02em;
  margin-block: 6px 4px; text-decoration: none !important;
}
.foot__bottom {
  border-top: 1px solid rgba(255,255,255,.13);
  padding-block: 22px; display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: space-between; font-size: .84rem; color: #8398b0;
}
.foot__bottom a { color: #8398b0; }

/* --- footer address + social -------------------------------------------- */
.foot__addr { margin: 4px 0 10px; }
.foot__addr a { font-style: normal; line-height: 1.5; display: inline-block; }

.social { list-style: none; padding: 0; margin: 16px 0; display: flex; flex-wrap: wrap; gap: 9px; }
.social a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 100px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  color: #cbd7e4 !important; text-decoration: none !important;
  font-size: .86rem; font-weight: 600;
  transition: background .14s ease, border-color .14s ease;
}
.social a:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); color: #fff !important; }

/* --- review / profile CTA ----------------------------------------------- */
.reviewcta { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.reviewcta__card { align-items: flex-start; text-align: left; padding: 26px 24px; }
.reviewcta__ico { color: var(--red); margin-bottom: 12px; display: block; }
.reviewcta__card b { font-size: 1.08rem; }

/* --- service icon in cards ---------------------------------------------- */
.svc__ico { color: var(--navy-700); display: block; margin-bottom: 12px; }
a.card:hover .svc__ico { color: var(--red); }

/* --- sticky mobile call bar --------------------------------------------- */
.callbar { display: none; }
@media (max-width: 720px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    background: var(--line);
    box-shadow: 0 -4px 20px rgba(12,20,32,.16);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .callbar a {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    padding: 15px 10px; font-weight: 700; font-size: .98rem;
    text-decoration: none; background: var(--red); color: #fff;
  }
  .callbar a.callbar__alt { background: var(--ink); color: #fff; }
  body { padding-bottom: 62px; }
}

/* --- breadcrumbs -------------------------------------------------------- */
.crumbs { font-size: .85rem; color: var(--steel); padding-block: 16px 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.crumbs li::after { content: "›"; margin-left: 8px; color: var(--line-2); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--steel); text-decoration: none; }
.crumbs a:hover { color: var(--red-600); text-decoration: underline; }

/* --- landing hero (interior pages) -------------------------------------- */
.lhero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.lhero__media { position: absolute; inset: 0; }
.lhero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.lhero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9,17,29,.95) 0%, rgba(9,17,29,.80) 55%, rgba(9,17,29,.55) 100%);
}
.lhero__wrap { position: relative; padding-block: clamp(40px, 5vw, 66px) clamp(46px, 6vw, 76px); }
.lhero__grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (max-width: 960px) { .lhero__grid { grid-template-columns: 1fr; } }
.lhero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); }
.lhero p.lhero__sub { color: #d0dbe8; font-size: clamp(1rem, 1.4vw, 1.13rem); max-width: 52ch; margin-bottom: 26px; }
.lhero .crumbs { color: #8ea1b7; padding-top: 0; margin-bottom: 20px; }
.lhero .crumbs a { color: #b8c7d8; }
.lhero .crumbs a:hover { color: #fff; }
.lhero .crumbs li::after { color: #566a83; }

/* --- pill row (models within a make) ------------------------------------ */
.pills { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pills a {
  display: inline-block; padding: 11px 18px; border-radius: 100px;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  text-decoration: none; font-weight: 600; font-size: .94rem; box-shadow: var(--sh-1);
  transition: border-color .14s ease, transform .14s ease, color .14s ease;
}
.pills a:hover { border-color: var(--red); color: var(--red-600); transform: translateY(-2px); }

/* --- two-column interior layout ----------------------------------------- */
.split { display: grid; grid-template-columns: minmax(0,1fr) 380px; gap: clamp(32px, 4.5vw, 60px); align-items: start; }
.split--even  { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
.split--aside { grid-template-columns: minmax(0,1fr) 320px; }
.split--wide  { grid-template-columns: minmax(0,1fr) minmax(0,.8fr); }
@media (max-width: 1000px) {
  .split, .split--even, .split--aside, .split--wide { grid-template-columns: 1fr; }
}
.split__aside { position: sticky; top: 96px; }
@media (max-width: 1000px) { .split__aside { position: static; } }

/* --- misc --------------------------------------------------------------- */
.center { text-align: center; }
.mt-4 { margin-top: 32px; }
.muted { color: var(--steel); font-size: .9rem; }
.note {
  background: var(--bone); border-left: 3px solid var(--red);
  padding: 16px 20px; border-radius: 0 var(--r) var(--r) 0; margin-bottom: 22px;
}
.note p:last-child { margin-bottom: 0; }

/* definition list of hard facts — the disambiguation page's evidence panel */
.fcts { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 11px; }
.fct { display: grid; gap: 2px; padding-bottom: 11px;
       border-bottom: 1px solid var(--line); }
.fct:last-child { border-bottom: 0; padding-bottom: 0; }
.fct__k { font-size: .74rem; letter-spacing: .07em; text-transform: uppercase;
          color: var(--steel); font-weight: 700; }
.fct__v { font-weight: 600; color: var(--ink); overflow-wrap: anywhere; }
