/* ============================================================
   Navarre Transmission — styles.css
   Design system: Miro Guidelines adaptation
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&family=DM+Serif+Display&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Brand */
  --color-primary: #050038;
  --color-yellow: #FFD02F;
  --color-yellow-deep: #E6B800;
  --color-yellow-light: #FFF8D6;
  --color-yellow-dark: #4A3800;
  --color-blue: #1A73E8;
  --color-coral-light: #FFE5DC;
  --color-coral-dark: #6B1E0A;
  --color-teal-light: #D4F5EF;
  --color-moss-dark: #0A3D35;
  --color-rose-light: #FFE4EE;
  --color-orange-light: #FFF0DC;

  /* Surfaces */
  --color-canvas: #FFFFFF;
  --color-surface: #F5F5F7;
  --color-surface-soft: #FAFAFA;
  --color-hairline: #E0E0E8;
  --color-hairline-soft: #EBEBF0;
  --color-hairline-strong: #C4C4CF;

  /* Text */
  --color-ink: #050038;
  --color-charcoal: #1A1A2E;
  --color-slate: #4A4A6A;
  --color-steel: #737390;
  --color-stone: #9999B0;
  --color-muted: #BBBBD0;
  --color-on-dark: #FFFFFF;
  --color-on-dark-muted: rgba(255,255,255,0.65);

  /* Footer */
  --color-footer-bg: #0B0A2A;

  /* Semantic */
  --color-success: #22C17A;
  --color-error: #FF4D4D;

  /* Typography */
  --font-display: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --sp-xxs: 4px;
  --sp-xs: 8px;
  --sp-sm: 12px;
  --sp-md: 16px;
  --sp-lg: 20px;
  --sp-xl: 24px;
  --sp-xxl: 32px;
  --sp-xxxl: 40px;
  --sp-section-sm: 48px;
  --sp-section: 64px;
  --sp-section-lg: 96px;
  --sp-hero: 120px;

  /* Radius */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-xxl: 20px;
  --r-xxxl: 28px;
  --r-feature: 32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-subtle: rgba(5, 0, 56, 0.04) 0px 1px 2px 0px;
  --shadow-card: rgba(5, 0, 56, 0.06) 0px 4px 12px 0px;
  --shadow-mockup: rgba(5, 0, 56, 0.08) 0px 12px 32px -4px;
  --shadow-modal: rgba(5, 0, 56, 0.12) 0px 16px 48px -8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-ink);
  background: var(--color-canvas);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-xxl);
}

/* ---------- Promo Banner ---------- */
.promo-banner {
  background: var(--color-primary);
  color: var(--color-on-dark);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  padding: var(--sp-sm) var(--sp-md);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  flex-wrap: wrap;
}

.promo-banner .badge-promo {
  background: var(--color-yellow);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

/* ---------- Navigation ---------- */
.site-nav {
  background: var(--color-canvas);
  border-bottom: 1px solid var(--color-hairline-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--sp-xxl);
}

/* keep the link row from crowding the logo / call button */
.nav-links { margin: 0 var(--sp-md); }

.nav-logo {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  white-space: nowrap;
}

.nav-logo-mark {
  background: var(--color-yellow);
  color: var(--color-primary);
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-xxxl);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-slate);
  transition: color 150ms ease;
}

.nav-links a:hover { color: var(--color-ink); }
.nav-links a.active { color: var(--color-ink); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.nav-call {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--sp-xs);
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-mobile-menu {
  display: none;
  background: var(--color-canvas);
  border-top: 1px solid var(--color-hairline-soft);
  padding: var(--sp-lg) var(--sp-xxl);
  flex-direction: column;
  gap: var(--sp-lg);
}

.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-slate);
  padding: var(--sp-xs) 0;
}
.nav-mobile-menu a.active { color: var(--color-ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  padding: 12px 24px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: background-color 150ms ease, transform 100ms ease, box-shadow 150ms ease;
  text-align: center;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }
.btn:focus-visible { outline: 2px solid var(--color-blue); outline-offset: 2px; }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-on-dark);
}
.btn-primary:hover { background: var(--color-charcoal); }

.btn-yellow {
  background: var(--color-yellow);
  color: var(--color-primary);
}
.btn-yellow:hover { background: var(--color-yellow-deep); }

.btn-secondary {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-hairline-strong);
}
.btn-secondary:hover { background: var(--color-surface); }

.btn-on-dark {
  background: var(--color-on-dark);
  color: var(--color-primary);
}
.btn-on-dark:hover { background: #F0F0F0; }

.btn-lg {
  font-size: 16px;
  padding: 14px 32px;
}

/* ---------- Hero Section ---------- */
.hero {
  padding: 12px 0;
  background: var(--color-canvas);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 60% 40%, rgba(255, 208, 47, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-section);
  align-items: center;
}

.hero-content {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  background: var(--color-yellow-light);
  color: var(--color-yellow-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-xl);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--color-primary);
  margin-bottom: var(--sp-xl);
}

.hero h1 em {
  font-style: italic;
  color: var(--color-primary);
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-slate);
  margin-bottom: var(--sp-xxxl);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  margin-top: var(--sp-xxl);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-steel);
}

.hero-trust-item svg {
  color: var(--color-success);
  flex-shrink: 0;
}

.hero-media {
  position: relative;
}

.hero-img-wrap {
  border-radius: var(--r-xxxl);
  overflow: hidden;
  box-shadow: var(--shadow-mockup);
  aspect-ratio: 4/3;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline-soft);
  border-radius: var(--r-xxxl);
  padding: var(--sp-md) var(--sp-xl);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.hero-img-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--color-yellow);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.hero-img-badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
}

.hero-img-badge-text span {
  font-size: 12px;
  color: var(--color-stone);
}

/* ---------- Section base ---------- */
.section {
  padding: 12px 0;
}

.section-sm {
  padding: 12px 0;
}

.section-alt {
  background: var(--color-surface);
}

.section-dark {
  background: var(--color-footer-bg);
  color: var(--color-on-dark);
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-stone);
  margin-bottom: var(--sp-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--color-primary);
  margin-bottom: var(--sp-md);
}

.section-title.on-dark { color: var(--color-on-dark); }

.section-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-slate);
  max-width: 560px;
}

.section-sub.on-dark { color: var(--color-on-dark-muted); }

.section-header {
  margin-bottom: var(--sp-section-sm);
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-sub {
  margin: 0 auto;
}

/* ---------- Trust / Feature Cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}

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

.card {
  background: var(--color-canvas);
  border-radius: var(--r-xxxl);
  padding: var(--sp-xxl);
  border: 1px solid var(--color-hairline-soft);
  box-shadow: var(--shadow-card);
}

.card-yellow { background: var(--color-yellow-light); border-color: transparent; }
.card-coral  { background: var(--color-coral-light);  border-color: transparent; }
.card-teal   { background: var(--color-teal-light);   border-color: transparent; }
.card-rose   { background: var(--color-rose-light);   border-color: transparent; }
.card-orange { background: var(--color-orange-light); border-color: transparent; }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--sp-xl);
  background: rgba(5,0,56,0.06);
}

.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-ink);
  margin-bottom: var(--sp-sm);
}

.card-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-slate);
}

/* ---------- Lead Form ---------- */
.form-section {
  background: var(--color-primary);
  padding: 12px 0;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,208,47,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-section);
  align-items: start;
}

.form-pitch {}

.form-pitch .section-label { color: rgba(255,208,47,0.75); }

.form-pitch .section-title {
  color: var(--color-on-dark);
  margin-bottom: var(--sp-lg);
}

.form-pitch .section-sub {
  color: var(--color-on-dark-muted);
  margin-bottom: var(--sp-xxl);
}

.form-perks {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.form-perk {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: 15px;
  color: var(--color-on-dark-muted);
  line-height: 1.5;
}

.form-perk-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--r-full);
  background: var(--color-yellow);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.form-card {
  background: var(--color-canvas);
  border-radius: var(--r-feature);
  padding: var(--sp-xxl);
  box-shadow: var(--shadow-modal);
}

.form-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: var(--sp-sm);
}

.form-card p {
  font-size: 14px;
  color: var(--color-steel);
  margin-bottom: var(--sp-xl);
}

/* Form inputs */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-md);
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-slate);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-ink);
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline-strong);
  border-radius: var(--r-md);
  padding: var(--sp-sm) var(--sp-md);
  height: 44px;
  outline: none;
  transition: border-color 150ms ease;
  width: 100%;
}

.form-group textarea {
  height: 88px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border: 2px solid var(--color-blue);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-muted);
}

.form-group select { appearance: none; cursor: pointer; }

.form-disclaimer {
  font-size: 12px;
  color: var(--color-stone);
  margin-top: var(--sp-sm);
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-xl) 0;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--color-teal-light);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto var(--sp-lg);
}

/* ---------- Services List ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl);
}

.service-card {
  display: flex;
  gap: var(--sp-xl);
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline-soft);
  border-radius: var(--r-xxxl);
  padding: var(--sp-xxl);
  box-shadow: var(--shadow-subtle);
  transition: box-shadow 150ms ease;
}

.service-card:hover { box-shadow: var(--shadow-card); }

.service-img {
  width: 96px;
  height: 96px;
  border-radius: var(--r-xl);
  object-fit: cover;
  flex-shrink: 0;
}

.service-info {}

.service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-yellow-dark);
  background: var(--color-yellow-light);
  border-radius: var(--r-full);
  padding: 3px 10px;
  margin-bottom: var(--sp-sm);
}

.service-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-ink);
  margin-bottom: var(--sp-xs);
}

.service-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-slate);
}

/* ---------- Towing Callout ---------- */
.towing-banner {
  background: var(--color-yellow);
  border-radius: var(--r-feature);
  padding: var(--sp-xxl) var(--sp-xxxl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}

.towing-banner-text {}

.towing-banner-text h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: var(--sp-xs);
}

.towing-banner-text p {
  font-size: 15px;
  color: var(--color-charcoal);
  max-width: 480px;
}

/* ---------- Hours / Info ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}

.info-card {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline-soft);
  border-radius: var(--r-xxxl);
  padding: var(--sp-xxl);
  box-shadow: var(--shadow-subtle);
}

.info-card-icon {
  font-size: 28px;
  margin-bottom: var(--sp-md);
}

.info-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: var(--sp-sm);
}

.info-card-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-slate);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-xs) 0;
  border-bottom: 1px solid var(--color-hairline-soft);
  font-size: 14px;
}

.hours-row:last-child { border-bottom: none; }

.hours-day { font-weight: 500; color: var(--color-ink); }
.hours-time { color: var(--color-slate); }
.hours-closed { color: var(--color-stone); }

/* ---------- Map section ---------- */
.map-section {
  padding: 12px 0;
}

.map-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: start;
  max-width: 640px;
}

.map-embed {
  border-radius: var(--r-xxxl);
  overflow: hidden;
  box-shadow: var(--shadow-mockup);
  height: 420px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}

.map-detail-item {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
}

.map-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--color-surface);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.map-detail-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 2px;
}

.map-detail-text span,
.map-detail-text a {
  font-size: 14px;
  color: var(--color-slate);
  line-height: 1.6;
}

.map-detail-text a:hover { color: var(--color-blue); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--color-primary);
  border-radius: var(--r-feature);
  padding: var(--sp-section);
  text-align: center;
  margin: 0 var(--sp-xxl);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,208,47,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--color-on-dark);
  letter-spacing: -0.75px;
  margin-bottom: var(--sp-md);
}

.cta-banner p {
  font-size: 18px;
  color: var(--color-on-dark-muted);
  margin-bottom: var(--sp-xxl);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-footer-bg);
  padding: var(--sp-section) var(--sp-xxl) var(--sp-xxl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-section);
  padding-bottom: var(--sp-section);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--sp-xxl);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-lg);
}

.footer-logo-mark {
  background: var(--color-yellow);
  color: var(--color-primary);
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.footer-logo-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-on-dark);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-on-dark-muted);
  max-width: 280px;
  margin-bottom: var(--sp-lg);
}

.footer-phone {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-yellow);
  display: block;
  margin-bottom: var(--sp-xs);
}

.footer-hours-mini {
  font-size: 13px;
  color: var(--color-on-dark-muted);
  line-height: 1.6;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-on-dark);
  margin-bottom: var(--sp-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.footer-links a {
  font-size: 14px;
  color: var(--color-on-dark-muted);
  transition: color 150ms ease;
  padding: var(--sp-xxs) 0;
}

.footer-links a:hover { color: var(--color-on-dark); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-md);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  max-width: 600px;
  line-height: 1.5;
}

/* ---------- Services Page Specifics ---------- */
.services-hero {
  padding: 12px 0;
  background: var(--color-surface);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-section);
  align-items: center;
}

.page-hero-content {}

.page-hero-img {
  border-radius: var(--r-xxxl);
  overflow: hidden;
  box-shadow: var(--shadow-mockup);
  aspect-ratio: 16/9;
}

.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Service area strip ---------- */
.service-area-strip {
  background: var(--color-primary);
  padding: 12px 0;
  text-align: center;
}

.service-area-strip p {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-on-dark-muted);
}

.service-area-strip strong { color: var(--color-yellow); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-section);
  align-items: start;
}

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner,
  .form-wrap,
  .page-hero-inner,
  .contact-grid { grid-template-columns: 1fr; }

  .hero-media { display: none; }

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

  .map-wrap { grid-template-columns: 1fr; }
  .map-embed { height: 280px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-xxl); }

  .cta-banner { margin: 0 var(--sp-md); }
}

@media (max-width: 767px) {
  .container { padding: 0 var(--sp-lg); }

  .hero { padding: 12px 0; }
  .hero h1 { font-size: 36px; }

  .cards-grid,
  .services-grid,
  .info-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .towing-banner { flex-direction: column; align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-xxl); }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .section-title { font-size: 28px; }

  .cta-banner { padding: var(--sp-xxl); }
}

@media (max-width: 479px) {
  .hero h1 { font-size: 30px; letter-spacing: -0.75px; }
  .promo-banner { font-size: 12px; }
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.mt-xl  { margin-top: var(--sp-xl);  }
.mt-xxl { margin-top: var(--sp-xxl); }
.mt-section { margin-top: var(--sp-section-lg); }
.mb-xl  { margin-bottom: var(--sp-xl); }
.mb-xxl { margin-bottom: var(--sp-xxl); }

.text-center { text-align: center; }
.text-slate  { color: var(--color-slate); }

/* Loading state for form */
.btn-loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Stat row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--color-hairline-soft);
  border-radius: var(--r-xxxl);
  overflow: hidden;
  background: var(--color-canvas);
  box-shadow: var(--shadow-card);
}

.stat-item {
  padding: var(--sp-xxl);
  border-right: 1px solid var(--color-hairline-soft);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: var(--sp-xs);
}

.stat-label {
  font-size: 14px;
  color: var(--color-steel);
}

@media (max-width: 767px) {
  .stat-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--color-hairline-soft); }
  .stat-item:last-child { border-bottom: none; }
}

/* ---------- Services page: makes-grid responsive (moved from inline <style>) ---------- */
@media (max-width: 767px) {
  .makes-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 479px) {
  .makes-grid { grid-template-columns: 1fr !important; }
}
