/* ════════════════════════════════════════════════════════════════════
   WESTSIDE SUNOCO — styles.css
   ────────────────────────────────────────────────────────────────────
   Design tokens are at the top. To change a brand color everywhere,
   edit it ONCE in :root below.

   Layout of this file:
     1. Tokens & base
     2. Type & utilities
     3. Buttons
     4. Top bar + header/nav
     5. Home: hero, values, trust band, teasers, gallery
     6. Page hero (Garage / Towing / Contact)
     7. Garage: services, inspection feature, quote CTA
     8. Towing: call button, steps, service cards
     9. Contact: cards, map, form
    10. Footer
    11. Sticky mobile tow bar
    12. Motion, focus, responsive helpers
   ════════════════════════════════════════════════════════════════════ */


/* ── 1. TOKENS & BASE ─────────────────────────────────────────────── */

:root {
  /* Sunoco palette — blue/white base, red + yellow as accents */
  --navy-950: #081226;   /* darkest — hero + footer base */
  --navy-900: #0A1836;
  --navy-800: #10265C;
  --blue-600: #1553C8;   /* primary interactive blue */
  --blue-700: #0F3E9A;   /* hover blue */
  --blue-100: #E9F0FC;   /* pale blue chips / icon tiles */
  --red-600:  #DA291C;   /* Sunoco red — reserved for towing CTAs */
  --red-700:  #B01F15;
  --yellow-400: #FFC400; /* Sunoco yellow — kickers, stats, stripes */

  --ink:   #131A2A;      /* headings / body on light */
  --slate: #4E5B74;      /* secondary text */
  --line:  #E3E8F1;      /* borders */
  --mist:  #F5F7FB;      /* alternate section background */
  --paper: #FFFFFF;

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;

  --radius: 12px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(10, 24, 54, .06);
  --shadow-md: 0 10px 28px -8px rgba(10, 24, 54, .16);
  --container: 1140px;

  --topbar-h: 40px;
  --nav-h: 74px;
  --stickybar-h: 62px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-700); }

/* Accessible skip link (hidden until keyboard-focused) */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--yellow-400); color: var(--navy-950);
  padding: 10px 18px; font-weight: 700; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }


/* ── 2. TYPE & UTILITIES ──────────────────────────────────────────── */

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: .01em;
  margin: 0 0 .4em;
  font-weight: 700;
}

h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); letter-spacing: .02em; }

p { margin: 0 0 1em; }

.container {
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}

.section { padding-block: clamp(64px, 9vw, 108px); }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy-950); color: #fff; }

/* Section heading block: stripe chip + kicker + title */
.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--slate); font-size: 1.06rem; margin: 0; }
.section--navy .section-head p { color: #B9C4DE; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  font-size: .95rem; color: var(--blue-600);
  margin-bottom: 10px;
}
.section--navy .kicker, .on-dark .kicker { color: var(--yellow-400); }

/* ── SIGNATURE DEVICE: the two-tone speed stripe ──
   A small skewed yellow/red bar. Used beside kickers and as a
   full-width rule under dark hero sections. */
.stripe {
  display: inline-block; width: 34px; height: 12px;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, var(--yellow-400) 0 62%, var(--red-600) 62%);
  border-radius: 2px;
  flex: none;
}
.stripe-rule {
  height: 6px;
  background: linear-gradient(90deg, var(--yellow-400) 0 62%, var(--red-600) 62%);
}

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--slate); }
.on-dark .lead, .section--navy .lead { color: #C7D2E8; }


/* ── 3. BUTTONS ───────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px;
  border: 0; border-radius: var(--radius-sm); cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  letter-spacing: .015em; text-decoration: none;
  transition: background-color .18s, color .18s, transform .18s, box-shadow .18s;
}
.btn:active { transform: translateY(1px); }
.btn svg { flex: none; }

.btn--blue { background: var(--blue-600); color: #fff; }
.btn--blue:hover { background: var(--blue-700); color: #fff; }

.btn--red { background: var(--red-600); color: #fff; }
.btn--red:hover { background: var(--red-700); color: #fff; }

.btn--outline {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line);
}
.btn--outline:hover { box-shadow: inset 0 0 0 2px var(--blue-600); color: var(--blue-600); }

/* light "ghost" for dark backgrounds */
.btn--ghost {
  background: rgba(255,255,255,.08); color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.35);
}
.btn--ghost:hover { background: rgba(255,255,255,.16); color: #fff; }

/* larger emphasis size — used for the main page CTAs */
.btn--lg { min-height: 60px; padding: 0 32px; font-size: 1.08rem; }

/* Oversized emergency button — towing page + home teaser */
.btn--tow {
  min-height: 66px; padding: 0 38px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.45rem; letter-spacing: .05em; text-transform: uppercase;
  background: var(--red-600); color: #fff;
  box-shadow: 0 12px 26px -10px rgba(218, 41, 28, .55);
}
.btn--tow:hover { background: var(--red-700); color: #fff; }

/* Subtle attention pulse on the main tow button (disabled if the
   visitor prefers reduced motion — see section 12) */
@keyframes tow-pulse {
  0%   { box-shadow: 0 12px 26px -10px rgba(218,41,28,.55), 0 0 0 0 rgba(218,41,28,.45); }
  70%  { box-shadow: 0 12px 26px -10px rgba(218,41,28,.55), 0 0 0 16px rgba(218,41,28,0); }
  100% { box-shadow: 0 12px 26px -10px rgba(218,41,28,.55), 0 0 0 0 rgba(218,41,28,0); }
}
.btn--tow.pulse { animation: tow-pulse 2.6s ease-out infinite; }


/* ── 4. TOP BAR + HEADER / NAV ───────────────────────────────────── */

.topbar {
  background: var(--navy-950); color: #C7D2E8;
  font-size: .86rem; min-height: var(--topbar-h);
  display: flex; align-items: center;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--yellow-400); }
.topbar__addr { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* "Open now" pill — text is set live by js/main.js from the garage hours */
.open-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; white-space: nowrap;
}
.open-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow-400); flex: none;
}
.open-pill.is-open .dot { background: #38C172; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav {
  min-height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

/* Logo lockup: speed stripe + two-tone wordmark */
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.55rem; letter-spacing: .03em; text-transform: uppercase;
  color: var(--navy-950); line-height: 1;
}
.brand:hover { color: var(--navy-950); }
.brand .stripe { width: 28px; height: 15px; }
.brand span { color: var(--blue-600); }

.nav__links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  color: var(--ink); font-weight: 600; font-size: 1rem;
  padding: 8px 2px; border-bottom: 3px solid transparent;
}
.nav__links a:hover { color: var(--blue-600); }
.nav__links a[aria-current="page"] {
  color: var(--blue-600); border-bottom-color: var(--yellow-400);
}
.nav__cta { min-height: 44px; padding: 0 18px; font-size: .95rem; }

/* Mobile hamburger */
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 10px;
}
.nav__toggle svg { display: block; stroke: var(--navy-950); }

@media (max-width: 860px) {
  .topbar__addr, .topbar__mail { display: none; }
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 8px 20px 16px;
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav__links a[aria-current="page"] { border-bottom-color: var(--line); }
  .nav__links li:last-child { margin-top: 12px; }
  .nav__cta { width: 100%; }
}


/* ── 5. HOME ──────────────────────────────────────────────────────── */

/* Hero — deep navy gradient with a faint diagonal texture */
.hero {
  position: relative; color: #fff;
  background:
    linear-gradient(102deg, #0A1836 0%, #081226 46%, #10265C 100%),
    var(--navy-950);
  padding-block: clamp(84px, 12vw, 148px);
}
.hero__inner { max-width: 680px; }
.hero .kicker { color: var(--yellow-400); }
.hero h1 { color: #fff; }
.hero p { font-size: clamp(1.08rem, 1.8vw, 1.3rem); color: #C7D2E8; max-width: 560px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* faint diagonal texture so flat navy areas don't feel empty */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.028) 0 2px, transparent 2px 14px);
}

/* Value props */
.value-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.value-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #C9D7F3; }
.value-card h3 { margin-top: 16px; }
.value-card p { color: var(--slate); margin: 0; font-size: .99rem; }
.icon-tile {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--blue-100); color: var(--blue-600);
  display: grid; place-items: center;
}

/* Trust band */
.trust { border-top: 6px solid transparent; }
.trust-grid {
  display: grid; gap: 30px; text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.trust-item .big {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3rem); color: var(--yellow-400);
  line-height: 1;
}
.trust-item .label {
  margin-top: 8px; text-transform: uppercase; letter-spacing: .12em;
  font-size: .82rem; font-weight: 600; color: #C7D2E8;
}

/* Garage / Towing teaser cards */
.teaser-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.teaser {
  position: relative; overflow: hidden;
  border-radius: var(--radius); padding: clamp(28px, 4vw, 44px);
  color: #fff; background: var(--navy-900);
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  border-top: 6px solid var(--blue-600);
}
.teaser--tow { border-top-color: var(--red-600); }
.teaser h3 { font-size: clamp(1.6rem, 2.6vw, 2rem); }
.teaser p { color: #C7D2E8; margin-bottom: 20px; }
.teaser .btn { margin-top: auto; }
.teaser::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.07), transparent 70%);
}

/* Photo gallery — labeled slots that look intentional even before
   real photos are added. Drop files into /images to fill them. */
.gallery-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.img-slot {
  position: relative; margin: 0; overflow: hidden;
  aspect-ratio: 4 / 3; border-radius: var(--radius);
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,.03) 0 2px, transparent 2px 14px),
    linear-gradient(140deg, var(--navy-800), var(--navy-950));
}
.img-slot img { width: 100%; height: 100%; object-fit: cover; }
.img-slot--wide { aspect-ratio: 16 / 9; }
/* shown only when the image file is missing (js/main.js adds .missing) */
.img-slot .slot-note {
  display: none; position: absolute; inset: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: #8FA0C4; text-align: center; padding: 16px;
}
.img-slot.missing .slot-note { display: flex; }
.slot-note code {
  background: rgba(255,255,255,.09); color: #fff;
  padding: 4px 10px; border-radius: 6px; font-size: .85rem;
}


/* ── 6. PAGE HERO (Garage / Towing / Contact) ────────────────────── */

.page-hero {
  position: relative; color: #fff; background: var(--navy-950);
  padding-block: clamp(64px, 9vw, 104px);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.028) 0 2px, transparent 2px 14px);
}
.page-hero .kicker { color: var(--yellow-400); }
.page-hero h1 { color: #fff; max-width: 15ch; }
.page-hero p { max-width: 560px; }
.page-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* red-cast variant for the towing page */
.page-hero--tow {
  background: linear-gradient(115deg, var(--navy-950) 55%, #3A0E14 100%);
}


/* ── 7. GARAGE ────────────────────────────────────────────────────── */

/* Featured Mass Inspection banner */
.inspection {
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
  background: var(--navy-900); color: #fff;
  border-radius: var(--radius); padding: clamp(26px, 4vw, 40px);
  border-left: 8px solid var(--yellow-400);
}
.inspection__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow-400); color: var(--navy-950);
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; font-size: .95rem;
  padding: 6px 14px; border-radius: 6px;
}
.inspection__text { flex: 1 1 380px; }
.inspection__text h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-top: 12px; }
.inspection__text p { color: #C7D2E8; margin: 0; }

/* Services grid */
.svc-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.svc {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #C9D7F3; }
.svc h3 { margin-top: 14px; font-size: 1.2rem; }
.svc p { color: var(--slate); font-size: .95rem; margin: 0; }

/* Quote CTA panel */
.quote-panel {
  background: var(--navy-950); color: #fff; border-radius: var(--radius);
  padding: clamp(32px, 5vw, 56px); text-align: center;
  position: relative; overflow: hidden;
}
.quote-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.028) 0 2px, transparent 2px 14px);
}
.quote-panel h2 { color: #fff; }
.quote-panel p { color: #C7D2E8; max-width: 520px; margin-inline: auto; }
.quote-panel .btn-row {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px;
}


/* ── 8. TOWING ────────────────────────────────────────────────────── */

/* THE dispatch button — the towing page hero's centerpiece.
   Big number, one tap to call. */
.call-hero {
  display: inline-flex; align-items: center; gap: 18px;
  background: var(--red-600); color: #fff;
  border-radius: 14px; padding: 18px 30px; margin-top: 10px;
  text-decoration: none;
  box-shadow: 0 16px 34px -12px rgba(218, 41, 28, .6);
  transition: background-color .18s, transform .18s;
}
.call-hero:hover { background: var(--red-700); color: #fff; }
.call-hero:active { transform: translateY(1px); }
.call-hero__icon {
  width: 56px; height: 56px; border-radius: 50%; flex: none;
  background: rgba(255,255,255,.14);
  display: grid; place-items: center;
}
.call-hero__label {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: .95rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--yellow-400);
}
.call-hero__num {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 6vw, 3rem); line-height: 1.05;
  letter-spacing: .01em; color: #fff; white-space: nowrap;
}
.call-hero.pulse { animation: tow-pulse 2.6s ease-out infinite; }
@media (max-width: 620px) {
  .call-hero { width: 100%; justify-content: center; padding: 16px 18px; }
}
.call-sub { margin-top: 16px; font-size: .98rem; color: #9FB0D0; }

/* Dispatch board — the two towing lines with their hours.
   js/main.js highlights whichever row is live right now. */
.dispatch-sched { margin-top: 24px; display: grid; gap: 10px; max-width: 600px; }
.dispatch-sched--center { margin-inline: auto; text-align: left; }
.sched-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px; padding: 13px 18px;
  text-decoration: none; transition: border-color .18s, background .18s;
}
.sched-row:hover { border-color: rgba(255,255,255,.55); }
.sched-row__when { flex: 1 1 240px; font-size: .92rem; color: #B9C4DE; line-height: 1.35; }
.sched-row__when strong {
  display: block; color: #fff; font-family: var(--font-display);
  font-weight: 600; font-size: 1.02rem; letter-spacing: .09em; text-transform: uppercase;
}
.sched-row__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.45rem; color: #fff; white-space: nowrap;
}
.sched-row__now {
  display: none; background: var(--yellow-400); color: var(--navy-950);
  font-weight: 700; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.sched-row.is-now { border-color: var(--yellow-400); background: rgba(255,196,0,.10); }
.sched-row.is-now .sched-row__now { display: inline-block; }

/* red-tinted icon tiles for towing service cards */
.icon-tile--tow { background: #FBECEA; color: var(--red-600); }

/* red-cast variant of the big CTA panel */
.quote-panel--tow {
  background: linear-gradient(115deg, var(--navy-950) 55%, #3A0E14 100%);
}

/* "How it works" mini-steps */
.steps { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); counter-reset: step; }
.step {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700; font-size: 2rem;
  color: var(--red-600); display: block; line-height: 1;
}
.step h3 { margin-top: 10px; font-size: 1.18rem; }
.step p { color: var(--slate); font-size: .95rem; margin: 0; }

.request-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: clamp(24px, 4vw, 44px);
  border-top: 8px solid var(--red-600);
}

.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .95rem; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 14px;
  font: inherit; font-size: 16px; /* 16px prevents iOS auto-zoom */
  color: var(--ink); background: #fff;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid rgba(21, 83, 200, .28); border-color: var(--blue-600);
}
.field .hint { font-size: .85rem; color: var(--slate); margin-top: 6px; }

.after-submit { margin-top: 16px; font-size: .95rem; color: var(--slate); }


/* ── 9. CONTACT ───────────────────────────────────────────────────── */

.contact-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.contact-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 3.4vw, 36px);
  box-shadow: var(--shadow-sm); border-top: 6px solid var(--blue-600);
}
.contact-card--tow { border-top-color: var(--red-600); }
.contact-card h3 { font-size: 1.5rem; }
.contact-card ul { list-style: none; margin: 14px 0 0; padding: 0; }
.contact-card li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--line);
  font-size: .99rem;
}
.contact-card li:last-child { border-bottom: 0; }
.contact-card li svg { flex: none; color: var(--blue-600); margin-top: 3px; }
.contact-card--tow li svg { color: var(--red-600); }
.contact-card a { font-weight: 600; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; font-size: .97rem; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr:last-child td { border-bottom: 0; }

.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 7;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 700px) { .map-wrap { aspect-ratio: 4 / 3; } }


/* ── 10. FOOTER ───────────────────────────────────────────────────── */

.site-footer { background: var(--navy-950); color: #B9C4DE; font-size: .96rem; }
.footer-grid {
  display: grid; gap: 36px; padding-block: clamp(48px, 6vw, 72px);
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--yellow-400); font-size: 1rem; margin: 0 0 14px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 5px 0; }
.site-footer a { color: #B9C4DE; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand { color: #fff; font-size: 1.4rem; }
.footer-brand p { margin-top: 14px; max-width: 34ch; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 20px; font-size: .88rem;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
}


/* ── 11. STICKY MOBILE TOW BAR ────────────────────────────────────
   Fixed to the bottom on phones — one tap calls the towing line. */
.sticky-tow {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  min-height: var(--stickybar-h);
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--red-600); color: #fff;
  align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.25rem; letter-spacing: .05em; text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 -6px 18px rgba(8, 18, 38, .25);
}
.sticky-tow:hover, .sticky-tow:focus { color: #fff; background: var(--red-700); }

@media (max-width: 860px) {
  .sticky-tow { display: flex; }
  body { padding-bottom: calc(var(--stickybar-h) + env(safe-area-inset-bottom)); }
}


/* ── 12. MOTION, FOCUS, MISC ─────────────────────────────────────── */

/* Scroll-in reveal (js/main.js adds .in-view) */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in-view { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--yellow-400); outline-offset: 2px; }

::selection { background: var(--yellow-400); color: var(--navy-950); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn--tow.pulse, .call-hero.pulse { animation: none; }
  * { transition-duration: .01ms !important; }
}
