/* ====================================================================
   GIT-ER-DONE TOWING — American Highway Industrial
   Display: Bungee · Body: DM Sans · Mono: JetBrains Mono
   Palette: asphalt / DOT yellow / highway red / bone / blueprint navy
   ==================================================================== */

:root {
  --asphalt:    #0d0d0e;
  --asphalt-2:  #1a1a1d;
  --asphalt-3:  #28282d;
  --bone:       #f4ede0;
  --bone-2:     #ebe2cf;
  --paper:      #fffaf0;
  --yellow:     #ffcc00;
  --yellow-2:   #ffb800;
  --red:        #e11d2c;
  --red-2:      #b8141f;
  --navy:       #0d1f4f;
  --ink:        #0e0e10;
  --ink-2:      #2a2a30;
  --muted:      #6a6a72;
  --line:       rgba(13,13,14,.14);
  --line-2:     rgba(13,13,14,.32);
  --shadow-hard:    6px 6px 0 0 var(--asphalt);
  --shadow-yellow:  6px 6px 0 0 var(--yellow);
  --shadow-red:     6px 6px 0 0 var(--red);
  --max:        1240px;
  --ease:       cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font: 16px/1.6 "DM Sans", system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(13,13,14,.06) 1px, transparent 0);
  background-size: 28px 28px;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--ink); text-decoration: none; }

/* Hazard tape pattern reused everywhere */
.hazard {
  height: 14px;
  background-image: repeating-linear-gradient(135deg,
    var(--yellow) 0 22px, var(--asphalt) 22px 44px);
}

/* ============== TYPOGRAPHY ============== */
.display {
  font-family: "Bungee", "Impact", system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: .005em;
  line-height: .95;
  margin: 0;
  text-transform: uppercase;
}
.kicker {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: .76rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 1rem;
  padding: .35rem .6rem;
  background: var(--paper);
  border: 1px solid var(--line-2);
}
.kicker em { font-style: normal; color: var(--red); font-weight: 700; }
.kicker-y { color: var(--yellow); }

.hl    { background: var(--yellow); color: var(--asphalt); padding: 0 .15em; box-shadow: 4px 4px 0 0 var(--asphalt); }
.hl-y  { color: var(--yellow); -webkit-text-stroke: 1px var(--asphalt); text-shadow: 4px 4px 0 var(--asphalt); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section-head { margin: 0 0 2.75rem; }
.section-lede { color: var(--muted); font-size: 1.05rem; margin: 1rem 0 0; max-width: 60ch; }

/* ============== SKIP / TOPBAR ============== */
.skip { position: absolute; left: -9999px; top: 0; padding: .8rem 1rem; background: var(--asphalt); color: var(--yellow); z-index: 999; font-family: "JetBrains Mono", monospace; }
.skip:focus { left: 0; top: 0; }

.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 1rem;
  padding: .8rem 24px;
  background: var(--asphalt);
  color: var(--bone);
  border-bottom: 4px solid var(--yellow);
}
.brand { display: flex; align-items: center; gap: .75rem; color: var(--bone); }
.brand img { width: 38px; height: 38px; border: 2px solid var(--yellow); object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: "Bungee"; font-weight: 400; font-size: 1.05rem; letter-spacing: .01em; color: var(--bone); }
.brand-text small { font-family: "JetBrains Mono", monospace; color: var(--yellow); font-size: .65rem; letter-spacing: .15em; margin-top: 4px; }
.brand-text small span { color: var(--bone); opacity: .4; }

.nav { display: none; gap: 1.5rem; margin-left: auto; }
.nav a { font-family: "JetBrains Mono", monospace; color: var(--bone); font-size: .8rem; letter-spacing: .1em; transition: color .2s var(--ease); }
.nav a:hover { color: var(--yellow); }
@media (min-width: 920px) { .nav { display: inline-flex; } }

.topbar-call {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--red); color: var(--bone);
  padding: .6rem .95rem;
  font-family: "JetBrains Mono", monospace; font-weight: 700; font-size: .88rem; letter-spacing: .04em;
  border: 2px solid var(--bone);
  box-shadow: 3px 3px 0 0 var(--yellow);
  transition: transform .12s var(--ease), box-shadow .12s var(--ease), background .15s var(--ease);
}
@media (min-width: 920px) { .topbar-call { margin-left: 0; } }
.topbar-call:hover { background: var(--red-2); transform: translate(-1px,-1px); box-shadow: 5px 5px 0 0 var(--yellow); color: var(--bone); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,204,0,.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,204,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,204,0,0); }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  background: var(--asphalt); color: var(--bone);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; opacity: .35;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,204,0,.04) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(255,204,0,.04) 0 1px, transparent 1px 38px);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; } }

.signal {
  font-family: "JetBrains Mono", monospace;
  font-size: .82rem; letter-spacing: .14em;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .4rem .75rem;
  background: rgba(255,204,0,.08);
  border: 1px solid rgba(255,204,0,.5);
  color: var(--yellow);
  margin: 0 0 1.5rem;
  animation: fadeUp .7s var(--ease) both;
}
.signal-dot { width: 8px; height: 8px; border-radius: 50%; background: #2dd45a; box-shadow: 0 0 0 0 #2dd45a; animation: pulse-g 1.8s infinite; }
@keyframes pulse-g {
  0% { box-shadow: 0 0 0 0 rgba(45,212,90,.7); }
  70% { box-shadow: 0 0 0 8px rgba(45,212,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,212,90,0); }
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  color: var(--bone);
  margin: 0 0 1.5rem;
}
.hero h1 .line { display: block; opacity: 0; transform: translateY(20px); animation: fadeUp .8s var(--ease) forwards; white-space: nowrap; }
.hero h1 .line-1 { animation-delay: .08s; }
.hero h1 .line-2 { animation-delay: .22s; padding-left: .8em; }
.hero h1 .line-3 { animation-delay: .36s; padding-left: 1.6em; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.lede {
  max-width: 44ch; color: rgba(244,237,224,.78);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin: 0 0 1.75rem;
  animation: fadeUp .8s var(--ease) .5s both;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin: 0 0 2rem; animation: fadeUp .8s var(--ease) .6s both; }

.hero-meta {
  list-style: none; padding: 1rem 1.25rem; margin: 0;
  border: 1px solid rgba(255,204,0,.25);
  display: grid; gap: .65rem; max-width: 480px;
  background: rgba(0,0,0,.3);
  animation: fadeUp .8s var(--ease) .7s both;
}
.hero-meta li {
  display: grid; grid-template-columns: 90px 1fr; gap: 1rem;
  font-family: "JetBrains Mono", monospace; font-size: .82rem; letter-spacing: .04em;
  border-bottom: 1px dashed rgba(255,204,0,.18);
  padding-bottom: .5rem;
}
.hero-meta li:last-child { border-bottom: 0; padding-bottom: 0; }
.m-key { color: var(--yellow); }
.m-val { color: var(--bone); }

/* Big atmospheric stencil mark — a billboard ghost across the bottom of the hero */
.big-mark {
  position: absolute;
  left: 50%; bottom: clamp(-1.5rem, -2vw, -0.5rem);
  transform: translateX(-50%);
  z-index: 0;
  font-family: "Bungee Shade", "Bungee", sans-serif;
  font-size: clamp(4rem, 17vw, 15rem);
  line-height: .85;
  letter-spacing: -.025em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,204,0,.18);
  text-stroke: 1px rgba(255,204,0,.18);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  opacity: .55;
  mix-blend-mode: screen;
}

/* Hero right: photo with brutalist border + drop shadow */
.hero-right { position: relative; animation: fadeUp .9s var(--ease) .35s both; }
.hero-photo {
  position: relative; margin: 0;
  border: 3px solid var(--yellow);
  box-shadow: 12px 12px 0 0 var(--red);
  overflow: hidden;
  transform: rotate(-1deg);
}
.hero-photo img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 4/3; filter: contrast(1.05) saturate(1.05); }
.hero-photo figcaption {
  position: absolute; left: 0; bottom: 0; right: 0;
  background: var(--asphalt); color: var(--yellow);
  padding: .55rem .85rem;
  font-family: "JetBrains Mono", monospace; font-size: .75rem; letter-spacing: .1em;
  display: flex; justify-content: space-between;
  border-top: 2px solid var(--yellow);
}
.cap-coord { color: var(--bone); opacity: .8; }

/* ============== TICKER ============== */
.ticker {
  background: var(--yellow); color: var(--asphalt);
  border-top: 4px solid var(--asphalt);
  border-bottom: 4px solid var(--asphalt);
  overflow: hidden; padding: .85rem 0;
}
.ticker-track {
  display: inline-flex; gap: 2.5rem;
  font-family: "Bungee", sans-serif; font-size: .95rem; letter-spacing: .08em;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  padding-left: 2.5rem;
}
.ticker-track span { display: inline-block; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1rem 1.4rem;
  font-family: "Bungee", sans-serif; font-size: 1rem; font-weight: 400;
  letter-spacing: .03em; text-transform: uppercase;
  border: 3px solid var(--asphalt); cursor: pointer;
  transition: transform .12s var(--ease), box-shadow .12s var(--ease), background .15s var(--ease), color .15s var(--ease);
}
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--asphalt) !important; }

.btn-call {
  background: var(--red); color: var(--bone);
  border-color: var(--bone);
  box-shadow: 6px 6px 0 0 var(--yellow);
  padding: 1rem 1.5rem;
  display: inline-flex; align-items: baseline; gap: .65rem;
}
.btn-call:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 0 var(--yellow); background: var(--red-2); color: var(--bone); }
.btn-num   { font-size: 1.1rem; }
.btn-phone { font-family: "JetBrains Mono", monospace; font-size: .95rem; letter-spacing: .04em; }

.btn-ghost {
  background: transparent; color: var(--bone);
  border-color: var(--yellow);
  box-shadow: 6px 6px 0 0 transparent;
  font-size: .95rem;
}
.btn-ghost:hover { background: var(--yellow); color: var(--asphalt); transform: translate(-2px,-2px); box-shadow: 6px 6px 0 0 var(--asphalt); }

.btn-submit {
  background: var(--yellow); color: var(--asphalt);
  border-color: var(--asphalt);
  box-shadow: 6px 6px 0 0 var(--asphalt);
  width: 100%; justify-content: center;
  padding: 1.15rem;
  font-size: 1.05rem;
}
.btn-submit:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 0 var(--asphalt); background: var(--yellow-2); }

/* ============== SECTIONS BASE ============== */
section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.services { background: var(--bone); }
.coverage { background: var(--asphalt); color: var(--bone); }
.gallery  { background: var(--bone-2); }
.quote    { background: var(--paper); }

.coverage .kicker { background: var(--asphalt-2); color: var(--yellow); border-color: var(--asphalt-3); }
.coverage .display { color: var(--bone); }
.coverage .section-lede { color: rgba(244,237,224,.7); }

/* ============== SERVICES (BAYS) ============== */
.bay-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0;
  grid-template-columns: 1fr;
  border: 3px solid var(--asphalt);
}
@media (min-width: 620px) { .bay-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .bay-grid { grid-template-columns: repeat(4, 1fr); } }

.bay-grid li {
  position: relative;
  background: var(--paper);
  padding: 2rem 1.5rem 1.6rem;
  border-right: 3px solid var(--asphalt);
  border-bottom: 3px solid var(--asphalt);
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: background .2s var(--ease);
  overflow: hidden;
}
.bay-grid li:nth-child(2n) { background: var(--bone); }
.bay-grid li:hover { background: var(--yellow); }
.bay-grid li::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background-image: repeating-linear-gradient(135deg, var(--asphalt) 0 8px, transparent 8px 16px);
  opacity: 0; transition: opacity .2s var(--ease);
}
.bay-grid li:hover::after { opacity: 1; }
.bay-num {
  position: absolute; top: .9rem; left: 1rem;
  font-family: "JetBrains Mono", monospace; font-size: .85rem; letter-spacing: .12em;
  color: var(--red); font-weight: 700;
}
.bay-grid li::before {
  content: attr(data-num);
  position: absolute; top: .8rem; right: .9rem;
  font-family: "Bungee Shade", sans-serif;
  color: rgba(13,13,14,.06); font-size: 5rem; line-height: 1;
}
.bay-grid li h3 {
  font-family: "Bungee", sans-serif; font-weight: 400;
  font-size: 1.4rem; letter-spacing: .01em; margin: 0 0 .35rem;
  color: var(--asphalt);
}
.bay-grid li p { margin: 0; color: var(--ink-2); font-size: .92rem; line-height: 1.5; }

/* clean up trailing borders */
@media (min-width: 980px) {
  .bay-grid li:nth-child(4n) { border-right: 0; }
  .bay-grid li:nth-last-child(-n+1) { border-bottom: 0; }
}
@media (min-width: 620px) and (max-width: 979px) {
  .bay-grid li:nth-child(2n) { border-right: 0; }
}
@media (max-width: 619px) {
  .bay-grid li { border-right: 0; }
}

/* ============== COVERAGE BOARD ============== */
.board {
  font-family: "JetBrains Mono", monospace;
  border: 2px solid var(--yellow);
  background: var(--asphalt-2);
  box-shadow: 8px 8px 0 0 var(--red);
}
.board-head, .board ul li {
  display: grid; gap: 1rem;
  grid-template-columns: 90px 1fr;
  padding: .85rem 1.2rem;
  font-size: .9rem; letter-spacing: .05em;
  border-bottom: 1px dashed rgba(255,204,0,.2);
}
@media (min-width: 720px) {
  .board-head, .board ul li { grid-template-columns: 110px 1fr 130px; }
  .board-status, .status { display: block; }
}
.board-head {
  background: var(--asphalt);
  color: var(--yellow); font-weight: 700; letter-spacing: .12em;
  border-bottom: 2px solid var(--yellow);
}
.board-status, .status { display: none; }
.board ul { list-style: none; padding: 0; margin: 0; }
.board ul li { color: var(--bone); transition: background .15s var(--ease); }
.board ul li:nth-child(odd) { background: rgba(255,204,0,.03); }
.board ul li:hover { background: rgba(255,204,0,.1); }
.board ul li:last-child { border-bottom: 0; }
.zip { color: var(--yellow); font-weight: 700; }
.zone { color: var(--bone); }
.status { color: #2dd45a; font-size: .8rem; }

/* ============== GALLERY ============== */
.gallery-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }
  .g-feature   { grid-column: span 2; grid-row: span 2; }
}
.gallery-grid a {
  position: relative; overflow: hidden;
  border: 3px solid var(--asphalt);
  display: block; line-height: 0;
  background: var(--asphalt);
  box-shadow: 6px 6px 0 0 var(--yellow);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.gallery-grid a:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 0 var(--yellow); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; transition: transform .5s var(--ease); }
@media (min-width: 760px) { .gallery-grid img { aspect-ratio: auto; } }
.gallery-grid a:hover img { transform: scale(1.05); }
.g-tag {
  position: absolute; top: 8px; left: 8px;
  background: var(--asphalt); color: var(--yellow);
  font-family: "JetBrains Mono", monospace; font-size: .68rem; letter-spacing: .12em;
  padding: .25rem .5rem; border: 1px solid var(--yellow);
}

/* ============== QUOTE / WORK ORDER ============== */
.quote-inner {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 920px) { .quote-inner { grid-template-columns: 1fr 1.15fr; gap: 3rem; } }

.quote .display { font-size: clamp(2rem, 5vw, 3.4rem); }
.quote-copy p { color: var(--ink-2); font-size: 1rem; max-width: 38ch; }
.quote-or { margin-top: 1.5rem; line-height: 1.45; }
.link-call {
  display: inline-block; margin-top: .35rem;
  font-family: "Bungee", sans-serif; font-size: 1.1rem; letter-spacing: .02em;
  color: var(--asphalt);
  background: var(--yellow);
  padding: .55rem .8rem;
  border: 2px solid var(--asphalt);
  box-shadow: 4px 4px 0 0 var(--asphalt);
  transition: transform .12s var(--ease), box-shadow .12s var(--ease);
}
.link-call:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 0 var(--asphalt); color: var(--asphalt); }

.quote-form {
  background: var(--paper); color: var(--ink);
  padding: clamp(.9rem, 3vw, 1.6rem);
  display: grid; gap: clamp(.65rem, 1.6vw, 1rem);
  border: 3px solid var(--asphalt);
  box-shadow: clamp(4px, 1.2vw, 10px) clamp(4px, 1.2vw, 10px) 0 0 var(--red);
  min-width: 0;
}
.form-head {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(.65rem, 1.6vw, .8rem); letter-spacing: .1em;
  padding-bottom: .65rem;
  border-bottom: 2px dashed var(--line-2);
  margin-bottom: .15rem;
}
.form-no { color: var(--ink-2); }
.form-stamp {
  color: var(--red); font-weight: 700;
  border: 2px solid var(--red); padding: .15rem .5rem;
  transform: rotate(-3deg);
  font-size: clamp(.65rem, 1.5vw, .78rem);
}
.quote-form label {
  display: grid; gap: .35rem;
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  font-size: clamp(.66rem, 1.4vw, .72rem);
  color: var(--ink-2);
  letter-spacing: .11em;
  min-width: 0;
}
.quote-form input, .quote-form textarea {
  font: 400 clamp(.95rem, 1.4vw, 1rem)/1.4 "DM Sans", sans-serif;
  padding: clamp(.6rem, 1.8vw, .8rem) clamp(.7rem, 1.8vw, .9rem);
  border: 2px solid var(--asphalt); border-radius: 0;
  background: var(--bone);
  color: var(--ink);
  width: 100%; min-width: 0;
  transition: background .12s var(--ease), box-shadow .12s var(--ease);
}
.quote-form input:hover, .quote-form textarea:hover { background: var(--paper); }
.quote-form input:focus, .quote-form textarea:focus {
  outline: none; background: var(--paper);
  box-shadow: 4px 4px 0 0 var(--yellow);
  transform: translate(-1px,-1px);
}
.quote-form input[type="file"] { padding: .55rem; background: var(--paper); }

.row2 { display: grid; gap: clamp(.65rem, 1.6vw, 1rem); grid-template-columns: 1fr 1fr; }
.row3 { display: grid; gap: clamp(.65rem, 1.6vw, 1rem); grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 600px) { .row3, .row2 { grid-template-columns: 1fr; } }

.quote-form fieldset {
  border: 2px solid var(--asphalt);
  padding: clamp(.45rem, 1.4vw, .65rem) clamp(.6rem, 1.6vw, .85rem) clamp(.4rem, 1.2vw, .55rem);
  margin: 0; min-width: 0;
}
.quote-form legend {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(.6rem, 1.3vw, .7rem); color: var(--ink-2);
  padding: 0 .3rem; letter-spacing: .12em;
}
.quote-form label.radio,
.radio { display: inline-flex; align-items: center; gap: .4rem; font-weight: 500; color: var(--ink); margin-right: clamp(.6rem, 1.6vw, 1rem); cursor: pointer; }
.radio input,
.quote-form input[type="radio"],
.quote-form input[type="checkbox"] { accent-color: var(--red); width: 16px; height: 16px; flex: 0 0 auto; }
.radio span { font-family: "JetBrains Mono", monospace; font-size: clamp(.72rem, 1.5vw, .8rem); letter-spacing: .08em; }
.form-msg { margin: 0; font-family: "JetBrains Mono", monospace; font-size: clamp(.7rem, 1.4vw, .78rem); letter-spacing: .08em; min-height: 1.2em; color: var(--asphalt); overflow-wrap: anywhere; }
.form-msg.ok  { color: #047a2a; }
.form-msg.err { color: var(--red); }

/* ============== FOOTER ============== */
.footer { background: var(--asphalt); color: var(--bone); }
.footer-inner {
  display: grid; gap: 1.5rem; padding-top: 2.5rem; padding-bottom: 5.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .footer-inner { grid-template-columns: 1fr 1.1fr 1fr; align-items: start; padding-bottom: 2.5rem; }
  .footer-legal { text-align: right; }
}
.footer a { color: var(--bone); transition: color .15s var(--ease); }
.footer a:hover { color: var(--yellow); }
.footer-brand strong { font-family: "Bungee"; font-size: 1.3rem; color: var(--yellow); display: block; margin-bottom: .35rem; }
.footer-brand small { font-family: "JetBrains Mono", monospace; font-size: .72rem; letter-spacing: .12em; color: var(--bone); opacity: .65; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; font-family: "JetBrains Mono", monospace; font-size: .85rem; }
.footer-contact a span { color: var(--yellow); margin-right: .5rem; }
.footer-legal p { font-family: "JetBrains Mono", monospace; font-size: .75rem; letter-spacing: .1em; margin: 0 0 .35rem; color: var(--bone); }
.footer-legal small { font-family: "JetBrains Mono", monospace; font-size: .65rem; letter-spacing: .08em; color: rgba(244,237,224,.5); }

/* ============== STICKY MOBILE CALL ============== */
.sticky-call {
  position: fixed; left: 14px; right: 14px; bottom: 14px;
  display: none;
  align-items: center; justify-content: center; gap: .65rem;
  background: var(--red); color: var(--bone);
  padding: 1.05rem; padding-bottom: calc(1.05rem + env(safe-area-inset-bottom));
  font-family: "Bungee", sans-serif; font-size: 1rem; letter-spacing: .04em;
  border: 3px solid var(--bone);
  box-shadow: 6px 6px 0 0 var(--yellow);
  z-index: 100;
}
.sc-pulse { width: 12px; height: 12px; border-radius: 50%; background: var(--yellow); animation: pulse 1.6s infinite; }
@media (max-width: 760px) {
  .sticky-call { display: flex; }
  .topbar-call .phn-num { display: none; }
  .topbar-call { padding: .55rem; }
}

/* ============== MOBILE POLISH ==============
   Tame brutalist shadows + oversized type so nothing clips on small screens. */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  section { padding: clamp(3rem, 10vw, 4.5rem) 0; }

  /* Display headings — shrink + soften the hard text-shadow */
  h2.display { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hl-y { text-shadow: 2px 2px 0 var(--asphalt); }
  .hl   { box-shadow: 2px 2px 0 0 var(--asphalt); }
  .section-head { margin: 0 0 1.75rem; }
  .section-lede { font-size: .95rem; }

  /* Quote / Work-order */
  .quote .display { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .quote-inner { gap: 1.75rem; }
  .quote-form {
    padding: 1.1rem;
    box-shadow: 5px 5px 0 0 var(--red);
    gap: .8rem;
  }
  .form-head {
    flex-wrap: wrap; gap: .55rem;
    font-size: .68rem; letter-spacing: .08em;
  }
  .form-stamp { transform: none; font-size: .7rem; padding: .15rem .45rem; }
  .quote-form input, .quote-form textarea { padding: .7rem .8rem; font-size: .98rem; }
  .quote-form fieldset { padding: .55rem .7rem .45rem; }
  .quote-form legend { font-size: .65rem; }
  .radio { margin-right: .65rem; }
  .radio span { font-size: .75rem; }
  .btn-submit { padding: 1rem; font-size: .98rem; box-shadow: 4px 4px 0 0 var(--asphalt); }
  .link-call { font-size: .98rem; padding: .5rem .7rem; box-shadow: 3px 3px 0 0 var(--asphalt); }

  /* Other brutalist shadows that would clip viewport on mobile */
  .board { box-shadow: 4px 4px 0 0 var(--red); }
  .gallery-grid a { box-shadow: 3px 3px 0 0 var(--yellow); }
  .hero-photo { box-shadow: 8px 8px 0 0 var(--red); }
  .topbar-call { box-shadow: 2px 2px 0 0 var(--yellow); }
  .btn-call { box-shadow: 4px 4px 0 0 var(--yellow); }
  .btn-call:hover { box-shadow: 6px 6px 0 0 var(--yellow); }
  .sticky-call { box-shadow: 4px 4px 0 0 var(--yellow); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition: none !important; }
}
