/* ================================
   ANGLER MOTORS — style.css
   Warm American · Bold · Trustworthy
   ================================ */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; font: inherit; cursor: pointer; }

/* ===== VARIABLES ===== */
:root {
  --red:       #c8221e;
  --red-dark:  #a61a16;
  --red-light: rgba(200,34,30,.12);
  --red-glow:  rgba(200,34,30,.28);
  --navy:      #111827;
  --navy-2:    #1c2636;
  --navy-3:    #243044;
  --cream:     #faf7f2;
  --cream-2:   #f2ede4;
  --white:     #ffffff;
  --text:      #1c2636;
  --muted:     #6b7280;
  --border:    #e5ddd0;
  --gold:      #d4960a;
  --nav-h:     70px;
  --ease:      cubic-bezier(.4,0,.2,1);
}

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
/* Reserve space for sticky bottom CTA so it never covers content */
@media (max-width: 900px) {
  body { padding-bottom: 84px; }
  html { scroll-padding-bottom: 84px; }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--red);
  z-index: 9999;
  pointer-events: none;
  transition: none;
}

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 { margin-bottom: 16px; }
.section-sub {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .01em;
  color: var(--navy);
  text-transform: uppercase;
}
h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.text-red { color: var(--red); }

/* ===== SCROLL REVEAL ===== */
.reveal-up, .reveal-fade, .reveal-right {
  opacity: 0;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal-up    { transform: translateY(28px); }
.reveal-fade  { transform: none; }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible,
.reveal-fade.visible,
.reveal-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn--red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 12px var(--red-glow);
}
.btn--red:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 24px var(--red-glow);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--navy);
  background: var(--cream-2);
}
.btn--lg { padding: 16px 32px; font-size: 1.0625rem; }

/* ================================
   NAVIGATION
   ================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-right: auto;
}
.nav__logo-small {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.nav__logo-big {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.nav__links a:hover { color: #fff; }
.nav__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s, box-shadow .2s;
}
.nav__phone:hover {
  background: var(--red-dark);
  box-shadow: 0 4px 16px var(--red-glow);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.nav__drawer.open { opacity: 1; pointer-events: all; }
.nav__drawer a {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  transition: color .2s;
}
.nav__drawer a:hover { color: var(--red); }
.drawer__call {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red) !important;
  padding: 16px 36px;
  border-radius: 4px;
  margin-top: 8px;
  font-size: 1.375rem !important;
}

/* ================================
   HERO
   ================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
}
.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.hero__img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(11,16,28,.96) 0%,
      rgba(11,16,28,.86) 38%,
      rgba(11,16,28,.62) 70%,
      rgba(11,16,28,.45) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(11,16,28,.35) 0%,
      rgba(11,16,28,0) 30%,
      rgba(11,16,28,0) 70%,
      rgba(11,16,28,.55) 100%
    );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: var(--nav-h) 28px 110px;
}
.hero .eyebrow {
  color: var(--gold);
  margin-bottom: 16px;
}
.hero__h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  max-width: 980px;
  text-wrap: balance;
}
.hero__accent { color: var(--red); }
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Ticker */
.hero__ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  overflow: hidden;
  background: var(--red);
  padding: 12px 0;
  border-top: 2px solid rgba(255,255,255,.15);
}
.hero__ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.hero__ticker-track span {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  flex-shrink: 0;
}
.hero__ticker-track .dot {
  color: rgba(255,255,255,.4);
  font-size: .5rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================
   STATS
   ================================ */
.stats {
  background: var(--navy);
  padding: 0;
}
.stats__row {
  display: flex;
  align-items: stretch;
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px 20px;
  text-align: center;
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat:last-child { border-right: none; }
.stat__div { display: none; }
.stat__n {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -.01em;
}
.stat__l {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ================================
   WE ARE THE BANK
   ================================ */
.bank {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.bank__bg {
  position: absolute;
  inset: 0;
}
.bank__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.18) saturate(.6);
}
.bank__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,.96) 0%, rgba(28,38,54,.88) 100%);
}
.bank__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.bank__h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  color: #fff;
  margin-bottom: 28px;
}
.bank__body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 480px;
}
.bank__body + .btn { margin-top: 12px; }

.bank__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bank__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .25s, background .25s;
}
.bank__card:hover {
  border-color: rgba(200,34,30,.4);
  background: rgba(200,34,30,.07);
}
.bank__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--red-light);
  border-radius: 50%;
  color: var(--red);
  flex-shrink: 0;
}
.bank__card strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.bank__card span {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

/* ================================
   HOW IT WORKS
   ================================ */
.how {
  background: var(--cream-2);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.how__step {
  flex: 1;
  text-align: center;
  padding: 40px 32px;
}
.how__num {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(200,34,30,.1);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.04em;
}
.how__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  background: var(--red-light);
  border: 1.5px solid rgba(200,34,30,.2);
  border-radius: 50%;
  color: var(--red);
  margin: 0 auto 18px;
}
.how__step p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}
.how__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  color: var(--border);
  flex-shrink: 0;
}

/* ================================
   INVENTORY
   ================================ */
.inventory {
  background: var(--cream);
  padding: 100px 0;
}
.inv__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 12px;
  margin-bottom: 48px;
}
.inv__photo {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
  height: 280px;
}
.inv__photo--tall { height: 320px; }
.inv__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  transition: transform .6s var(--ease);
}
.inv__photo:hover img { transform: scale(1.03); }
.inv__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 18px 16px;
  background: linear-gradient(to top, rgba(17,24,39,.85), transparent);
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.inv__cta {
  text-align: center;
}
.inv__cta p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: .9375rem;
}

/* ================================
   ABOUT
   ================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--navy);
}
.about__photo {
  position: relative;
  overflow: hidden;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about__content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about .eyebrow { color: var(--gold); }
.about h2 { color: #fff; margin-bottom: 20px; }
.about__lead {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 36px;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}
.trust-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: rgba(200,34,30,.15);
  border-radius: 50%;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-list__item strong {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.trust-list__item span {
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

/* ================================
   REVIEWS
   ================================ */
.reviews {
  background: var(--cream-2);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .25s, transform .25s;
}
.review:hover {
  box-shadow: 0 8px 32px rgba(17,24,39,.1);
  transform: translateY(-3px);
}
.review__stars {
  color: var(--gold);
  font-size: 1.0625rem;
  letter-spacing: .05em;
}
.review p {
  font-size: .9375rem;
  line-height: 1.65;
  color: #374151;
  flex: 1;
}
.review p strong { color: var(--navy); }
.review__from {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.review__init {
  width: 36px; height: 36px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  color: var(--red);
  flex-shrink: 0;
}
.review__from strong {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
}
.review__from span {
  font-size: .75rem;
  color: var(--muted);
}
/* Photo review */
.review--photo {
  padding: 0;
  overflow: hidden;
  min-height: 260px;
  position: relative;
}
.review--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.review--photo:hover img { transform: scale(1.04); }
.review__photo-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 20px 16px;
  background: linear-gradient(to top, rgba(17,24,39,.85), transparent);
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}

/* ================================
   HOURS
   ================================ */
.hours {
  background: var(--cream);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.hours__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hours h2 { color: var(--navy); margin-bottom: 16px; }
.hours__sub {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
  font-size: .9375rem;
}
.hours__status { margin-bottom: 24px; }
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hours-badge--open {
  background: rgba(22,163,74,.1);
  border: 1px solid rgba(22,163,74,.25);
  color: #16a34a;
}
.hours-badge--closed {
  background: var(--cream-2);
  border: 1px solid var(--border);
  color: var(--muted);
}
.hours-badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
}
.hours-badge--open  .hours-badge__dot { background: #16a34a; }
.hours-badge--closed .hours-badge__dot { background: var(--muted); }

.hours__table {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #fff;
}
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  font-size: .9375rem;
  border-bottom: 1px solid var(--border);
}
.hours__row:last-child { border-bottom: none; }
.hours__row span:first-child { color: var(--muted); font-weight: 500; }
.open  { color: #16a34a; font-weight: 700; font-size: .875rem; }
.closed { color: #9ca3af; font-weight: 500; font-size: .875rem; }

.hours__addr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: .9rem;
  color: var(--text);
}
.hours__addr svg { color: var(--red); flex-shrink: 0; }
.hours__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hours__map {
  height: 480px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(17,24,39,.1);
  background: var(--cream-2);
}
.hours__map iframe { display: block; }

/* ================================
   FINAL CTA STRIP
   ================================ */
.cta-strip {
  background: var(--red);
  padding: 90px 24px;
  text-align: center;
}
.cta-strip__inner {
  max-width: 700px;
  margin: 0 auto;
}
.cta-strip__label {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 16px;
}
.cta-strip__number {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
  transition: opacity .2s;
}
.cta-strip__number:hover { opacity: .85; }
.cta-strip__hours {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background: var(--navy);
  border-top: 2px solid var(--red);
  padding: 60px 0 32px;
}
.footer__inner {
  display: flex;
  gap: 80px;
  margin-bottom: 48px;
}
.footer__brand { flex: 1; }
.footer__name-small {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 2px;
}
.footer__name-big {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.footer__tagline {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
}
.footer__cols {
  display: flex;
  gap: 60px;
}
.footer__col-head {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 12px;
}
.footer__cols p, .footer__cols a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}
.footer__cols a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer__bottom a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer__bottom a:hover { color: #fff; }

/* ================================
   MOBILE STICKY CALL
   ================================ */
.sticky-cta {
  display: block;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 10px 24px;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(192,57,43,0.3);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta__label {
  display: flex;
  flex-direction: column;
}
.sticky-cta__tag {
  font-size: .65rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: 'Nunito Sans', sans-serif;
}
.sticky-cta__number {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
}
.sticky-cta__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.sticky-cta__btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.sticky-cta__btn--call {
  background: var(--red);
  color: #fff;
}
.sticky-cta__btn--call:hover { background: var(--red-dark); }
.sticky-cta__btn--dir {
  background: transparent;
  color: #ccc;
  border: 1px solid #333;
}
.sticky-cta__btn--dir:hover { border-color: #555; color: #fff; }

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
  .bank__inner { grid-template-columns: 1fr; gap: 48px; }
  .bank__cards { grid-template-columns: repeat(2, 1fr); }
  .bank__body { max-width: 100%; }

  .about { grid-template-columns: 1fr; }
  .about__photo { height: 420px; }
  .about__content { padding: 60px 40px; }

  .inv__grid { grid-template-columns: 1fr 1.4fr 1fr; }

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

  .hours__inner { grid-template-columns: 1fr; }
  .hours__map { height: 360px; }

  .footer__inner { flex-direction: column; gap: 40px; }
  .footer__cols { gap: 40px; }
}

/* Burger nav kicks in earlier so iPad portrait (768px) doesn't cram the desktop links */
@media (max-width: 900px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .nav__drawer { display: flex; }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }

  /* --- Hero --- */
  .hero { min-height: 100svh; }
  .hero__h1 { font-size: clamp(2.4rem, 9.5vw, 4rem); }
  .hero__sub { font-size: 1rem; }
  .hero__btns {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 360px;
  }
  .hero__btns .btn {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  /* --- Stats --- */
  .stats__row { flex-wrap: wrap; }
  .stat { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  /* --- Bank --- */
  .bank { padding: 70px 0; }

  /* --- How it works --- */
  .how { padding: 70px 0; }
  .how__steps { flex-direction: column; align-items: center; }
  .how__arrow { padding-top: 0; transform: rotate(90deg); height: 40px; }
  .how__step { padding: 28px 20px; flex: 0 1 auto; width: auto; max-width: 360px; margin: 0 auto; }

  /* --- Inventory --- */
  .inventory { padding: 70px 0; }
  .inv__grid { grid-template-columns: 1fr; gap: 10px; }
  .inv__photo { height: 240px; }
  .inv__photo--tall { height: 260px; }
  .inv__cta .btn {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  /* --- About --- */
  .about__content { padding: 48px 24px; }

  /* --- Reviews --- */
  .reviews { padding: 70px 0; }
  .reviews__grid { grid-template-columns: 1fr; }
  .review--photo { min-height: 220px; }

  /* --- Hours --- */
  .hours { padding: 70px 0; }
  .hours__btns { flex-direction: column; }
  .hours__btns .btn {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  /* --- Section heads --- */
  .section-head { margin-bottom: 36px; }

  /* --- Footer --- */
  .footer__cols { flex-direction: column; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  /* body has padding-bottom for the sticky CTA, so footer just needs normal pad */
  .footer { padding-bottom: 32px; }

  /* --- Sticky CTA --- */
  .sticky-cta { padding: 10px 16px; }
  .sticky-cta__label { display: none; }
  .sticky-cta__actions { width: 100%; gap: 8px; }
  .sticky-cta__btn {
    flex: 1;
    justify-content: center;
    padding: 14px 12px;
    font-size: .9rem;
    min-height: 44px;
  }

  /* --- CTA strip --- */
  .cta-strip { padding: 72px 20px; }
  .cta-strip__hours {
    font-size: .8rem;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }

  /* --- Nav --- */
  .nav__inner { padding: 0 16px; gap: 0; }

  /* --- Hero --- */
  .hero__content { padding: 0 16px; padding-top: var(--nav-h); }
  .hero__btns { max-width: 100%; }

  /* --- Bank --- */
  .bank { padding: 56px 0; }
  .bank__cards { grid-template-columns: 1fr; }

  /* --- How --- */
  .how { padding: 56px 0; }

  /* --- Inventory --- */
  .inventory { padding: 56px 0; }
  .inv__photo { height: 200px; }

  /* --- About --- */
  .about__content { padding: 40px 16px; }

  /* --- Reviews --- */
  .reviews { padding: 56px 0; }

  /* --- Hours --- */
  .hours { padding: 56px 0; }
  .hours__map { height: 280px; }

  /* --- CTA strip --- */
  .cta-strip { padding: 56px 16px; }
  .cta-strip__number { font-size: 2.6rem; }
  .cta-strip__hours { font-size: .75rem; }

  /* --- Footer --- */
  .footer { padding: 48px 0 28px; }
  .footer__inner { gap: 28px; }

  /* --- Sticky CTA --- */
  .sticky-cta__btn { font-size: .85rem; padding: 13px 10px; }
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--red-glow); }
  50%       { box-shadow: 0 0 0 12px rgba(200,34,30,0); }
}
.hero__btns .btn--red {
  animation: heroPulse 2.5s ease-in-out 1.2s infinite;
}

@keyframes phoneGlow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50%       { text-shadow: 0 0 40px rgba(255,255,255,.3); }
}
.cta-strip__number {
  animation: phoneGlow 3s ease-in-out infinite;
}

/* ================================
   WHAT TO BRING
   ================================ */
.bring {
  background: var(--cream-2);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bring__head {
  text-align: center;
  margin-bottom: 48px;
}
.bring__head .eyebrow { margin-bottom: 10px; }
.bring__head h2 { margin: 0; }
.bring__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.bring__item {
  background: #fff;
  padding: 32px 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  text-align: left;
}
.bring__icon {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.bring__item h3 { margin-bottom: 8px; }
.bring__item p {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.6;
}
.bring__note {
  text-align: center;
  margin-top: 32px;
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .04em;
  font-weight: 500;
}
@media (max-width: 800px) {
  .bring { padding: 56px 0; }
  .bring__row { grid-template-columns: 1fr; gap: 16px; }
  .bring__item { padding: 24px 22px; }
  .bring__note { font-size: .95rem; padding: 0 12px; }
}

/* ================================
   MAKES & MODELS SEO TICKER
   ================================ */
.models {
  background: var(--navy);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.models__eyebrow {
  text-align: center;
  color: var(--gold);
  margin-bottom: 28px;
}
.models__ticker {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: var(--navy-2);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.models__track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 70s linear infinite;
}
.models__track span {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  flex-shrink: 0;
}
.models__track .dot {
  color: var(--red);
  font-size: .55rem;
}
.models__note {
  text-align: center;
  margin-top: 22px;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  padding: 0 16px;
}
.models__note a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
  font-weight: 600;
}
.models__note a:hover { color: var(--red); }
@media (max-width: 600px) {
  .models { padding: 40px 0 32px; }
  .models__track { gap: 20px; }
  .models__track span { font-size: .9rem; }
}

/* ================================
   REVIEWS CTA ROW
   ================================ */
.reviews__cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 48px;
}
@media (max-width: 600px) {
  .reviews__cta { margin-top: 32px; }
  .reviews__cta .btn { width: 100%; justify-content: center; }
}

/* ================================
   SUB-PAGES (FAQs, Service Area)
   ================================ */
.page-sub { background: var(--cream); }

/* --- Subhero --- */
.subhero {
  background: var(--navy);
  color: #fff;
  padding: calc(var(--nav-h) + 70px) 0 70px;
  position: relative;
  overflow: hidden;
}
.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 90% 10%, var(--red-light), transparent 70%),
    radial-gradient(40% 60% at 0% 100%, rgba(212,150,10,.08), transparent 70%);
  pointer-events: none;
}
.subhero .container { position: relative; z-index: 1; }
.subhero__crumb {
  font-family: 'Oswald', sans-serif;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
}
.subhero__crumb a {
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.subhero__crumb a:hover { color: #fff; border-color: var(--red); }
.subhero__h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: 22px;
  max-width: 760px;
}
.subhero__sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  max-width: 720px;
  margin-bottom: 28px;
}
.subhero__sub a {
  color: #fff;
  border-bottom: 2px solid var(--red);
  padding-bottom: 1px;
}
@media (max-width: 600px) {
  .subhero { padding: calc(var(--nav-h) + 48px) 0 56px; }
  .subhero__sub { font-size: 1rem; }
}

/* --- FAQ list --- */
.faq-section { padding: 80px 0 96px; }
.faq-container { max-width: 880px; }
.faq {
  border-top: 1px solid var(--border);
}
.faq:last-of-type { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 22px 4px 22px 0;
  min-height: 48px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--red);
  line-height: 1;
  transition: transform .25s var(--ease);
  flex-shrink: 0;
}
.faq[open] summary::after { content: "−"; transform: rotate(0deg); }
.faq summary:hover { color: var(--red); }
.faq p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 760px;
}
.faq p a {
  color: var(--red);
  border-bottom: 1px solid var(--red);
  font-weight: 600;
}
.faq p a:hover { background: var(--red-light); }
@media (max-width: 600px) {
  .faq-section { padding: 56px 0 72px; }
  .faq summary { font-size: 1.02rem; gap: 16px; }
  .faq summary::after { font-size: 1.5rem; }
  .faq p { font-size: .96rem; }
}

/* --- Service Area page --- */
.areas { padding: 80px 0 64px; }
.areas__group { margin-bottom: 56px; }
.areas__h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.areas__sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 22px;
}
.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 16px;
}
.areas__grid li {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 14px 18px;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  border-radius: 3px;
}
.areas__cta {
  background: var(--navy);
  color: #fff;
  padding: 40px 32px;
  border-radius: 8px;
  text-align: center;
  margin-top: 16px;
}
.areas__cta h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.areas__cta p {
  color: rgba(255,255,255,.78);
  margin-bottom: 22px;
}
.areas__cta p a {
  color: #fff;
  border-bottom: 1px solid var(--red);
  font-weight: 600;
}
@media (max-width: 900px) {
  .areas__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .areas { padding: 56px 0 40px; }
  .areas__grid { grid-template-columns: repeat(2, 1fr); gap: 8px 10px; }
  .areas__grid li { padding: 12px 14px; font-size: .85rem; }
  .areas__cta { padding: 32px 22px; }
}

/* --- Why Drive --- */
.whydrive {
  background: var(--cream-2);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.whydrive__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.whydrive__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.whydrive__list li {
  background: #fff;
  border-left: 3px solid var(--red);
  padding: 18px 22px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  border-radius: 3px;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.whydrive__list li strong {
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .whydrive { padding: 56px 0; }
  .whydrive__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* === Inventory cards === */
.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .vehicle-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (min-width: 1024px) {
  .vehicle-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
}
.vehicle-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(28,38,54,.06);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(28,38,54,.12);
}
.vehicle-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
  overflow: hidden;
}
.vehicle-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.vehicle-card:hover .vehicle-card__img img { transform: scale(1.04); }
.vehicle-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vehicle-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.15;
}
.vehicle-card__miles {
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.vehicle-card__note {
  color: var(--text);
  font-size: .98rem;
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}
.vehicle-card__tier {
  display: inline-block;
  align-self: flex-start;
  background: var(--red-light);
  color: var(--red-dark);
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.vehicle-card__btn {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  text-align: center;
}

/* === Pre-approval form === */
.preapprove-section {
  padding: 80px 0;
  background: var(--cream-2);
}
.preapprove {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(28,38,54,.06);
}
.preapprove label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
}
.preapprove__full { grid-column: 1 / -1; }
.preapprove input,
.preapprove textarea {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  min-height: 48px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.preapprove textarea {
  resize: vertical;
  min-height: 96px;
}
.preapprove input:focus,
.preapprove textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-light);
}
.preapprove__submit {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 240px;
  min-height: 52px;
}
.preapprove__success {
  grid-column: 1 / -1;
  background: rgba(34,160,90,.1);
  color: #1f6b40;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(34,160,90,.3);
  font-weight: 600;
  text-align: center;
}
@media (max-width: 640px) {
  .preapprove-section { padding: 56px 0; }
  .preapprove {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .preapprove__submit { width: 100%; min-width: 0; }
}

/* === BHPH Difference (3 bullet block) === */
.bhph-diff {
  padding: 80px 0;
  background: var(--white);
}
.bhph-diff__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .bhph-diff__list { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
}
.bhph-diff__item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 10px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bhph-diff__item strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--navy);
}
.bhph-diff__item span {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}
@media (max-width: 800px) {
  .bhph-diff { padding: 56px 0; }
}

/* === Reviews static line (replaces broken Google CTA) === */
.reviews__line {
  text-align: center;
  margin-top: 40px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--navy);
}

/* === Subhero CTA button === */
.subhero__cta {
  margin-top: 18px;
  min-height: 48px;
}
