/* ============================================================
   Manor Lakes Airport Transfers — Premium Design System
   Mobile-first · Navy + Gold · Minimal
   ============================================================ */

:root {
  /* Palette */
  --navy-950: #060d1a;
  --navy-900: #0a1628;
  --navy-800: #122441;
  --navy-700: #1e3a5f;
  --navy-600: #2d5489;
  --gold:     #d9a441;
  --gold-600: #c4922f;
  --gold-50:  #fdf8ee;
  --ink:      #1f2937;   /* charcoal text */
  --ink-soft: #4b5563;
  --muted:    #6b7280;
  --line:     #e5e7eb;
  --bg:       #fafbfc;
  --white:    #ffffff;
  --green:    #15803d;
  --green-50: #f0fdf4;

  /* Tokens */
  --radius:    16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(10,22,40,.06), 0 1px 2px rgba(10,22,40,.04);
  --shadow:    0 6px 24px rgba(10,22,40,.08);
  --shadow-lg: 0 20px 60px rgba(10,22,40,.14);
  --container: 1140px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold);
}
h1, h2, h3 { color: var(--navy-900); line-height: 1.2; letter-spacing: -.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 7vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 800; }
h3 { font-size: 1.05rem; font-weight: 700; }
.lead { font-size: 1.05rem; color: var(--ink-soft); }

.section { padding: 64px 0; }
.section--tight { padding: 48px 0; }
.section--alt { background: var(--white); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head p { color: var(--muted); margin: 8px 0 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; border-radius: 999px; border: 0; cursor: pointer;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--gold); color: var(--navy-950);
  box-shadow: 0 6px 20px rgba(217,164,65,.35);
}
.btn-primary:hover { background: var(--gold-600); box-shadow: 0 8px 26px rgba(217,164,65,.45); }
.btn-dark { background: var(--navy-900); color: #fff; }
.btn-dark:hover { background: var(--navy-800); }
.btn-ghost {
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; color: #fff; font-weight: 700;
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, #eebf6b 100%);
  color: var(--navy-950); display: grid; place-items: center; font-size: 1.1rem;
}
.brand-text { font-size: .98rem; line-height: 1.15; }
.brand-text small { display: block; font-size: .68rem; font-weight: 500; color: rgba(255,255,255,.55); letter-spacing: .12em; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: none; color: rgba(255,255,255,.85); text-decoration: none;
  font-weight: 600; font-size: .92rem; align-items: center; gap: 7px;
}
.nav-phone:hover { color: var(--gold); }
.nav .btn { padding: 10px 22px; font-size: .92rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 70% 0%, rgba(217,164,65,.14) 0%, transparent 55%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%);
  color: #fff;
  padding: 56px 0 72px;
}
.hero-grid { display: grid; gap: 44px; }
.hero h1 { color: #fff; }
.hero h1 .accent {
  background: linear-gradient(90deg, var(--gold) 0%, #f3d088 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { color: rgba(255,255,255,.78); max-width: 540px; margin: 14px 0 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.88);
  backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--gold); font-size: .95em; }

/* Vehicle hero card */
.hero-vehicle {
  background: linear-gradient(160deg, #1a2d4a 0%, #0d1b30 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 26px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-vehicle::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(217,164,65,.18), transparent 55%);
  pointer-events: none;
}
.hero-vehicle-img {
  aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255,255,255,.1), transparent 60%),
    linear-gradient(135deg, #2a3441 0%, #3d4a5c 50%, #2a3441 100%);
  display: grid; place-items: center; margin-bottom: 18px;
  position: relative;
}
.hero-vehicle-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-vehicle-img .ph { color: rgba(255,255,255,.35); font-size: 4rem; }
.hero-vehicle-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy-950);
  font-size: .7rem; font-weight: 800; letter-spacing: .06em;
  padding: 5px 12px; border-radius: 999px; text-transform: uppercase;
}
.hero-vehicle h3 { color: #fff; font-size: 1.15rem; margin-bottom: 2px; }
.hero-vehicle .sub { color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: 16px; }
.hero-vehicle .specs { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-vehicle .spec {
  font-size: .76rem; color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.07); padding: 5px 11px; border-radius: 6px;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--white); border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line);
}
.trust-item {
  background: var(--white); padding: 22px 16px; text-align: center;
}
.trust-item i {
  display: block; font-size: 1.4rem; color: var(--navy-700); margin-bottom: 8px;
}
.trust-item strong { display: block; font-size: .88rem; color: var(--navy-900); margin-bottom: 2px; }
.trust-item span { font-size: .78rem; color: var(--muted); }

/* ---------- Vehicle showcase ---------- */
.vehicle-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); overflow: hidden;
  max-width: 980px; margin: 0 auto;
  display: grid;
}
.vehicle-media {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(135deg, #2a3441 0%, #3d4a5c 50%, #2a3441 100%);
  min-height: 260px; display: grid; place-items: center; position: relative;
}
.vehicle-media img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-media .ph { color: rgba(255,255,255,.35); font-size: 5rem; }
.vehicle-body { padding: 30px 26px; }
.vehicle-body .eyebrow { margin-bottom: 8px; }
.vehicle-body h3 { font-size: 1.45rem; margin-bottom: 4px; }
.vehicle-body .variant { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
.vehicle-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.vehicle-chip {
  background: var(--gold-50); color: #8a6516;
  font-size: .78rem; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
}

/* Capacity panel — the critical clarity element */
.capacity {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; margin-bottom: 20px;
}
.capacity-head {
  background: #f8fafc; padding: 12px 18px;
  font-size: .82rem; font-weight: 700; color: var(--navy-800);
  display: flex; align-items: center; gap: 8px;
}
.capacity-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; border-top: 1px solid var(--line);
}
.capacity-row:first-of-type { border-top: 0; }
.capacity-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--navy-900); color: var(--gold);
  display: grid; place-items: center; font-size: 1.2rem;
}
.capacity-text strong { display: block; color: var(--navy-900); font-size: .95rem; }
.capacity-text span { font-size: .82rem; color: var(--muted); }
.capacity-foot {
  background: #f8fafc; padding: 10px 18px;
  font-size: .76rem; color: var(--muted); border-top: 1px solid var(--line);
}

/* ---------- Price comparison ---------- */
.compare {
  max-width: 780px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  border: 1px solid var(--line);
}
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 16px 18px; text-align: center; font-size: .92rem; }
.compare thead th {
  background: #f8fafc; font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: var(--muted);
}
.compare tbody tr { border-top: 1px solid var(--line); }
.compare tbody td:first-child {
  text-align: left; font-weight: 600; color: var(--navy-900);
}
.compare tbody td:first-child small {
  display: block; font-weight: 400; font-size: .78rem; color: var(--muted);
}
.compare .col-us {
  background: var(--gold-50); font-weight: 700; color: var(--navy-900);
  position: relative; vertical-align: middle;
}
.compare .col-us .lock {
  display: block; font-size: .72rem; font-weight: 600;
  color: var(--gold-600); margin-top: 4px;
}
.compare .yes { color: var(--green); font-weight: 700; }
.compare .no  { color: #b91c1c; font-weight: 600; }
.compare-foot {
  background: var(--navy-950); color: rgba(255,255,255,.7);
  font-size: .76rem; padding: 12px 18px; text-align: center;
}
@media (max-width: 539px) {
  .compare th, .compare td { padding: 13px 10px; font-size: .82rem; }
  .compare tbody td:first-child small { font-size: .72rem; }
}

/* ---------- Reviews ---------- */
.review-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.review {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 24px 22px; position: relative;
}
.review::before {
  content: '"'; position: absolute; top: 8px; right: 18px;
  font-size: 3.5rem; line-height: 1; color: var(--gold-50);
  font-family: Georgia, serif; font-weight: 700;
}
.review-stars { color: var(--gold); font-size: .92rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: .92rem; color: var(--ink); margin: 0 0 18px; position: relative; }
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy-800); color: var(--gold);
  display: grid; place-items: center; font-weight: 700; font-size: .85rem;
}
.review-name { font-weight: 700; color: var(--navy-900); font-size: .88rem; }
.review-route { font-size: .76rem; color: var(--muted); }
@media (min-width: 768px) {
  .review-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Feature grid (Why choose us) ---------- */
.feature-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
.feature {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 24px 22px;
  transition: border-color .2s, transform .2s;
}
.feature:hover { border-color: var(--gold); transform: translateY(-2px); }
.feature i {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gold-50); color: var(--gold-600);
  display: grid; place-items: center; font-size: 1.25rem; margin-bottom: 14px;
}
.feature h3 { margin-bottom: 6px; }
.feature p { color: var(--ink-soft); font-size: .9rem; margin: 0; }

/* ---------- Booking form ---------- */
.book-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 28px 22px;
  max-width: 760px; margin: 0 auto;
}
.book-card h2 { font-size: 1.45rem; }
.form-grid { display: grid; gap: 16px; }
.field label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--navy-900); margin-bottom: 7px;
}
.field label .req { color: #dc2626; }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field input[type="time"],
.field select,
.field textarea {
  width: 100%; padding: 14px 15px;
  font-size: 1rem; font-family: inherit; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); transition: border-color .15s, box-shadow .15s;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%236b7280'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-600);
  box-shadow: 0 0 0 4px rgba(45,84,137,.12);
}
.field .hint { font-size: .78rem; color: var(--muted); margin-top: 6px; }
.field--error input, .field--error select { border-color: #dc2626; }
.field .error-msg { display: none; font-size: .78rem; color: #dc2626; margin-top: 6px; }
.field--error .error-msg { display: block; }

.check {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; background: var(--gold-50);
  border: 1px solid #f0e0bd; border-radius: var(--radius-sm); cursor: pointer;
}
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--gold-600); cursor: pointer; }
.check-text strong { display: block; font-size: .92rem; color: var(--navy-900); }
.check-text span { font-size: .8rem; color: var(--muted); }

.capacity-hint {
  display: flex; align-items: center; gap: 10px;
  background: #eff6ff; border: 1px solid #dbeafe;
  border-radius: var(--radius-sm); padding: 12px 14px;
  font-size: .82rem; color: #1e40af;
}
.capacity-hint i { font-size: 1rem; flex-shrink: 0; }

.notice-banner {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--gold-50); border: 1px solid #f0e0bd;
  border-radius: var(--radius-sm); padding: 14px 16px;
  font-size: .86rem; color: #6b5012; margin-bottom: 22px;
}
.notice-banner i { font-size: 1.1rem; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }
.notice-banner strong { color: var(--navy-900); }
.notice-banner a { color: var(--navy-900); font-weight: 700; }

.warn-banner {
  display: flex; align-items: flex-start; gap: 10px;
  background: #fff7ed; border: 1px solid #fed7aa;
  border-radius: var(--radius-sm); padding: 12px 14px;
  font-size: .82rem; color: #9a3412; margin-top: 10px;
}
.warn-banner i { font-size: 1rem; color: #c2410c; flex-shrink: 0; margin-top: 1px; }
.warn-banner a { color: #9a3412; font-weight: 700; text-decoration: underline; }

.inline-error {
  display: flex; align-items: flex-start; gap: 8px;
  background: #fef2f2; border: 1px solid #fecaca;
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-size: .82rem; color: #991b1b; margin-top: 10px;
}
.inline-error i { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.form-divider {
  height: 1px; background: var(--line); margin: 8px 0;
}

.form-foot { margin-top: 8px; }
.reassure {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 18px;
  margin-top: 14px; font-size: .78rem; color: var(--muted);
}
.reassure span { display: inline-flex; align-items: center; gap: 6px; }
.reassure i { color: var(--green); }

#errorMsg {
  background: #fef2f2; border: 1px solid #fecaca; color: #991b1b;
  padding: 12px 16px; border-radius: var(--radius-sm); font-size: .88rem;
  margin-bottom: 14px;
}
.hidden { display: none !important; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 50px 18px 20px;
  font-weight: 600; color: var(--navy-900); font-size: .96rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%); font-size: 1.4rem; font-weight: 400;
  color: var(--gold); transition: transform .2s;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-item p { padding: 16px 20px 18px; margin: 0; font-size: .9rem; color: var(--ink-soft); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    radial-gradient(circle at 80% 20%, rgba(217,164,65,.18), transparent 50%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 100%);
  border-radius: var(--radius); padding: 40px 26px; text-align: center;
  color: #fff; box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.75); margin: 0 0 24px; }
.cta-banner .btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-950); color: rgba(255,255,255,.62);
  padding: 48px 0 24px; margin-top: 64px; font-size: .88rem;
}
.footer-grid { display: grid; gap: 32px; }
.footer h4 { color: #fff; font-size: .9rem; font-weight: 700; margin: 0 0 14px; }
.footer a { color: rgba(255,255,255,.62); text-decoration: none; }
.footer a:hover { color: var(--gold); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; display: flex; align-items: center; gap: 9px; }
.footer .brand { margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 36px; padding-top: 20px; text-align: center;
  font-size: .8rem; color: rgba(255,255,255,.45);
}
.footer-legal { margin-top: 6px; }
.footer-legal a { margin: 0 8px; font-size: .78rem; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--white); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(0,0,0,.1);
  padding: 12px 16px; display: flex; gap: 10px;
}
.sticky-cta a {
  flex: 1; text-align: center; padding: 14px; border-radius: var(--radius-sm);
  font-weight: 700; text-decoration: none; font-size: .94rem;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.sticky-cta .s-call { background: #f1f5f9; color: var(--navy-900); }
.sticky-cta .s-book { background: var(--gold); color: var(--navy-950); }

/* ---------- Confirmation ---------- */
.confirm-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 40px 26px;
  max-width: 560px; margin: 40px auto; text-align: center;
}
.confirm-check {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--green); color: #fff; font-size: 2rem;
  display: grid; place-items: center; margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(21,128,61,.3);
}
.confirm-ref {
  display: inline-block; background: var(--navy-900); color: #fff;
  font-size: 1.2rem; font-weight: 800; letter-spacing: 1.5px;
  padding: 11px 26px; border-radius: 8px; margin: 6px 0 24px;
}
.confirm-table { width: 100%; text-align: left; margin-bottom: 20px; }
.confirm-table td { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.confirm-table td:first-child { color: var(--muted); width: 42%; }
.confirm-table td:last-child { font-weight: 600; color: var(--navy-900); }
.confirm-next {
  background: var(--gold-50); border: 1px solid #f0e0bd;
  border-radius: var(--radius-sm); padding: 14px 18px;
  text-align: left; font-size: .85rem; color: #6b5012; margin-bottom: 20px;
}
.confirm-next strong { display: block; margin-bottom: 4px; color: var(--navy-900); }

/* ============================================================
   Tablet & up
   ============================================================ */
@media (min-width: 640px) {
  .container { padding: 0 28px; }
  .trust-strip-inner { grid-template-columns: repeat(5, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .field--full { grid-column: 1 / -1; }
  .book-card { padding: 38px 36px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* ============================================================
   Desktop
   ============================================================ */
@media (min-width: 960px) {
  .section { padding: 88px 0; }
  .nav-phone { display: inline-flex; }
  .hero { padding: 80px 0 96px; }
  .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
  .vehicle-card { grid-template-columns: 1.05fr 1fr; }
  .vehicle-media { min-height: 100%; }
  .vehicle-body { padding: 44px 40px; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}
@media (max-width: 959px) {
  body { padding-bottom: 76px; }
}
