/* ═══════════════════════════════════════════════════════════
   Crestview Truck Transmission
   Aesthetic: Editorial / Industrial — split-screen hero,
   condensed display type, stat-driven trust, numbered services
   Fonts: Barlow Condensed (display) + Barlow (body)
   Palette: Tesla Electric Blue + warm cream canvas
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Barlow:wght@400;500;600&display=swap');

/* ── Tokens ── */
:root {
  --blue:       #3E6AE1;
  --blue-dark:  #2d56c4;
  --blue-pale:  #EEF2FC;
  --carbon:     #171A20;
  --graphite:   #393C41;
  --pewter:     #5C5E62;
  --fog:        #9A9A9A;
  --cream:      #FAFAF8;
  --warm-gray:  #F2F0EC;
  --cloud:      #E4E2DE;
  --white:      #FFFFFF;
  --radius:     6px;
  --max-w:      1320px;
  --font-d:     'Barlow Condensed', Arial, sans-serif;
  --font-b:     'Barlow', Arial, sans-serif;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--graphite);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ════════════════════════════════════════
   UTILITY BAR — slim top strip
   ════════════════════════════════════════ */
.utility-bar {
  background: var(--carbon);
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 101;
}
.utility-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.utility-hours {
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.utility-phone {
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s var(--ease);
}
.utility-phone:hover { color: #7a9cf0; }
.utility-tow {
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.utility-tow strong { color: rgba(255,255,255,0.8); font-weight: 600; }

/* ════════════════════════════════════════
   NAVIGATION — always white, sticky
   ════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--cloud);
  height: 60px;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--carbon);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.nav-logo span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--pewter);
  margin-top: 2px;
  font-family: var(--font-b);
}
.nav-links {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0;
}
.nav-link {
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 500;
  color: var(--pewter);
  padding: 0 18px;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: var(--carbon); }
.nav-link.active { color: var(--carbon); border-bottom-color: var(--blue); }
.nav-cta {
  margin-left: 16px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  padding: 0 22px;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s var(--ease);
  text-decoration: none;
}
.nav-cta:hover { background: var(--blue-dark); }
.nav-cta:active { transform: scale(0.98); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  color: var(--carbon);
}
.mobile-drawer {
  display: none;
  position: fixed;
  top: 96px; /* utility + nav */
  left: 0; right: 0;
  background: var(--white);
  z-index: 99;
  padding: 8px 24px 20px;
  flex-direction: column;
  border-top: 1px solid var(--cloud);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer .nav-link {
  height: 48px;
  border-bottom: 1px solid var(--cloud);
  border-left: none;
  padding: 0;
}
.mobile-drawer .nav-cta {
  margin: 14px 0 0;
  justify-content: center;
  height: 44px;
}

/* ════════════════════════════════════════
   HERO — split screen
   Left: cream text panel | Right: photo
   ════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: calc(92vh - 96px);
}
.hero-text-panel {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 56px 56px 80px;
  position: relative;
}
.hero-text-panel::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 1px;
  background: var(--cloud);
}
.hero-eyebrow {
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}
.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(52px, 5.5vw, 84px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--carbon);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
}
.hero-sub {
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--pewter);
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-photo-panel {
  position: relative;
  overflow: hidden;
  background: var(--carbon);
}
.hero-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Buttons ── */
.btn-primary {
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  padding: 0 28px;
  height: 44px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  background: var(--white);
  color: var(--graphite);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  padding: 0 28px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--cloud);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-secondary:hover { background: var(--warm-gray); border-color: var(--pewter); }

.btn-ghost {
  background: transparent;
  color: var(--blue);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  height: auto;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease);
  text-decoration: none;
}
.btn-ghost:hover { gap: 10px; }

/* ════════════════════════════════════════
   TOW OFFER STRIP
   ════════════════════════════════════════ */
.tow-strip {
  background: var(--blue);
  padding: 13px 40px;
}
.tow-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}
.tow-strip-text {
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}
.tow-strip-text strong { font-weight: 600; color: var(--white); }
.tow-strip-link {
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  padding: 5px 16px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tow-strip-link:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.7); }

/* ════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════ */
.section { padding: 48px 0 24px; }
.section-warm { background: var(--warm-gray); }
.section-white { background: var(--white); }
.section-dark { background: var(--carbon); }

.section-label {
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}
.section-h2 {
  font-family: var(--font-d);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--carbon);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.section-h2-light { color: var(--white); }
.section-sub {
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--pewter);
  line-height: 1.65;
  max-width: 560px;
}
.section-sub-light { color: rgba(255,255,255,0.6); }

/* ════════════════════════════════════════
   STAT TRUST SECTION
   ════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  border-top: 1px solid var(--cloud);
  border-left: 1px solid var(--cloud);
}
.stat-card {
  padding: 32px 32px 28px;
  border-right: 1px solid var(--cloud);
  border-bottom: 1px solid var(--cloud);
}
.stat-number {
  font-family: var(--font-d);
  font-size: 72px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat-title {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 600;
  color: var(--carbon);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.stat-body {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--pewter);
  line-height: 1.65;
}

/* ════════════════════════════════════════
   NUMBERED SERVICES LIST
   ════════════════════════════════════════ */
.services-list { margin-top: 24px; }
.service-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--cloud);
  gap: 24px;
  transition: background 0.3s var(--ease);
}
.service-row:first-child { border-top: 1px solid var(--cloud); }
.service-num {
  font-family: var(--font-d);
  font-size: 42px;
  font-weight: 700;
  color: var(--cloud);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.3s var(--ease);
}
.service-row:hover .service-num { color: var(--blue); }
.service-info {}
.service-name {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 600;
  color: var(--carbon);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.service-desc {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--pewter);
  line-height: 1.55;
  max-width: 560px;
}
.service-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--cloud);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pewter);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.service-row:hover .service-arrow {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* ════════════════════════════════════════
   BLUE CTA BAND
   ════════════════════════════════════════ */
.cta-band {
  background: var(--blue);
  padding: 40px;
}
.cta-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-d);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.cta-band p {
  font-family: var(--font-b);
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-top: 6px;
  max-width: 480px;
}
.btn-white {
  background: var(--white);
  color: var(--blue);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 700;
  padding: 0 28px;
  height: 44px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: background 0.3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-white:hover { background: var(--blue-pale); }

/* ════════════════════════════════════════
   TOWING OFFER SECTION
   ════════════════════════════════════════ */
.tow-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 24px 0;
}
.tow-section-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
}

/* ════════════════════════════════════════
   SERVICE DETAIL PAGES
   ════════════════════════════════════════ */
.service-detail {
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--cloud);
}
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }
.service-detail-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.service-detail h2 {
  font-family: var(--font-d);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--carbon);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.service-detail p {
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--graphite);
  line-height: 1.7;
  margin-bottom: 12px;
}
.service-detail ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-detail ul li {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--graphite);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

/* ════════════════════════════════════════
   PAGE HERO (interior pages)
   ════════════════════════════════════════ */
.page-hero {
  background: var(--carbon);
  padding: 48px 0 32px;
  border-bottom: 3px solid var(--blue);
}
.page-hero .section-label::before { background: rgba(255,255,255,0.3); }
.page-hero .section-label { color: rgba(255,255,255,0.5); }
.page-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.0;
  margin-bottom: 10px;
}
.page-hero p {
  font-family: var(--font-b);
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 520px;
}

/* ════════════════════════════════════════
   CONTACT LAYOUT
   ════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
  padding: 32px 0 24px;
}
.contact-form-heading {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 700;
  color: var(--carbon);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.contact-form-sub {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--pewter);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Form */
.form-section-label {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pewter);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cloud);
  margin-bottom: 14px;
  display: block;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}
.form-group label {
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  color: var(--carbon);
}
.required-mark { color: var(--blue); margin-left: 2px; }
.optional-tag  { font-weight: 400; color: var(--fog); font-size: 12px; margin-left: 4px; }
.form-row { display: grid; gap: 12px; margin-bottom: 12px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-row .form-group { margin-bottom: 0; }
.form-divider { border: none; border-top: 1px solid var(--cloud); margin: 14px 0; }
input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--carbon);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.3s var(--ease);
  height: 44px;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C5E62' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  border-width: 2px;
  padding: 9px 13px;
}
select:focus { padding-right: 35px; }
textarea { height: auto; min-height: 88px; resize: vertical; line-height: 1.6; }
::placeholder { color: var(--fog); }
.btn-submit {
  width: 100%;
  height: 48px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.3s var(--ease);
  letter-spacing: 0.02em;
}
.btn-submit:hover  { background: var(--blue-dark); }
.btn-submit:active { transform: scale(0.98); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.form-privacy { font-family: var(--font-b); font-size: 12px; color: var(--fog); text-align: center; line-height: 1.5; margin-top: 10px; }
.error-banner { background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius); padding: 10px 14px; color: #991b1b; font-size: 13px; margin-top: 12px; display: none; }
.error-banner.visible { display: block; }
.success-state { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 48px 24px; gap: 12px; }
.success-icon { width: 52px; height: 52px; background: var(--blue); color: var(--white); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; font-weight: 700; border-radius: var(--radius); }
.success-state h2 { font-family: var(--font-d); font-size: 26px; font-weight: 700; color: var(--carbon); text-transform: uppercase; }
.success-state p  { font-size: 14px; color: var(--pewter); max-width: 340px; line-height: 1.7; }

/* Contact info column */
.contact-info h2 {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 700;
  color: var(--carbon);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.contact-info .sub { font-size: 14px; color: var(--pewter); margin-bottom: 20px; line-height: 1.6; }

.info-block { background: var(--white); border: 1px solid var(--cloud); border-radius: 10px; padding: 22px 24px; margin-bottom: 12px; }
.info-block-title { font-family: var(--font-b); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pewter); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--cloud); }
.nap-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.nap-row:last-child { margin-bottom: 0; }
.nap-icon { color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.nap-label { font-family: var(--font-b); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fog); display: block; margin-bottom: 2px; }
.nap-value { font-family: var(--font-b); font-size: 14px; font-weight: 600; color: var(--carbon); line-height: 1.4; }
.nap-value a { color: var(--blue); font-size: 20px; font-weight: 600; transition: color 0.3s var(--ease); }
.nap-value a:hover { color: var(--blue-dark); }
.hours-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--cloud); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--pewter); font-family: var(--font-b); }
.hours-time { color: var(--carbon); font-weight: 600; font-family: var(--font-b); }
.hours-closed { color: var(--fog); font-style: italic; }
.tow-info-block { background: var(--blue); border-radius: 10px; padding: 20px 24px; display: flex; align-items: flex-start; gap: 12px; }
.tow-info-icon { color: var(--white); opacity: 0.9; flex-shrink: 0; margin-top: 2px; }
.tow-info-title { font-family: var(--font-d); font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 4px; text-transform: uppercase; }
.tow-info-desc  { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.site-footer {
  background: var(--carbon);
  border-top: 3px solid var(--blue);
}
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 40px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.footer-logo-sub {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 14px;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 16px; max-width: 260px; }
.footer-phone { font-family: var(--font-d); font-size: 20px; font-weight: 600; color: var(--blue); display: block; margin-bottom: 4px; letter-spacing: 0.02em; transition: color 0.3s var(--ease); }
.footer-phone:hover { color: #7a9cf0; }
.footer-addr { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.65; }
.footer-col-title { font-family: var(--font-b); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.3s var(--ease); }
.footer-link:hover { color: var(--white); }
.footer-hours { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.9; }
.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.25); line-height: 1.6; max-width: 820px; letter-spacing: 0.02em; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); white-space: nowrap; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text-panel { padding: 48px 40px; }
  .hero-text-panel::after { display: none; }
  .hero-photo-panel { height: 50vw; max-height: 420px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .service-detail-inner,
  .service-detail-inner.reverse { grid-template-columns: 1fr; direction: ltr; }
  .tow-section-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .utility-inner { flex-wrap: wrap; gap: 4px; }
  .utility-hours, .utility-tow { font-size: 11px; }
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .stats-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 48px 1fr auto; gap: 16px; }
  .service-num { font-size: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cta-band-inner { flex-direction: column; text-align: center; align-items: center; }
  .form-row-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-text-panel { padding: 36px 20px; }
  .hero h1 { font-size: 44px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top, .footer-bottom-bar { padding-left: 20px; padding-right: 20px; }
  .utility-inner { padding: 0 20px; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
}
