/* Larry Menz Towing — Bourbonnais. Black fleet + door purple + gold call.
   Not IVT red, not JR river-green, not Action chrome, not Moe amber, not Todd yellow. */
@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800&family=Figtree:wght@400;500;600;700&display=swap");

:root {
  --ink: #100f12;
  --ink-2: #1c191f;
  --metal: #2a262e;
  --paper: #f2ebe0;
  --cream: #e7dccb;
  --muted: #6e675e;
  --line: #d4c9b8;
  --purple: #b24ec4;
  --purple-deep: #7a2e8c;
  --gold: #d4b45a;
  --gold-hover: #e4c76e;
  --gold-ink: #1a1508;
  --call: var(--gold);
  --call-fg: var(--gold-ink);
  --white: #faf7f2;
  --display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --sans: "Figtree", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
}
body { padding-bottom: 4.75rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple-deep); }
a:hover { color: var(--ink); }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-wrap: balance;
  margin: 0 0 0.5rem;
  line-height: 0.95;
}
h1 { font-size: clamp(2.4rem, 1.1rem + 6vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; text-wrap: pretty; }
.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 80;
  background: var(--gold);
  color: var(--gold-ink);
  padding: 0.5rem 0.85rem;
}

.preview-bar {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.45rem 0.75rem;
}
.preview-bar a { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.6rem;
  padding: 0.45rem 1rem;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 3px solid var(--purple);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--paper);
  text-decoration: none;
  min-width: 0;
  flex: 1;
}
.brand:hover { color: var(--gold); }
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: var(--paper);
  border-radius: 4px;
  padding: 4px;
}
.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.brand em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}
.nav-toggle {
  margin-left: auto;
  flex: 0 0 auto;
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--metal);
  min-height: 44px;
  min-width: 44px;
  padding: 0 0.75rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-toggle:hover, .nav-toggle:focus-visible { border-color: var(--gold); color: var(--gold); }
.nav {
  display: none;
  gap: 0.2rem 1rem;
}
.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--ink-2);
  padding: 0.75rem 1rem 1rem;
  border-bottom: 3px solid var(--purple);
}
.nav a {
  color: var(--paper);
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-weight: 600;
}
.nav a[aria-current="page"], .nav a:hover { color: var(--gold); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.65rem 1.15rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
.btn-call {
  background: var(--gold);
  color: var(--gold-ink);
  border: 0;
}
.btn-call:hover, .btn-call:focus-visible {
  background: var(--gold-hover);
  color: var(--gold-ink);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: var(--gold-ink); }
.btn-lg { min-height: 56px; font-size: 1.05rem; padding: 0.8rem 1.4rem; }
.btn-header {
  display: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  color: var(--white);
  background: var(--ink) center / cover no-repeat;
  min-height: 72vh;
  display: grid;
  align-items: end;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,15,18,0.88) 0%, rgba(16,15,18,0.55) 48%, rgba(16,15,18,0.2) 100%),
    linear-gradient(180deg, rgba(16,15,18,0.15) 0%, rgba(16,15,18,0.75) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 2.5rem;
}
.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.65rem;
}
.lede {
  font-size: 1.15rem;
  max-width: 34rem;
  color: var(--paper);
}
.phone-xl {
  font-family: var(--display);
  font-size: clamp(2rem, 1rem + 4vw, 3.2rem);
  font-weight: 800;
  margin: 0.4rem 0 1rem;
  line-height: 1;
}
.phone-xl a {
  color: var(--gold);
  text-decoration: none;
}
.phone-xl a:hover { color: var(--gold-hover); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}
.hours-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--cream);
}
.hours-row strong { color: var(--gold); font-weight: 700; }

.section { padding: 3rem 0; }
.section-ink {
  background: var(--ink);
  color: var(--paper);
}
.section-ink h2 { color: var(--paper); }
.section-ink p { color: var(--cream); }
.kicker {
  color: var(--purple);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
}
.section-ink .kicker { color: var(--gold); }

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--purple);
  padding: 1.1rem 1.15rem 0.85rem;
}
.card h3 { margin-bottom: 0.35rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.section-ink .card {
  background: var(--ink-2);
  border-color: var(--metal);
  color: var(--paper);
}
.section-ink .card p { color: var(--cream); }

.split {
  display: grid;
  gap: 1.5rem;
}
.photo-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}
.caption {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.45rem 0 0;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-row a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}
.social-row a:hover { background: var(--gold); color: var(--gold-ink); }

.nap {
  font-size: 1.02rem;
}
.nap strong { display: block; font-family: var(--display); font-size: 1.4rem; }

.gallery {
  display: grid;
  gap: 1rem;
}
.gallery figure { margin: 0; }
.gallery img {
  width: 100%;
  object-fit: cover;
  min-height: 200px;
  background: var(--ink);
}
.gallery figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

.form {
  display: grid;
  gap: 0.75rem;
  max-width: 32rem;
}
label { font-weight: 600; font-size: 0.9rem; }
input, textarea {
  width: 100%;
  font: 400 1rem var(--sans);
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  min-height: 48px;
}
textarea { min-height: 120px; resize: vertical; }
.honey { position: absolute; left: -9999px; }
.form-status { min-height: 1.4em; font-weight: 600; }
.hours-box {
  background: var(--ink);
  color: var(--paper);
  padding: 1.25rem 1.3rem;
  border-top: 3px solid var(--purple);
}
.hours-box h3 { color: var(--gold); }
.hours-box p { margin: 0 0 0.5rem; }
.hours-box a { color: var(--gold); }

.map-note a { font-weight: 700; }

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 2rem 0 5.5rem;
  border-top: 3px solid var(--purple);
  font-size: 0.92rem;
}
.site-footer a { color: var(--gold); }
.site-footer .credit { margin-top: 1rem; }
.site-footer .credit a { font-weight: 700; }

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.9rem;
  background: var(--ink);
  border-top: 3px solid var(--gold);
}
.sticky-call .shop {
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sticky-call .btn-call { flex: 1; max-width: 22rem; }

@media (min-width: 720px) {
  .nav-toggle { display: none; }
  .nav {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    position: static;
    background: none;
    padding: 0;
    border: 0;
  }
  .nav a { padding: 0 0.2rem; }
  .btn-header { display: inline-flex; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .span-2 { grid-column: 1 / -1; }
  .gallery .span-2 img { max-height: 420px; width: 100%; object-fit: cover; }
  body { padding-bottom: 0; }
  .sticky-call { display: none; }
  .site-footer { padding-bottom: 2rem; }
}

@media (min-width: 960px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
