/* ═══════════════════════════════════════════════════════════
   Pensacola Truck Transmission — Shared Stylesheet
   Covers: index.html · services.html · contact.html
   ═══════════════════════════════════════════════════════════ */

/* ─── Tokens ───────────────────────────────────────────────── */
:root {
  --cream: #f7f4ed;
  --charcoal: #1c1c1c;
  --muted: #5f5f5d;
  --border-light: #eceae4;
  --border-interactive: rgba(28,28,28,0.4);
  --btn-inset: rgba(255,255,255,0.2) 0px 0.5px 0px 0px inset,
               rgba(0,0,0,0.2) 0px 0px 0px 0.5px inset,
               rgba(0,0,0,0.05) 0px 1px 2px 0px;
  --focus-shadow: rgba(0,0,0,0.1) 0px 4px 12px;
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: 'Jost', ui-sans-serif, system-ui;
  font-weight: 400;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--charcoal);
  font-weight: 600;
}

/* ─── Promo Banner ─────────────────────────────────────────── */
.promo-banner {
  background: var(--charcoal);
  color: #fcfbf8;
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.2px;
}
.promo-banner a { color: #f7f4ed; text-decoration: underline; }

/* ─── Navigation ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
  padding: 0 32px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: -0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--charcoal);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; font-weight: 500; }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  background: var(--charcoal);
  color: #fcfbf8;
  padding: 9px 18px;
  border-radius: 6px;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: var(--btn-inset);
  transition: opacity 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.85; }
.btn-primary:active { opacity: 0.72; }

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  padding: 9px 18px;
  border-radius: 6px;
  border: 1px solid var(--border-interactive);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}
.btn-ghost:hover { background: rgba(28,28,28,0.04); }

.btn-call {
  background: var(--charcoal);
  color: #fcfbf8;
  padding: 13px 26px;
  border-radius: 6px;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: var(--btn-inset);
  transition: opacity 0.15s;
}
.btn-call:hover { opacity: 0.87; }
.btn-call:active { opacity: 0.72; }
.btn-call svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-call-lg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--charcoal);
  color: #fcfbf8;
  padding: 13px 24px;
  border-radius: 6px;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--btn-inset);
  transition: opacity 0.15s;
  margin-top: 14px;
}
.btn-call-lg:hover { opacity: 0.87; }
.btn-call-lg svg { width: 15px; height: 15px; flex-shrink: 0; }

.btn-light {
  background: #fcfbf8;
  color: var(--charcoal);
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-light:hover { opacity: 0.88; }

.btn-outline-light {
  background: transparent;
  color: #fcfbf8;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1px solid rgba(252,251,248,0.35);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}
.btn-outline-light:hover { background: rgba(252,251,248,0.08); }

.btn-submit {
  width: 100%;
  background: var(--charcoal);
  color: #fcfbf8;
  padding: 13px 24px;
  border-radius: 6px;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: var(--btn-inset);
  transition: opacity 0.15s;
}
.btn-submit:hover { opacity: 0.87; }

/* ─── Forms (shared) ───────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  background: #fcfbf8;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 10px 12px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted); opacity: 0.7; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--border-interactive);
  box-shadow: var(--focus-shadow);
}
.form-textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
.form-select { appearance: none; -webkit-appearance: none; padding-right: 28px; }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  font-size: 11px;
}

/* ─── Mid CTA Banner ───────────────────────────────────────── */
.mid-cta {
  background: var(--charcoal);
  padding: 64px 32px;
}
.mid-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.mid-cta h2 {
  color: #fcfbf8;
  font-size: 36px;
  letter-spacing: -0.9px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.mid-cta p {
  color: rgba(252,251,248,0.68);
  font-size: 16px;
  line-height: 1.68;
  margin-bottom: 30px;
}
.mid-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 56px 32px 36px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.65; }
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
  font-size: 14px;
  color: var(--charcoal);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }
.footer-col .footer-note { font-size: 14px; color: var(--charcoal); opacity: 0.7; }
.footer-bottom { max-width: 1200px; margin: 28px auto 0; }
.footer-disclaimer { font-size: 11px; color: var(--muted); line-height: 1.7; opacity: 0.65; }

/* ─── Page Header (services & contact) ────────────────────── */
.page-header {
  border-bottom: 1px solid var(--border-light);
  padding: 18px 32px 16px;
}
.page-header-inner { max-width: 1200px; margin: 0 auto; }
.page-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.page-h1 {
  font-size: 52px;
  letter-spacing: -1.2px;
  line-height: 1.06;
  margin-bottom: 18px;
  max-width: 640px;
}
.page-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.68;
  max-width: 580px;
}
.page-header--full .page-h1 { max-width: none; }
.page-header--full .page-sub { max-width: none; }

/* ─── Homepage: Hero ───────────────────────────────────────── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px 18px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.hero-h1 {
  font-size: 52px;
  letter-spacing: -1.3px;
  line-height: 1.06;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 14px;
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  font-size: 13px;
  color: var(--muted);
}
.hero-offer-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--charcoal);
  flex-shrink: 0;
}

/* ─── Homepage: Lead Form ──────────────────────────────────── */
.lead-form-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
}
.lead-form-title {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 6px;
}
.lead-form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.55;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-grid .btn-submit { margin-top: 4px; font-size: 14px; padding: 12px 24px; }

/* ─── Homepage: Trust Grid ─────────────────────────────────── */
.trust-section {
  border-top: 1px solid var(--border-light);
  padding: 18px 32px;
}
.section-label {
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trust-card {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 28px 26px;
}
.trust-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.trust-card h3 {
  font-size: 18px;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.trust-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.68;
}

/* ─── Homepage: Image Feature ──────────────────────────────── */
.image-feature {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 20px;
}
.image-feature-inner {
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 360px;
}
.image-feature-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,28,28,0.65) 0%, rgba(28,28,28,0.1) 60%);
  display: flex;
  align-items: center;
  padding: 48px;
}
.image-feature-text { max-width: 440px; }
.image-feature-text h2 {
  color: #fcfbf8;
  font-size: 34px;
  letter-spacing: -0.8px;
  line-height: 1.12;
  margin-bottom: 14px;
}
.image-feature-text p {
  color: rgba(252,251,248,0.78);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ─── Services: Service Sections ───────────────────────────── */
.service-section {
  border-bottom: 1px solid var(--border-light);
  padding: 18px 32px;
}
.service-section:last-of-type { border-bottom: none; }
.service-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-inner.reverse { direction: rtl; }
.service-inner.reverse > * { direction: ltr; }
.service-image {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  padding: 4px 12px;
  margin-bottom: 20px;
}
.service-h2 {
  font-size: 36px;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.service-p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 24px;
}
.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.service-bullets li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 9999px;
  background: var(--charcoal);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ─── Contact: Layout ──────────────────────────────────────── */
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.nap-block { display: flex; flex-direction: column; gap: 32px; }
.info-card {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 28px;
}
.info-card-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.info-card h3 { font-size: 22px; letter-spacing: -0.4px; margin-bottom: 6px; }
.info-card .info-detail { font-size: 15px; color: var(--muted); line-height: 1.6; }
.info-card .phone-link {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.6px;
  color: var(--charcoal);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: opacity 0.2s;
}
.info-card .phone-link:hover { opacity: 0.75; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border-light); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 10px 0; font-size: 14px; }
.hours-table td:first-child { color: var(--charcoal); font-weight: 500; width: 55%; }
.hours-table td:last-child { color: var(--muted); text-align: right; }
.contact-form-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 36px;
  position: sticky;
  top: 88px;
}
.contact-form-title {
  font-size: 24px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.contact-form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.55;
}
.form-stack { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ─── Contact: Towing Banner ───────────────────────────────── */
.towing-banner {
  max-width: 1200px;
  margin: 0 auto 72px;
  padding: 0 32px;
}
.towing-banner-inner {
  background: var(--charcoal);
  border-radius: 12px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.towing-banner-text h3 {
  color: #fcfbf8;
  font-size: 22px;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
}
.towing-banner-text p { color: rgba(252,251,248,0.65); font-size: 14px; line-height: 1.5; }

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 40px 24px 32px; gap: 40px; }
  .hero-h1 { font-size: 40px; letter-spacing: -0.9px; }
  .trust-inner { grid-template-columns: 1fr; }
  .service-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-inner.reverse { direction: ltr; }
  .page-h1 { font-size: 38px; letter-spacing: -0.8px; }
  .contact-section { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-card { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner > .btn-primary { display: none; }
  .mobile-menu-btn { display: inline-flex; }
  .nav { padding: 0 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-section { padding: 32px 20px; }
  .image-feature { padding: 0 20px 32px; }
  .image-feature-inner { height: 280px; }
  .image-feature-overlay { padding: 28px; }
  .image-feature-text h2 { font-size: 26px; }
  .mid-cta h2 { font-size: 28px; }
  .mid-cta { padding: 40px 20px; }
  .page-header { padding: 32px 20px 24px; }
  .service-section { padding: 32px 20px; }
  .contact-section { padding: 32px 20px; }
  .towing-banner { padding: 0 20px; margin-bottom: 48px; }
  .towing-banner-inner { padding: 24px; }
  .footer { padding: 40px 20px 28px; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 32px; letter-spacing: -0.6px; }
  .page-h1 { font-size: 32px; }
}

/* ═══════════════════════════════════════════════════════════
   Navigation Dropdown (Common Issues)
   ═══════════════════════════════════════════════════════════ */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-caret {
  width: 9px;
  height: 9px;
  opacity: 0.6;
  transition: transform 0.2s ease;
}
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }

/* Transparent bridge so hover survives the gap to the menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 16px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 218px;
  background: #fcfbf8;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  box-shadow: rgba(28,28,28,0.04) 0px 0px 0px 1px,
              rgba(28,28,28,0.10) 0px 14px 30px -8px;
  padding: 7px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--charcoal);
  text-decoration: none;
  opacity: 0.78;
  white-space: nowrap;
  transition: background 0.15s ease, opacity 0.15s ease;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible { background: rgba(28,28,28,0.05); opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   Mobile navigation (hamburger + drawer)
   ═══════════════════════════════════════════════════════════ */
.mobile-menu-btn {
  display: none;               /* shown only at <=768px (see media query) */
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--charcoal);
  cursor: pointer;
  padding: 6px;
}
.mobile-drawer {
  display: none;               /* toggled to flex via .open */
  flex-direction: column;
  padding: 4px 0 14px;
  border-top: 1px solid var(--border-light);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  padding: 13px 2px;
  font-size: 15px;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
}
.mobile-drawer .btn-primary {
  margin-top: 14px;
  padding: 13px 18px;
  text-align: center;
  color: #fcfbf8;
  border-bottom: none;
}

/* ═══════════════════════════════════════════════════════════
   Vehicle Issue Pages (F-150 · Silverado)
   ═══════════════════════════════════════════════════════════ */

/* Top hero: intro copy + contact form */
.vehicle-hero { border-bottom: 1px solid var(--border-light); }
.vehicle-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 32px 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.vehicle-hero-copy .page-eyebrow { margin-bottom: 16px; }
.vehicle-hero-h1 {
  font-size: 46px;
  letter-spacing: -1.1px;
  line-height: 1.08;
  margin-bottom: 18px;
}
.vehicle-hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.vehicle-hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.vehicle-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  color: var(--charcoal);
  line-height: 1.5;
}
.vehicle-hero-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--charcoal);
  flex-shrink: 0;
  margin-top: 7px;
}
.vehicle-hero-bullets strong { font-weight: 500; }

/* Generic content section wrapper */
.v-section { border-bottom: 1px solid var(--border-light); padding: 56px 32px; }
.v-section:last-of-type { border-bottom: none; }
.v-section-inner { max-width: 1200px; margin: 0 auto; }
.v-section-head { max-width: 720px; margin-bottom: 36px; }
.v-section-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.v-section-head h2 {
  font-size: 34px;
  letter-spacing: -0.8px;
  line-height: 1.12;
}

/* Summary cards grid */
.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.issue-card {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 26px 24px;
  background: var(--cream);
}
.issue-card h3 { font-size: 18px; letter-spacing: -0.3px; line-height: 1.25; margin-bottom: 10px; }
.issue-card h3 a {
  color: var(--charcoal);
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.issue-card h3 a:hover { opacity: 0.62; }
.issue-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Detailed issue boxes */
.issue-box {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 30px 32px;
  margin-bottom: 20px;
  scroll-margin-top: 88px;
}
.issue-box:last-child { margin-bottom: 0; }
.issue-box h3 { font-size: 24px; letter-spacing: -0.5px; margin-bottom: 12px; }
.issue-box p { font-size: 15px; color: var(--muted); line-height: 1.72; margin-bottom: 12px; }
.issue-box p strong { color: var(--charcoal); font-weight: 500; }
.issue-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}
.issue-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.issue-box li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 9999px;
  background: var(--charcoal);
  flex-shrink: 0;
  margin-top: 7px;
}
.issue-box li strong { color: var(--charcoal); font-weight: 500; }
.issue-box .link {
  color: var(--charcoal);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.15s ease;
}
.issue-box .link:hover { opacity: 0.65; }

/* Recalls & litigation */
.recall-section { background: #fcfbf8; }
.recall-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.recall-card {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 26px 28px;
  background: var(--cream);
}
.recall-card h3 { font-size: 18px; letter-spacing: -0.3px; line-height: 1.25; margin-bottom: 12px; }
.recall-card p { font-size: 14px; color: var(--muted); line-height: 1.62; margin-bottom: 8px; }
.recall-card p:last-child { margin-bottom: 0; }
.recall-card p strong { color: var(--charcoal); font-weight: 500; }

/* Vehicle-page responsive */
@media (max-width: 900px) {
  .vehicle-hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 32px 24px; }
  .vehicle-hero-h1 { font-size: 38px; letter-spacing: -0.8px; }
  .issue-grid { grid-template-columns: 1fr; }
  .recall-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .v-section { padding: 40px 20px; }
  .vehicle-hero-inner { padding: 32px 20px; }
  .v-section-head h2 { font-size: 28px; }
  .issue-box { padding: 24px 22px; }
}

/* ═══════════════════════════════════════════════════════════
   About Page
   ═══════════════════════════════════════════════════════════ */

/* Stat cards */
.stat-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 32px 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 26px 24px;
  background: var(--cream);
}
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* Prose blocks */
.about-wrap { max-width: 860px; margin: 0 auto; padding: 8px 32px 0; }
.about-lead {
  font-size: 21px;
  line-height: 1.55;
  letter-spacing: -0.3px;
  color: var(--charcoal);
  padding: 40px 0 4px;
}
.about-block { padding: 44px 0; border-bottom: 1px solid var(--border-light); }
.about-block:last-child { border-bottom: none; }
.about-block h2 {
  font-size: 30px;
  letter-spacing: -0.6px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.about-block h3 { font-size: 18px; letter-spacing: -0.2px; margin: 26px 0 8px; }
.about-block p { font-size: 16px; color: var(--muted); line-height: 1.78; margin-bottom: 16px; }
.about-block p:last-child { margin-bottom: 0; }
.about-block strong { color: var(--charcoal); font-weight: 500; }

/* Bold-led feature list (e.g. "The 36-Hour Work Week: …") */
.about-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 22px 0 4px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.about-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--charcoal);
  flex-shrink: 0;
  margin-top: 10px;
}
.about-list strong { color: var(--charcoal); font-weight: 500; }

/* Asterisk / transparency notes */
.about-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  border-left: 2px solid var(--border-interactive);
  padding: 4px 0 4px 16px;
  margin: 22px 0 4px;
}
.about-note strong { color: var(--charcoal); font-weight: 500; }

/* About responsive */
@media (max-width: 900px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .stat-grid { padding: 32px 20px 4px; gap: 12px; }
  .about-wrap { padding: 8px 20px 0; }
  .about-lead { font-size: 19px; padding: 32px 0 0; }
  .about-block { padding: 36px 0; }
  .about-block h2 { font-size: 26px; }
}
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
}
