/* Warranty Auto Sales responsive styles. */
:root {
  --ink: #0a1923;
  --ink-2: #102532;
  --paper: #f7f9fa;
  --white: #ffffff;
  --muted: #5d6d76;
  --line: #dce5e9;
  --line-strong: #bac9d0;
  --blue: #2fafe7;
  --blue-deep: #0676ad;
  --red: #ef4a4f;
  --red-dark: #cc363d;
  --mint: #75e6bd;
  --sand: #f5efe6;
  --shadow: 0 20px 50px rgba(8, 25, 35, .13);
  --shadow-small: 0 8px 25px rgba(8, 25, 35, .08);
  --radius: 18px;
  --radius-sm: 11px;
  --max: 1200px;
  --photo-showroom: url("assets/warranty-showroom.jpg");
  --photo-consultation: url("assets/warranty-consultation.jpg");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

button, input, textarea { font: inherit; }

button { cursor: pointer; }

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--white);
  background: var(--ink);
  transition: transform .18s ease;
}

.skip-link:focus { transform: translateY(0); }

.utility-bar {
  color: #dbe9ee;
  background: var(--ink);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.utility-inner,
.shell {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 35px;
  gap: 18px;
}

.utility-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 8px 1px 0;
  border-radius: 50%;
  background: var(--mint);
}

.utility-inner a { color: var(--white); }
.utility-inner a:hover { color: var(--mint); }

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid rgba(10, 25, 35, .06);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 39px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-2);
  clip-path: polygon(50% 0, 100% 16%, 92% 73%, 50% 100%, 8% 73%, 0 16%);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -.1em;
}

.brand-mark::after {
  position: absolute;
  top: -9px;
  right: -6px;
  width: 15px;
  height: 23px;
  content: "";
  transform: rotate(25deg);
  background: var(--red);
}

.brand-mark > span { position: relative; z-index: 1; }

.brand-copy { display: grid; gap: 4px; }
.brand-copy small {
  color: var(--blue-deep);
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(15px, 2vw, 30px);
  margin-left: auto;
}

.primary-nav > a:not(.nav-phone) {
  position: relative;
  padding: 30px 0;
  color: #53646e;
  font-size: .86rem;
  font-weight: 750;
}

.primary-nav > a:not(.nav-phone)::after {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  background: var(--red);
  transition: transform .2s ease;
}

.primary-nav > a:not(.nav-phone):hover,
.primary-nav > a[aria-current="page"] { color: var(--ink); }
.primary-nav > a:not(.nav-phone):hover::after,
.primary-nav > a[aria-current="page"]::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.button-primary { color: var(--white); background: var(--red); }
.button-primary:hover { background: var(--red-dark); box-shadow: 0 9px 24px rgba(239, 74, 79, .28); transform: translateY(-2px); }

.button-secondary { color: var(--white); border-color: rgba(255,255,255,.6); background: transparent; }
.button-secondary:hover { color: var(--ink); border-color: var(--white); background: var(--white); transform: translateY(-2px); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--ink-2); box-shadow: var(--shadow-small); transform: translateY(-2px); }
.button-outline { color: var(--ink); border-color: var(--line-strong); background: var(--white); }
.button-outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.button-arrow, .link-arrow { font-size: 1.1em; line-height: 1; }

.nav-phone {
  color: var(--ink);
  font-size: .79rem;
  font-weight: 850;
  letter-spacing: .01em;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-phone:hover { color: var(--red-dark); }

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  min-height: 30px;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 850;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  transition: color .18s ease, text-decoration-color .18s ease;
}
.phone-link-light { color: var(--white); text-decoration-color: var(--mint); }
.phone-link:hover { color: var(--red); text-decoration-color: currentColor; }
.phone-link-light:hover { color: var(--mint); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: auto;
  content: "";
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-lines { position: relative; }
.nav-toggle-lines::before { position: absolute; top: -6px; }
.nav-toggle-lines::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after { transform: translateY(-6px) rotate(-45deg); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--blue-deep);
  font-size: .71rem;
  font-weight: 850;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { width: 23px; height: 2px; content: ""; background: currentColor; }
.eyebrow.light { color: #8fdbff; }
.eyebrow.light::before { background: var(--mint); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: inherit; letter-spacing: -.055em; line-height: .98; }
h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(2.9rem, 6vw, 5.55rem); }
h2 { margin-bottom: 17px; font-size: clamp(2.15rem, 4vw, 3.8rem); }
h3 { margin-bottom: 10px; font-size: 1.35rem; }

.lead { max-width: 610px; margin-bottom: 0; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.17rem); line-height: 1.65; }
.lead.light { color: #d4e0e6; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::after {
  position: absolute;
  z-index: 1;
  right: -155px;
  bottom: -170px;
  width: 490px;
  height: 490px;
  content: "";
  border: 1px solid rgba(117, 230, 189, .22);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 592px;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding: 70px 0 78px;
}

.hero-copy { position: relative; z-index: 2; }
.hero-copy .lead { margin-bottom: 35px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-visual {
  position: relative;
  min-height: 425px;
}

.hero-photo {
  position: absolute;
  inset: 0 0 20px 9%;
  overflow: hidden;
  border-radius: 20px 20px 4px 20px;
  box-shadow: 0 25px 65px rgba(0,0,0,.32);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(130deg, rgba(7, 22, 31, .24), transparent 55%, rgba(7,22,31,.28));
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 66% center; }

.photo-disclosure {
  display: none;
}

.hero-assurance {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: min(300px, 65%);
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.hero-assurance span { display: block; margin-bottom: 5px; color: var(--blue-deep); font-size: .66rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.hero-assurance strong { display: block; letter-spacing: -.04em; line-height: 1.12; }
.hero-assurance p { margin: 6px 0 0; color: var(--muted); font-size: .79rem; line-height: 1.4; }

.trust-strip { color: var(--ink); background: var(--white); }
.trust-inner { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); min-height: 148px; align-items: stretch; }
.trust-intro { display: flex; align-items: center; padding: 25px 34px 25px 0; color: var(--muted); font-size: .95rem; line-height: 1.55; }
.trust-item { display: grid; align-content: center; gap: 4px; padding: 22px 20px 22px 28px; border-left: 1px solid var(--line); }
.trust-item strong { font-size: 1.17rem; letter-spacing: -.045em; line-height: 1.1; }
.trust-item span { color: var(--muted); font-size: .77rem; line-height: 1.4; }

.section { padding: clamp(68px, 9vw, 112px) 0; }
.section-tight { padding: clamp(55px, 7vw, 84px) 0; }
.section-paper { background: var(--paper); }
.section-white { background: var(--white); }
.section-ink { color: var(--white); background: var(--ink); }
.section-sand { background: var(--sand); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 42px; }
.section-heading .lead { max-width: 445px; }

.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.listing-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 5px 0 rgba(10,25,35,.02);
  transition: transform .2s ease, box-shadow .2s ease;
}
.listing-card:hover { box-shadow: var(--shadow-small); transform: translateY(-4px); }
.listing-photo { position: relative; height: 176px; overflow: hidden; background: var(--ink); }
.listing-photo::after { position: absolute; inset: 0; content: ""; background: linear-gradient(135deg, rgba(6, 118, 173, .25), transparent 48%, rgba(7,22,31,.45)); }
.listing-photo::before { position: absolute; z-index: 1; right: 16px; bottom: 14px; width: 42px; height: 42px; content: ""; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; }
.listing-photo.one { background: var(--photo-showroom) 53% 50% / cover no-repeat; }
.listing-photo.two { background: var(--photo-consultation) 57% 50% / cover no-repeat; filter: saturate(.82); }
.listing-photo.three { background: var(--photo-showroom) 78% 50% / cover no-repeat; filter: saturate(.72); }
.listing-card-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 23px 20px 19px; }
.card-kicker { margin: 0 0 10px; color: var(--blue-deep); font-size: .67rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.listing-card h3 { font-size: 1.55rem; }
.listing-card p { margin-bottom: 23px; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--ink); font-size: .79rem; font-weight: 850; }
.text-link:hover { color: var(--red-dark); }
.text-link .arrow { color: var(--red); font-size: 1.2em; }

.feature-split { display: grid; grid-template-columns: 1fr .94fr; align-items: start; gap: clamp(35px, 8vw, 114px); }
.feature-split .lead { margin-bottom: 31px; }
.tile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tile {
  min-height: 153px;
  padding: 25px;
  border: 1px solid rgba(193,219,230,.2);
  color: var(--white);
  background: rgba(255,255,255,.035);
}
.tile .tile-mark { display: grid; width: 29px; height: 29px; place-items: center; margin-bottom: 22px; border: 1px solid var(--mint); border-radius: 50%; color: var(--mint); font-size: .9rem; font-weight: 800; }
.tile h3 { margin-bottom: 7px; font-size: 1.08rem; letter-spacing: -.04em; }
.tile p { margin: 0; color: #bdccd3; font-size: .81rem; line-height: 1.45; }
.feature-image {
  position: relative;
  min-height: 250px;
  grid-column: span 2;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(7,22,31,.76), rgba(7,22,31,.05)), var(--photo-consultation) 62% 50% / cover;
}
.feature-image p { position: absolute; bottom: 20px; left: 24px; max-width: 365px; margin: 0; color: var(--white); font-size: clamp(1.15rem, 2vw, 1.72rem); font-weight: 750; letter-spacing: -.055em; line-height: 1.12; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { padding: 26px 5px 5px 0; border-top: 2px solid var(--ink); }
.step::before { display: block; margin-bottom: 31px; color: var(--red); content: "0" counter(step); counter-increment: step; font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.step h3 { font-size: 1.42rem; }
.step p { max-width: 300px; margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.6; }

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(32px, 4vw, 48px);
  padding: clamp(30px, 5vw, 52px);
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink-2);
}
.cta-panel h2 { max-width: 560px; margin-bottom: 7px; font-size: clamp(1.85rem, 3.6vw, 3.1rem); }
.cta-panel p { margin: 0; color: #c4d2d8; }

.page-hero { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.page-hero::after { position: absolute; top: -160px; right: -90px; width: 440px; height: 440px; content: ""; border: 1px solid rgba(117,230,189,.22); border-radius: 50%; }
.page-hero-inner { position: relative; z-index: 1; padding: clamp(68px, 10vw, 124px) 0 clamp(64px, 8vw, 102px); }
.page-hero h1 { max-width: 750px; margin-bottom: 20px; font-size: clamp(3rem, 6.5vw, 6rem); }
.page-hero .lead { max-width: 640px; }
.page-hero-meta { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 33px; color: #cfdee3; font-size: .82rem; }
.page-hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.page-hero-meta span::before { width: 6px; height: 6px; content: ""; border-radius: 50%; background: var(--mint); }

.filter-layout { display: grid; grid-template-columns: 260px 1fr; align-items: start; gap: 45px; }
.filter-panel { position: sticky; top: 17px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); box-shadow: 0 8px 22px rgba(10,25,35,.035); }
.filter-panel h2 { margin-bottom: 8px; font-size: 1.25rem; }
.filter-panel p { margin-bottom: 20px; color: var(--muted); font-size: .83rem; line-height: 1.45; }
.filter-buttons { display: grid; gap: 8px; }
.filter-button { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 11px 12px; border: 1px solid transparent; border-radius: 7px; color: var(--ink); background: var(--paper); font-size: .83rem; font-weight: 750; text-align: left; }
.filter-button:hover { border-color: var(--line-strong); background: var(--white); }
.filter-button[aria-pressed="true"] { color: var(--white); background: var(--ink); }
.filter-button span { color: inherit; font-size: .75rem; opacity: .72; }
.listing-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; margin-bottom: 21px; }
.listing-intro h2 { margin: 0; font-size: clamp(1.9rem, 3vw, 2.8rem); }
.filter-count { margin: 0; color: var(--muted); font-size: .82rem; white-space: nowrap; }
.vehicle-types { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 17px; }
.vehicle-type {
  display: flex;
  min-height: 252px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 4px 0 rgba(10,25,35,.02);
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}
.vehicle-type:hover { box-shadow: var(--shadow-small); transform: translateY(-3px); }
.vehicle-type[hidden] { display: none; }
.vehicle-icon { position: relative; width: 74px; height: 39px; margin-bottom: auto; border: 3px solid var(--blue-deep); border-radius: 16px 23px 9px 9px; }
.vehicle-icon::before, .vehicle-icon::after { position: absolute; bottom: -10px; width: 15px; height: 15px; content: ""; border: 3px solid var(--ink); border-radius: 50%; background: var(--white); }
.vehicle-icon::before { left: 9px; }
.vehicle-icon::after { right: 7px; }
.vehicle-icon.sedan { height: 31px; border-radius: 20px 35px 7px 7px; }
.vehicle-icon.truck { width: 80px; border-radius: 13px 10px 8px 8px; }
.vehicle-icon.truck::after { right: 4px; }
.vehicle-icon.van { width: 80px; height: 42px; border-radius: 24px 11px 8px 8px; }
.vehicle-type .card-kicker { margin-bottom: 7px; }
.vehicle-type h3 { margin-bottom: 9px; font-size: 1.6rem; }
.vehicle-type p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.5; }
.inventory-note { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; margin-top: 26px; padding: 21px 23px; border-left: 4px solid var(--blue); background: #e9f7fc; }
.inventory-note strong { font-size: .94rem; }
.inventory-note p { margin: 3px 0 0; color: #3f5964; font-size: .85rem; line-height: 1.5; }
.inventory-links { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; }
.inventory-note .button { min-height: 40px; padding: 9px 12px; white-space: nowrap; }
.inventory-links .text-link { white-space: nowrap; }

.accent-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 20px; }
.accent-statement { display: flex; min-height: 330px; flex-direction: column; justify-content: space-between; padding: 31px; color: var(--white); background: var(--blue-deep); }
.accent-statement .eyebrow { color: #c6f1ff; }
.accent-statement h2 { margin: 0; font-size: clamp(2.15rem, 4vw, 3.45rem); }
.accent-statement p { max-width: 300px; margin: 25px 0 0; color: #d7eff9; font-size: .91rem; }
.fact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fact-card { min-height: 155px; padding: 27px; border: 1px solid var(--line); background: var(--white); }
.fact-card .fact-number { margin-bottom: 14px; color: var(--red); font-size: 1.08rem; font-weight: 900; letter-spacing: -.04em; }
.fact-card h3 { margin-bottom: 7px; font-size: 1.18rem; }
.fact-card p { margin: 0; color: var(--muted); font-size: .83rem; line-height: 1.5; }

.protection-flow { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.protection-step { position: relative; min-height: 213px; padding: 24px 19px; border-top: 3px solid var(--blue); background: var(--white); }
.protection-step::after { position: absolute; top: 29px; right: -8px; z-index: 2; width: 16px; height: 16px; content: ""; transform: rotate(45deg); background: var(--white); }
.protection-step:last-child::after { display: none; }
.protection-step span { display: block; margin-bottom: 25px; color: var(--blue-deep); font-size: .65rem; font-weight: 900; letter-spacing: .14em; }
.protection-step h3 { margin-bottom: 8px; font-size: 1.25rem; }
.protection-step p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }

.accordion-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(30px, 7vw, 100px); align-items: start; }
.accordion-intro h2 { max-width: 450px; }
.accordion-intro .lead { margin-bottom: 20px; }
.accordions { border-top: 1px solid var(--line-strong); }
details { border-bottom: 1px solid var(--line-strong); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 2px; color: var(--ink); cursor: pointer; font-weight: 800; letter-spacing: -.02em; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { flex: 0 0 auto; width: 23px; height: 23px; content: "+"; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--blue-deep); font-size: 1.15rem; font-weight: 400; line-height: 19px; text-align: center; }
details[open] summary::after { content: "–"; color: var(--white); border-color: var(--ink); background: var(--ink); }
details p { max-width: 650px; margin: -3px 0 23px; color: var(--muted); font-size: .9rem; line-height: 1.64; }

.finance-stages { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.finance-stage { min-height: 234px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.finance-stage .stage-index { display: inline-grid; width: 32px; height: 32px; place-items: center; margin-bottom: 27px; border-radius: 50%; color: var(--blue-deep); background: #e6f7fe; font-size: .73rem; font-weight: 900; }
.finance-stage h3 { margin-bottom: 10px; font-size: 1.34rem; }
.finance-stage p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.55; }
.finance-disclaimer { margin-top: 22px; padding: 18px 21px; border: 1px solid #d5e7ee; color: #42606d; background: #eefaff; font-size: .82rem; line-height: 1.55; }
.finance-disclaimer strong { color: var(--ink); }

.visit-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(30px, 7vw, 86px); align-items: start; }
.visit-card { position: relative; padding: clamp(29px,4vw,45px); overflow: hidden; border-radius: var(--radius); color: var(--white); background: var(--ink); }
.visit-card::after { position: absolute; top: -95px; right: -100px; width: 310px; height: 310px; content: ""; border: 1px solid rgba(117,230,189,.28); border-radius: 50%; }
.visit-card > * { position: relative; z-index: 1; }
.visit-card .eyebrow { color: #9edfff; }
.visit-card h2 { font-size: clamp(2.1rem,3.5vw,3.2rem); }
.contact-lines { display: grid; gap: 18px; margin: 31px 0; }
.contact-line { display: grid; gap: 3px; }
.contact-line span { color: #91acc0; font-size: .65rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.contact-line strong, .contact-line a { color: var(--white); font-size: 1rem; font-weight: 700; line-height: 1.35; }
.contact-line a:hover { color: var(--mint); }
.visit-card .button { margin-top: 4px; }

.form-wrap { padding: clamp(26px, 4vw, 44px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-small); }
.form-wrap h2 { margin-bottom: 11px; font-size: clamp(1.9rem,3vw,2.8rem); }
.form-wrap > p { max-width: 550px; margin-bottom: 25px; color: var(--muted); font-size: .9rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #39505d; font-size: .75rem; font-weight: 850; letter-spacing: .02em; }
.field input, .field textarea { width: 100%; padding: 12px 13px; border: 1px solid var(--line-strong); border-radius: 6px; color: var(--ink); background: var(--white); }
.field textarea { min-height: 122px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--blue-deep); outline: 2px solid rgba(47,175,231,.18); outline-offset: 1px; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 20px; }
.form-note { max-width: 330px; margin: 0; color: var(--muted); font-size: .71rem; line-height: 1.45; }
.form-message { margin-top: 24px; padding: 13px 15px; border-left: 4px solid var(--mint); color: #164737; background: #e9fff5; font-size: .86rem; font-weight: 650; }
.form-message[hidden] { display: none; }

.hours { display: grid; grid-template-columns: max-content 1fr; gap: 8px 20px; margin: 23px 0 0; }
.hours dt { color: #47606d; font-size: .79rem; font-weight: 800; }
.hours dd { margin: 0; color: var(--ink); font-size: .82rem; }
.hours-note { margin: 16px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.5; }

.location-bar { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 25px; padding: 27px 30px; border: 1px solid var(--line); background: var(--white); }
.location-bar strong { display: block; margin-bottom: 4px; font-size: 1.08rem; letter-spacing: -.035em; }
.location-bar p { margin: 0; color: var(--muted); font-size: .86rem; }

.site-footer { color: #c4d1d7; background: #06131b; }
.footer-main { display: grid; grid-template-columns: 1.3fr repeat(3, .8fr); gap: 34px; padding: 56px 0 42px; }
.footer-brand .brand { color: var(--white); }
.footer-brand p { max-width: 220px; margin: 18px 0 0; color: #8fa4ae; font-size: .78rem; line-height: 1.55; }
.footer-heading { display: block; margin-bottom: 14px; color: #dceaf0; font-size: .65rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.footer-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.footer-list li, .footer-list a { color: #96aab4; font-size: .81rem; line-height: 1.45; }
.footer-list a:hover { color: var(--mint); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 19px 0 26px; border-top: 1px solid rgba(214,236,244,.15); color: #80959f; font-size: .7rem; }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 1020px) {
  .primary-nav { gap: 17px; }
  .nav-phone { display: none; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(370px, .85fr); }
  .trust-inner { grid-template-columns: 1.3fr repeat(3, 1fr); }
  .filter-layout { grid-template-columns: 215px 1fr; gap: 25px; }
  .protection-flow { grid-template-columns: 1fr 1fr; }
  .protection-step::after { display: none; }
}

@media (max-width: 820px) {
  .utility-inner, .shell { width: min(calc(100% - 36px), var(--max)); }
  .utility-inner { min-height: 38px; }
  .utility-inner span:last-child { display: none; }
  .header-inner { min-height: 70px; }
  .nav-toggle { display: inline-grid; place-items: center; margin-left: auto; }
  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    max-height: 0;
    padding: 0 18px;
    overflow: hidden;
    visibility: hidden;
    border-bottom: 1px solid transparent;
    background: var(--white);
    opacity: 0;
    transition: max-height .26s ease, padding .26s ease, opacity .18s ease, visibility .26s;
  }
  .primary-nav.is-open { max-height: 420px; padding: 10px 18px 20px; visibility: visible; border-color: var(--line); opacity: 1; box-shadow: 0 18px 30px rgba(7,22,31,.12); }
  .primary-nav > a:not(.nav-phone) { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .96rem; }
  .primary-nav > a:not(.nav-phone)::after { display: none; }
  .nav-phone { display: inline-flex; justify-self: start; min-height: 48px; align-items: center; margin-top: 22px; padding: 11px 16px; border: 1px solid var(--red); border-radius: 8px; color: var(--white); background: var(--red); font-size: .88rem; text-decoration: none; }
  .nav-phone:hover { color: var(--white); background: var(--red-dark); }
  .hero-inner { min-height: 0; grid-template-columns: 1fr; padding: 60px 0 70px; }
  .hero-copy { max-width: 640px; }
  .hero-visual { min-height: 370px; }
  .hero-photo { right: 0; left: 4%; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-intro { grid-column: 1 / -1; padding: 25px 0 9px; }
  .trust-item:nth-child(2) { border-left: 0; }
  .section-heading, .feature-split, .accordion-layout, .visit-grid { grid-template-columns: 1fr; }
  .section-heading { display: grid; align-items: start; margin-bottom: 33px; }
  .listing-grid { grid-template-columns: 1fr 1fr; }
  .feature-split { gap: 48px; }
  .feature-split > div:first-child { max-width: 600px; }
  .cta-panel { grid-template-columns: 1fr; }
  .filter-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .filter-buttons { grid-template-columns: repeat(4,1fr); }
  .filter-button { display: grid; justify-items: start; gap: 3px; min-height: 65px; }
  .finance-stages { grid-template-columns: 1fr; }
  .finance-stage { min-height: 0; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-main > :last-child { grid-column: 2; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .utility-inner, .shell { width: min(calc(100% - 28px), var(--max)); }
  .utility-inner { font-size: .7rem; }
  .utility-inner a { white-space: nowrap; }
  .brand { font-size: .91rem; }
  .brand-mark { width: 30px; height: 34px; font-size: .9rem; }
  .brand-copy small { font-size: .51rem; }
  h1 { font-size: clamp(2.65rem, 13vw, 3.75rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 2.85rem); }
  .hero-inner { gap: 31px; padding: 48px 0 55px; }
  .hero-actions, .hero-actions .button, .hero-actions .phone-link { width: 100%; }
  .hero-actions .button, .hero-actions .phone-link { min-height: 50px; }
  .hero-actions .phone-link { justify-content: center; padding: 11px 16px; border: 1px solid rgba(255,255,255,.62); border-radius: 8px; text-decoration: none; }
  .hero-visual { min-height: 300px; }
  .hero-photo { inset: 0 0 14px 0; }
  .hero-assurance { width: calc(100% - 16px); padding: 15px 16px; }
  .photo-disclosure { right: 7px; bottom: 8px; max-width: 170px; font-size: .59rem; }
  .trust-inner { grid-template-columns: 1fr; padding: 11px 0; }
  .trust-intro { padding: 14px 0 13px; }
  .trust-item { min-height: 86px; padding: 15px 0; border-top: 1px solid var(--line); border-left: 0; }
  .trust-item:nth-child(2) { border-top: 1px solid var(--line); }
  .section { padding: 62px 0; }
  .section-tight { padding: 52px 0; }
  .listing-grid, .steps, .vehicle-types, .fact-cards { grid-template-columns: 1fr; }
  .listing-card { min-height: 0; }
  .tile-grid { grid-template-columns: 1fr; }
  .feature-image { grid-column: auto; min-height: 215px; }
  .steps { gap: 28px; }
  .step::before { margin-bottom: 17px; }
  .cta-panel { gap: 30px; padding: 28px 23px; border-radius: 11px; }
  .cta-panel .button, .cta-panel .phone-link { width: 100%; }
  .cta-panel .phone-link { justify-content: center; min-height: 50px; padding: 11px 16px; border: 1px solid rgba(255,255,255,.62); border-radius: 8px; text-decoration: none; }
  .page-hero-inner { padding: 62px 0 58px; }
  .page-hero h1 { font-size: clamp(2.75rem, 13.5vw, 4.1rem); }
  .page-hero-meta { display: grid; gap: 9px; margin-top: 27px; }
  .filter-buttons { grid-template-columns: 1fr 1fr; }
  .listing-intro { display: grid; align-items: start; }
  .filter-count { white-space: normal; }
  .vehicle-type { min-height: 224px; }
  .inventory-note { grid-template-columns: 1fr; gap: 13px; padding: 19px; }
  .inventory-links { align-items: flex-start; flex-direction: column; gap: 12px; }
  .inventory-note .button { width: fit-content; }
  .accent-grid { grid-template-columns: 1fr; }
  .accent-statement { min-height: 280px; }
  .protection-flow { grid-template-columns: 1fr; }
  .protection-step { min-height: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-footer, .location-bar, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .form-footer .button, .location-bar .button { width: 100%; }
  .form-wrap, .visit-card { border-radius: 11px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 29px 20px; padding: 42px 0 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main > :last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
/* Desktop phone numbers remain readable text; mobile restores tap-to-call. */
@media (min-width: 768px) {
  a[data-phone-desktop="true"] {
    display: inline !important;
    color: inherit !important;
    background: transparent !important;
    border: 0 !important;
    border-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font: inherit !important;
    letter-spacing: inherit !important;
    line-height: inherit !important;
    text-decoration: none !important;
    text-transform: none !important;
    padding: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    pointer-events: none !important;
    cursor: default !important;
  }
  a[data-phone-desktop="true"]::before,
  a[data-phone-desktop="true"]::after,
  a[data-phone-desktop="true"] [aria-hidden="true"] {
    content: none !important;
    display: none !important;
  }
}

/* Small-screen polish: give the white header a quiet frame and keep utility/nav copy from colliding. */
body { overflow-x: clip; }
.site-header { box-shadow: 0 4px 18px rgba(8, 25, 35, .07); }
@media (max-width: 820px) {
  .nav-toggle {
    border-color: rgba(10, 25, 35, .22);
    background: var(--sand);
    box-shadow: 0 2px 8px rgba(8, 25, 35, .06);
  }
  .primary-nav > a,
  .listing-card > *,
  .footer-main > * { min-width: 0; }
  .primary-nav > a,
  .listing-card a,
  .footer-main a,
  .footer-main p { overflow-wrap: anywhere; }
}
@media (max-width: 390px) {
  .utility-inner > span { display: none; }
  .utility-inner { justify-content: center; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > * { grid-column: auto; }
}
