/* =========================================================
   NOVA MOTORS — Shared base CSS
   Brand spec: warm-modern used-car dealership
   Display: Bebas Neue · Italic accent: Cormorant Garamond · Body: Inter
   Accent: #c8102e (single-accent system)
   ========================================================= */

:root {
  --bg: #ffffff;
  --bg-2: #f7f7f7;
  --bg-3: #efefef;
  --surface: #ffffff;
  --line: #e5e5e5;
  --line-2: #efefef;
  --ink: #0a0a0a;
  --ink-2: #2a2a2a;
  --ink-3: #6a6a6a;
  --red: #c8102e;
  --red-2: #ff2e4a;
  --accent: var(--red);
  --display: 'Bebas Neue', 'Impact', sans-serif;
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }

.container { width: min(1320px, 92vw); margin: 0 auto; }
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.scrolled {
  padding: 14px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
@media (prefers-reduced-motion: reduce) {
  .site-header { transition: none; }
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 52px; position: relative; }
.nav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__logo img { height: 48px; width: auto; max-width: 200px; }
.nav__links { display: flex; gap: clamp(14px, 2vw, 28px); align-items: center; flex: 1; justify-content: center; flex-wrap: nowrap; }
.nav__link {
  position: relative;
  font-size: 13px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 0;
  color: var(--ink-2);
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: var(--red);
  transition: width 0.4s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--ink); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__cta {
  padding: 12px 22px;
  background: var(--red); color: #fff;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  white-space: nowrap;
}
.nav__cta:hover { transform: translateY(-2px); }
.nav__mob { display: none; }
@media (max-width: 960px) {
  .nav__links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    z-index: 100;
  }
  .nav--open .nav__links { display: flex; }
  .nav--open .nav__link { padding: 14px 12px; border-bottom: 1px solid var(--line-2); }
  .nav--open .nav__link:last-child { border-bottom: none; }
  .nav__cta { display: none; }
  .nav--open .nav__cta { display: inline-flex; justify-content: center; margin-top: 8px; }
  .nav__mob { display: block; padding: 8px; cursor: pointer; color: var(--ink); }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding: 0 0 clamp(60px, 8vw, 120px);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 35%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 60%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - clamp(32px, 6vw, 80px)));
  margin-left: auto; margin-right: auto;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 28px;
  color: #fff;
  background: rgba(200, 16, 46, 0.18);
  border: 1px solid rgba(200, 16, 46, 0.5);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  color: #fff;
  margin-bottom: 32px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.hero__title em { font-style: italic; font-family: var(--serif); color: var(--red-2); font-weight: 500; }
.hero__sub {
  max-width: 540px;
  font-size: 16px; line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}
.hero__eyebrow, .hero__title, .hero__sub { transition: opacity 0.45s var(--ease); }
.hero__eyebrow.is-fading, .hero__title.is-fading, .hero__sub.is-fading { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__title, .hero__sub { transition: none; }
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px;
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { transform: translateY(-2px); background: var(--ink); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.4); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.7); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--red); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }

/* Hero slider dots */
.hero-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.hero-dots__dot { width: 32px; height: 3px; background: rgba(255, 255, 255, 0.3); border: none; cursor: pointer; transition: background 0.3s; padding: 0; }
.hero-dots__dot.active { background: #fff; }

/* =========================================================
   Section header
   ========================================================= */
.sec-head { margin-bottom: clamp(48px, 6vw, 80px); }
.sec-head__kicker {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  font-weight: 600;
}
.sec-head__kicker::before {
  content: ""; display: inline-block; width: 30px; height: 1px;
  background: var(--red); vertical-align: middle; margin-right: 14px;
}
.sec-head__title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--ink);
}
.sec-head__title em { font-style: italic; font-family: var(--serif); color: var(--red); font-weight: 500; }
.sec-head__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink-3);
  margin-top: 16px;
  max-width: 640px;
  line-height: 1.5;
}

/* =========================================================
   Featured vehicles (home page)
   ========================================================= */
.featured {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}
@media (max-width: 1100px) { .featured { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .featured { grid-template-columns: 1fr; } }

/* =========================================================
   Inventory card (shared between home + inventory)
   ========================================================= */
.inv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 600px) { .inv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .inv-grid { grid-template-columns: repeat(3, 1fr); } }

.inv-card {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.inv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.inv-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-3);
  overflow: hidden;
}
.inv-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.inv-card:hover .inv-card__media img { transform: scale(1.03); }
.photo-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, var(--bg-3) 0 12px, var(--bg-2) 12px 24px);
  color: var(--ink-3);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600;
}
.inv-card__body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.inv-card__title { font-family: var(--sans); font-size: 18px; font-weight: 800; line-height: 1.25; margin: 0; color: var(--ink); }
.inv-card__sub { font-size: 13px; color: var(--ink-3); margin: 4px 0 0; }
.inv-card__price { font-family: var(--sans); font-size: 26px; font-weight: 800; color: var(--red); line-height: 1; }
.inv-card__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.inv-card__fact { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; background: var(--surface); }
.inv-card__fact span { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.inv-card__fact strong { font-size: 13px; font-weight: 700; color: var(--ink); }
.inv-card__actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.inv-card__btn {
  display: flex; align-items: center; justify-content: center; width: 100%;
  padding: 13px 16px;
  border: none;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  text-align: center;
}
.inv-card__btn--primary { background: var(--ink); color: #fff; }
.inv-card__btn--primary:hover { background: var(--red); }
.inv-card__btn--outline { background: transparent; color: var(--ink); border: 1px solid rgba(0, 0, 0, 0.18); }
.inv-card__btn--outline:hover { border-color: var(--red); color: var(--red); }
.inv-card--compact .inv-card__body { gap: 8px; padding: 14px 16px 16px; }
.inv-card--compact .inv-card__title { font-size: 16px; }
.inv-card--compact .inv-card__btn { margin-top: auto; padding: 11px 14px; font-size: 11px; min-height: 42px; line-height: 1.3; }

/* =========================================================
   Filters (inventory page)
   ========================================================= */
.filters {
  display: flex; gap: 12px; flex-wrap: wrap;
  padding: 20px 0;
  margin-bottom: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.filters__label {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-3);
  margin-right: 4px;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}
.filters select {
  padding: 11px 16px;
  height: 44px;
  line-height: 1.2;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  font-size: 13px;
  font-family: inherit;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.3s var(--ease);
}
.filters select:hover { border-color: var(--red); }
.filters select:focus-visible { border-color: var(--red); }
.filters__count { margin-left: auto; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.filters__count b { color: var(--red); font-weight: 700; }
@media (max-width: 720px) { .filters__count { margin-left: 0; width: 100%; } }

/* =========================================================
   Welcome / About block
   ========================================================= */
.welcome { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.welcome__visual { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--bg-3); }
.welcome__visual img { width: 100%; height: 100%; object-fit: cover; }
.welcome__text p { color: var(--ink-2); font-size: 17px; line-height: 1.7; margin-bottom: 18px; max-width: 56ch; }
.welcome__text p.lead { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.45; color: var(--ink); margin-bottom: 24px; }
.welcome__signature { display: flex; align-items: center; gap: 16px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.welcome__signature .name { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink); }
.welcome__signature .role { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
@media (max-width: 900px) { .welcome { grid-template-columns: 1fr; gap: 40px; } }

/* =========================================================
   Stat band
   ========================================================= */
.statband { background: var(--bg-2); padding: clamp(60px, 8vw, 96px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statband__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 4vw, 48px); }
.stat__num { font-family: var(--display); font-size: clamp(48px, 6vw, 88px); line-height: 1; margin-bottom: 12px; color: var(--ink); }
.stat__num em { font-style: italic; font-family: var(--serif); color: var(--red); font-weight: 500; }
.stat__lbl { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
@media (max-width: 800px) { .statband__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

/* =========================================================
   Map + hours + contact block (home + dealership)
   ========================================================= */
.visitus { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: stretch; }
.visitus__map { background: var(--bg-3); border-radius: 12px; overflow: hidden; min-height: 460px; position: relative; }
.visitus__map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }
.visitus__info { display: flex; flex-direction: column; gap: 32px; }
.visitus__card { padding: 24px 28px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; }
.visitus__card h3 { font-family: var(--display); font-size: 22px; letter-spacing: 0.06em; margin-bottom: 16px; color: var(--ink); }
.visitus__hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.visitus__hours-row:last-child { border-bottom: none; }
.visitus__hours-row .day { color: var(--ink-3); font-weight: 500; }
.visitus__hours-row .time { color: var(--ink); font-weight: 600; }
.visitus__line { display: block; font-size: 15px; line-height: 1.6; color: var(--ink); margin-bottom: 6px; }
.visitus__line.muted { color: var(--ink-3); }
.visitus__line a:hover { color: var(--red); }
@media (max-width: 900px) { .visitus { grid-template-columns: 1fr; } .visitus__map { min-height: 360px; } }

/* =========================================================
   CTA strip
   ========================================================= */
.strip { background: var(--red); padding: clamp(72px, 10vw, 120px) 0; position: relative; overflow: hidden; text-align: center; color: #fff; }
.strip h2 { font-family: var(--display); font-size: clamp(40px, 6vw, 88px); line-height: 0.95; margin-bottom: 20px; }
.strip h2 em { font-style: italic; font-family: var(--serif); font-weight: 500; }
.strip p { color: rgba(255, 255, 255, 0.92); margin-bottom: 36px; font-size: 17px; max-width: 580px; margin-left: auto; margin-right: auto; }
.strip .btn--primary { background: #fff; color: var(--red); }
.strip .btn--primary:hover { background: var(--ink); color: #fff; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: clamp(60px, 7vw, 88px) 0 36px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: clamp(32px, 4vw, 60px); margin-bottom: 56px; }
.foot-brand img { height: 56px; margin-bottom: 18px; }
.foot-brand p { color: var(--ink-2); font-size: 14px; line-height: 1.7; max-width: 360px; }
.foot h4 { font-family: var(--display); font-size: 14px; letter-spacing: 0.2em; margin-bottom: 22px; }
.foot ul li { margin-bottom: 10px; color: var(--ink-2); font-size: 14px; }
.foot ul li a { transition: color 0.3s var(--ease); }
.foot ul li a:hover { color: var(--red); }
.foot__contact a { display: block; color: var(--ink); margin-bottom: 8px; font-size: 15px; font-weight: 500; }
.foot__contact a:hover { color: var(--red); }
.foot__addr { margin-top: 6px; color: var(--ink-2); font-size: 14px; line-height: 1.6; }
.foot__bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-3); letter-spacing: 0.08em; }
.foot__socials { display: flex; gap: 12px; }
.foot__socials a { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: border-color 0.3s var(--ease), color 0.3s var(--ease); color: var(--ink); }
.foot__socials a:hover { border-color: var(--red); color: var(--red); }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .foot-grid { grid-template-columns: 1fr; } .foot__bottom { flex-direction: column; gap: 8px; text-align: center; } }

/* =========================================================
   Forms
   ========================================================= */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: clamp(28px, 4vw, 44px); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 14px 16px;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s var(--ease);
  border-radius: 4px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 12px; color: var(--ink-3); margin-top: 16px; line-height: 1.6; }

/* =========================================================
   Loan calculator (finance page)
   ========================================================= */
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.calc__inputs .form-group input { font-size: 17px; }
.calc__result { padding: clamp(32px, 4vw, 48px); background: var(--ink); color: #fff; border-radius: 12px; }
.calc__result-label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); margin-bottom: 12px; font-weight: 600; }
.calc__result-num { font-family: var(--display); font-size: clamp(56px, 7vw, 96px); line-height: 1; color: #fff; margin-bottom: 20px; }
.calc__result-num em { font-style: italic; font-family: var(--serif); color: var(--red-2); font-weight: 500; }
.calc__breakdown { padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.18); display: grid; gap: 12px; }
.calc__breakdown div { display: flex; justify-content: space-between; font-size: 14px; color: rgba(255, 255, 255, 0.85); }
.calc__breakdown b { color: #fff; font-weight: 700; }
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }

/* =========================================================
   Service / Finance feature grid
   ========================================================= */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
.feature-tile {
  padding: clamp(24px, 3vw, 36px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.feature-tile:hover { border-color: var(--red); transform: translateY(-3px); }
.feature-tile__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200, 16, 46, 0.08);
  color: var(--red);
  border-radius: 8px;
  margin-bottom: 6px;
}
.feature-tile__icon svg { width: 22px; height: 22px; stroke: currentColor; }
.feature-tile h3 { font-family: var(--display); font-size: 24px; letter-spacing: 0.04em; }
.feature-tile p { color: var(--ink-2); font-size: 15px; line-height: 1.65; flex: 1; }
.feature-tile ul { margin-top: 6px; }
.feature-tile ul li { font-size: 14px; color: var(--ink-2); padding: 6px 0 6px 22px; position: relative; }
.feature-tile ul li::before { content: "—"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Page hero (used on inventory, finance, service, dealership)
   ========================================================= */
.page-hero { padding: 180px 0 100px; background: var(--bg-2); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--red);
}
.page-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  font-weight: 600;
}
.page-hero__title {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-bottom: 20px;
}
.page-hero__title em { font-style: italic; font-family: var(--serif); color: var(--red); font-weight: 500; }
.page-hero__sub { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2vw, 22px); color: var(--ink-3); max-width: 620px; line-height: 1.5; }

/* =========================================================
   Blog list (dealership page)
   ========================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
.blog-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08); }
.blog-card__media { aspect-ratio: 16/10; background: var(--bg-3); }
.blog-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card__date { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.blog-card__title { font-family: var(--display); font-size: 22px; line-height: 1.15; color: var(--ink); margin-top: 4px; }
.blog-card__excerpt { color: var(--ink-2); font-size: 14px; line-height: 1.65; flex: 1; }
.blog-card__more { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); font-weight: 600; margin-top: 8px; }
.blog-card__more::after { content: " →"; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Two-col content (used on finance/service/dealership)
   ========================================================= */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.two-col--reverse > :first-child { order: 2; }
.two-col__visual { border-radius: 12px; overflow: hidden; aspect-ratio: 4/5; background: var(--bg-3); }
.two-col__visual img { width: 100%; height: 100%; object-fit: cover; }
.two-col__text h2 { font-family: var(--display); font-size: clamp(36px, 5vw, 64px); line-height: 1; margin-bottom: 24px; color: var(--ink); }
.two-col__text h2 em { font-style: italic; font-family: var(--serif); color: var(--red); font-weight: 500; }
.two-col__text p { color: var(--ink-2); font-size: 16px; line-height: 1.7; margin-bottom: 18px; max-width: 56ch; }
.two-col__text .signature { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink); margin-top: 8px; }
.two-col__text .signature-role { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-top: 2px; }
@media (max-width: 900px) { .two-col, .two-col--reverse { grid-template-columns: 1fr; } .two-col--reverse > :first-child { order: 0; } }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   Utility
   ========================================================= */
.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; }

/* =========================================================
   Print
   ========================================================= */
@media print {
  .site-header, .site-footer, .hero__ctas, .strip, .nav__cta, .ff-banner, .inv-card__new, .inv-card__heart { display: none !important; }
  body { font-size: 12pt; }
}

/* =========================================================
   Live inventory (FlashFender)
   ========================================================= */
.ff-banner { background: #fff7e0; border-bottom: 1px solid #f0d990; color: #5a4500; font: 500 13px/1.55 Inter, system-ui, sans-serif; padding: 12px 0; }
.ff-banner code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; background: rgba(0,0,0,.06); padding: 1px 6px; border-radius: 3px; font-size: 12px; color: #3a2c00; }
.ff-banner__msg { display: inline-block; max-width: calc(100% - 40px); }
.ff-banner__close { float: right; background: transparent; border: 0; color: inherit; font-size: 22px; line-height: 1; padding: 0 4px; cursor: pointer; }
.ff-banner__close:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 2px; }
.ff-banner--warn { background: #fff0e0; border-color: #ffc890; color: #7a3500; }
.ff-banner--warn code { color: #4a1f00; }
@media (max-width: 600px) { .ff-banner__msg { max-width: 100%; padding-right: 24px; } }

.inv-grid.is-loading, .featured.is-loading { opacity: 0.45; pointer-events: none; transition: opacity .25s ease; }
.inv-grid.is-loaded, .featured.is-loaded { opacity: 1; }

.inv-card__new { position: absolute; top: 12px; left: 12px; padding: 5px 10px; background: var(--red); color: #fff; font: 700 11px/1 Inter, system-ui, sans-serif; letter-spacing: .12em; text-transform: uppercase; border-radius: 2px; z-index: 3; box-shadow: 0 2px 8px rgba(200,16,46,.25); }
.inv-card__new::before { content: ""; display: inline-block; width: 6px; height: 6px; background: #fff; border-radius: 50%; margin-right: 6px; vertical-align: middle; animation: invNewPulse 2s ease-in-out infinite; }
@keyframes invNewPulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { .inv-card__new::before { animation: none; opacity: 1; } }

.inv-empty { padding: clamp(40px, 6vw, 64px) 16px; text-align: center; color: var(--ink-3); font: 500 15px/1.5 Inter, system-ui, sans-serif; border: 1px dashed var(--line); border-radius: 8px; margin: 24px 0; }
