/* ==========================================================================
   Smithfield Towing and Recovery
   Design direction: "The Shoulder" — the materials of a night roadside.
   DOT amber, retroreflective contrast, highway-sign lettering, concrete + asphalt.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Night side */
  --asphalt:       #14161A;
  --asphalt-deep:  #0B0C0F;
  --asphalt-lift:  #1E2229;
  --asphalt-line:  #2C323B;

  /* The beacon — the one accent */
  --beacon:        #FFB020;
  --beacon-hot:    #FFD166;
  --beacon-deep:   #8A5400;

  /* Day side */
  --concrete:      #E6E4DF;
  --concrete-hi:   #F3F2EE;
  --concrete-line: #CFCCC4;

  /* Text */
  --reflect:       #E8EDF2;
  --slate:         #7A8493;
  --ink:           #14161A;
  --ink-soft:      #4A515C;

  /* Type */
  --display: "Overpass", "Helvetica Neue", Arial, sans-serif;
  --body:    "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono:    "Overpass Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Rhythm */
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --shell: 1200px;
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --r: 3px;                 /* signage corners: nearly square, never pill */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--concrete);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--beacon);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  background: var(--beacon); color: var(--ink); padding: .75rem 1.25rem;
  font-family: var(--display); font-weight: 800; text-decoration: none;
  z-index: 200; transition: transform .18s;
}
.skip:focus { transform: translate(-50%, 0); }

.vh {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ---------- Type scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 1.5rem + 4.2vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 1.35rem + 2.9vw, 3.5rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem); letter-spacing: -0.01em; }
p  { text-wrap: pretty; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--beacon-deep);
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: currentColor; flex: none;
}
.on-dark .eyebrow { color: var(--beacon); }

.lede { font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem); color: var(--ink-soft); max-width: 56ch; }
.on-dark .lede { color: #A9B3C0; }

/* ---------- Shell / sections ---------- */
.shell { width: min(100% - (var(--gut) * 2), var(--shell)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--dark { background: var(--asphalt); color: var(--reflect); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.on-dark { color: var(--reflect); }
.on-dark h2, .on-dark h3 { color: #fff; }

/* Retroreflective noise, so the flat darks read as a surface not a swatch */
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}

/* ---------- Chevron hazard panel: used only at the night/day seam ---------- */
.chevron {
  height: 14px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--beacon) 0 14px,
    var(--asphalt-deep) 14px 28px
  );
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.01em; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; border-radius: var(--r);
  padding: 1rem 1.5rem; line-height: 1;
  transition: transform .14s ease, background-color .14s ease, color .14s ease, box-shadow .14s ease;
}
.btn:active { transform: translateY(1px); }

.btn--call {
  background: var(--beacon); color: var(--ink);
  font-size: clamp(1.15rem, 1rem + 1vw, 1.65rem);
  padding: 1.15rem 1.85rem;
  box-shadow: 0 0 0 0 rgba(255,176,32,.55);
}
.btn--call:hover { background: var(--beacon-hot); box-shadow: 0 0 34px -4px rgba(255,176,32,.7); }

.btn--ghost { border-color: currentColor; color: inherit; background: transparent; }
.btn--ghost:hover { background: currentColor; }
.on-dark .btn--ghost:hover { color: var(--asphalt); }
.btn--ghost:hover .btn__t { color: var(--concrete); }
.on-dark .btn--ghost:hover .btn__t { color: var(--asphalt); }

.btn--dark { background: var(--ink); color: var(--concrete-hi); }
.btn--dark:hover { background: #000; }

.btn svg { flex: none; }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,12,15,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--asphalt-line);
  color: var(--reflect);
}
.hdr__in { display: flex; align-items: center; gap: 1rem; min-height: 68px; }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__n {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: 1.0625rem; letter-spacing: -0.015em; color: #fff;
}
.brand__s {
  font-family: var(--mono); font-size: .625rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--slate); margin-top: .28rem;
}

.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: .8125rem; letter-spacing: .04em; text-decoration: none;
  color: #B7C0CC; padding: .55rem .7rem; border-radius: var(--r);
  transition: color .14s, background-color .14s;
}
.nav a:hover { color: #fff; background: var(--asphalt-lift); }
.nav a[aria-current="page"] { color: var(--beacon); }

.hdr__call {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--beacon); color: var(--ink); text-decoration: none;
  font-family: var(--display); font-weight: 900; font-size: 1rem;
  padding: .7rem 1rem; border-radius: var(--r); white-space: nowrap;
  transition: background-color .14s;
}
.hdr__call:hover { background: var(--beacon-hot); }

.burger {
  display: none; background: transparent; border: 1px solid var(--asphalt-line);
  color: var(--reflect); width: 42px; height: 42px; border-radius: var(--r);
  align-items: center; justify-content: center; cursor: pointer;
}
.burger:hover { background: var(--asphalt-lift); }

@media (max-width: 900px) {
  .burger { display: inline-flex; }
  .nav {
    position: fixed; inset: 69px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--asphalt-deep); border-bottom: 1px solid var(--asphalt-line);
    padding: .5rem var(--gut) 1.25rem; gap: 0;
    transform: translateY(-130%); transition: transform .26s cubic-bezier(.2,.8,.3,1);
    max-height: calc(100dvh - 69px); overflow-y: auto;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: .95rem .25rem; font-size: 1.05rem; border-bottom: 1px solid var(--asphalt-line); }
  .hdr__call span.hdr__num { display: none; }
}
@media (max-width: 420px) {
  .brand__s { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% 8%, #23282F 0%, transparent 62%),
    linear-gradient(180deg, #16191E 0%, var(--asphalt-deep) 100%);
  color: var(--reflect);
  padding-block: clamp(2.5rem, 4.5vw, 4rem) clamp(3rem, 6vw, 5rem);
  isolation: isolate;
}

/* Signature: the amber beacon sweep. Two opposed cones, as on a real light bar. */
.hero__beacon {
  position: absolute; top: -46%; left: 50%; width: 190vmax; height: 190vmax;
  translate: -50% 0; pointer-events: none; z-index: 0;
  mix-blend-mode: screen; opacity: .5;
  background:
    conic-gradient(from 0deg,
      rgba(255,176,32,.40) 0deg 11deg,
      transparent 11deg 180deg,
      rgba(255,176,32,.26) 180deg 189deg,
      transparent 189deg 360deg);
  filter: blur(48px);
  animation: sweep 6.5s linear infinite;
}
@keyframes sweep { to { rotate: 360deg; } }

/* Lane markings receding up the page — quiet, structural, not decorative */
.hero__lane {
  position: absolute; inset: auto 0 0 0; height: 62%; z-index: 0;
  pointer-events: none; opacity: .5;
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 92%);
          mask-image: linear-gradient(to top, #000 0%, transparent 92%);
}

.hero__in { position: relative; z-index: 2; display: grid; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 960px) {
  .hero__in { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); align-items: center; }
}

.status {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--mono); font-size: .75rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--beacon);
  border: 1px solid rgba(255,176,32,.34); background: rgba(255,176,32,.07);
  padding: .5rem .85rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.status { margin-bottom: 1.25rem; }
.status__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--beacon); flex: none;
  box-shadow: 0 0 0 0 rgba(255,176,32,.8); animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,176,32,.75); }
  70%  { box-shadow: 0 0 0 11px rgba(255,176,32,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,176,32,0); }
}

.hero h1 { color: #fff; }
.hero h1 em {
  font-style: normal; color: var(--beacon);
  display: block;
}
.hero__sub {
  font-size: clamp(1.0625rem, 1rem + 0.5vw, 1.375rem);
  color: #AEB8C4; max-width: 46ch; margin-top: 1.25rem;
}
.hero__sub b { color: #fff; font-weight: 600; }

.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.9rem; align-items: center; }

.hero__note {
  font-family: var(--mono); font-size: .8125rem; color: var(--slate);
  margin-top: 1.4rem; letter-spacing: .02em;
}

.hero__art { position: relative; }
.hero__art svg { width: 100%; height: auto; }
@media (max-width: 959px) {
  .hero__art { max-width: 460px; opacity: .95; }
}

/* Hero stat rail */
.rail {
  position: relative; z-index: 2;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--asphalt-line);
  display: grid; grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px) { .rail { grid-template-columns: repeat(4, 1fr); } }
.rail__i { padding: 1.35rem 1.1rem 0 0; }
.rail__i + .rail__i { border-left: 1px solid var(--asphalt-line); padding-left: 1.1rem; }
@media (max-width: 759px) {
  .rail__i:nth-child(3) { border-left: 0; padding-left: 0; border-top: 1px solid var(--asphalt-line); margin-top: 1.1rem; }
  .rail__i:nth-child(4) { border-top: 1px solid var(--asphalt-line); margin-top: 1.1rem; }
}
.rail__n {
  font-family: var(--display); font-weight: 900; font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2rem);
  color: var(--beacon); line-height: 1; letter-spacing: -0.02em;
}
.rail__l {
  font-family: var(--mono); font-size: .6875rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--slate); margin-top: .55rem;
}

/* ---------- Section head ---------- */
.head { max-width: 62ch; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.head--wide { max-width: 74ch; }

/* ---------- Services ---------- */
.svc {
  list-style: none; padding: 0; display: grid; gap: 1px;
  background: var(--concrete-line); border: 1px solid var(--concrete-line);
  border-radius: var(--r); overflow: hidden;
}
/* 8 services: only 2 and 4 divide evenly, so never step through 3 */
@media (min-width: 620px)  { .svc { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .svc { grid-template-columns: repeat(4, 1fr); } }

.svc__i {
  background: var(--concrete-hi); padding: clamp(1.4rem, 2.2vw, 1.75rem);
  display: flex; flex-direction: column; gap: .85rem;
  transition: background-color .18s;
}
.svc__i:hover { background: #fff; }
.svc__ic {
  width: 40px; height: 40px; color: var(--ink);
  transition: color .18s, transform .18s;
}
.svc__i:hover .svc__ic { color: var(--beacon-deep); transform: translateY(-2px); }
.svc__i p { color: var(--ink-soft); font-size: .9375rem; margin: 0; }

/* ---------- Sequence: what happens when you call ---------- */
.seq { list-style: none; padding: 0; display: grid; gap: 1.75rem; counter-reset: s; }
@media (min-width: 780px) { .seq { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.seq__i { counter-increment: s; position: relative; padding-top: 2.75rem; }
.seq__i::before {
  content: counter(s, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--mono); font-size: .875rem; font-weight: 700;
  letter-spacing: .1em; color: var(--beacon);
}
.seq__i::after {
  content: ""; position: absolute; top: 1.9rem; left: 0; right: 0; height: 1px;
  background: var(--asphalt-line);
}
.seq__i:last-child::after { background: linear-gradient(90deg, var(--asphalt-line), transparent); }
.seq__i h3 { margin-bottom: .55rem; }
.seq__i p { color: #A0AAB7; font-size: .9375rem; }

/* ---------- Area ---------- */
.area { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 900px) { .area { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; } }

.shields { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2rem; }
.shields svg { height: 62px; width: auto; }

.towns { list-style: none; padding: 0; columns: 2; column-gap: 1.5rem; }
@media (min-width: 520px) { .towns { columns: 3; } }
.towns li {
  break-inside: avoid; padding: .5rem 0; border-bottom: 1px solid var(--concrete-line);
  font-size: .9375rem; display: flex; align-items: center; gap: .55rem;
}
.towns li::before {
  content: ""; width: 5px; height: 5px; background: var(--beacon-deep); flex: none;
  transform: rotate(45deg);
}

/* ---------- Callout band ---------- */
.band {
  position: relative; overflow: hidden;
  background: var(--beacon); color: var(--ink);
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
}
.band__in { display: grid; gap: 1.75rem; align-items: center; }
@media (min-width: 860px) { .band__in { grid-template-columns: minmax(0,1fr) auto; gap: 2.5rem; } }
.band h2 { color: var(--ink); }
.band p { color: #5A4300; font-weight: 500; margin-top: .85rem; max-width: 50ch; }
.band__num {
  font-family: var(--display); font-weight: 900; text-decoration: none; color: var(--ink);
  font-size: clamp(1.75rem, 1.1rem + 3vw, 3rem); letter-spacing: -0.03em;
  display: inline-flex; align-items: center; gap: .75rem; white-space: nowrap;
  border-bottom: 4px solid var(--ink); padding-bottom: .35rem; line-height: 1.05;
  transition: opacity .14s;
}
.band__num:hover { opacity: .72; }

/* ---------- Credential strip (reads like a door decal) ---------- */
.decal {
  display: grid; gap: 1px; background: var(--asphalt-line);
  border: 1px solid var(--asphalt-line); border-radius: var(--r); overflow: hidden;
}
@media (min-width: 640px) { .decal { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .decal { grid-template-columns: repeat(4, 1fr); } }
.decal__i { background: var(--asphalt); padding: 1.4rem 1.25rem; }
.decal__k {
  font-family: var(--mono); font-size: .625rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--slate);
}
.decal__v {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: 1.0625rem; color: #fff; margin-top: .45rem; letter-spacing: -0.01em;
}

/* ---------- Prose + cards (interior pages) ---------- */
.prose { max-width: 68ch; }
.prose p + p { margin-top: 1.15rem; }
.prose h2 { margin-top: 3rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 2.25rem; margin-bottom: .6rem; }
.prose ul { margin: 1.15rem 0; padding-left: 1.1rem; }
.prose li { margin-bottom: .5rem; }
.prose a { color: var(--beacon-deep); text-underline-offset: 3px; }

.cols { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 900px) { .cols { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); } }

.card {
  background: var(--concrete-hi); border: 1px solid var(--concrete-line);
  border-radius: var(--r); padding: clamp(1.5rem, 3vw, 2.15rem);
}
.card--dark { background: var(--asphalt-lift); border-color: var(--asphalt-line); color: var(--reflect); }
.card h3 { margin-bottom: .85rem; }

.dl { display: grid; gap: 1.15rem; margin: 0; }
.dl dt {
  font-family: var(--mono); font-size: .6875rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--beacon-deep); margin-bottom: .3rem;
}
.card--dark .dl dt { color: var(--beacon); }
.dl dd { margin: 0; font-size: 1.0625rem; }
.dl dd a { font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--concrete-line); }
.dl dd a:hover { border-bottom-color: var(--beacon-deep); }
.card--dark .dl dd a { border-bottom-color: var(--asphalt-line); }

/* Detailed service list (services page) */
.detail { display: grid; gap: 1px; background: var(--concrete-line); border: 1px solid var(--concrete-line); border-radius: var(--r); overflow: hidden; }
.detail__i { background: var(--concrete-hi); padding: clamp(1.5rem, 3vw, 2.15rem); display: grid; gap: 1.15rem; }
@media (min-width: 780px) { .detail__i { grid-template-columns: 56px minmax(0, 1fr); gap: 1.75rem; align-items: start; } }
.detail__ic { width: 44px; height: 44px; color: var(--beacon-deep); }
.detail__i h3 { margin-bottom: .5rem; }
.detail__i p { color: var(--ink-soft); }
.detail__tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; list-style: none; padding: 0; }
.detail__tags li {
  font-family: var(--mono); font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--concrete); border: 1px solid var(--concrete-line);
  padding: .3rem .55rem; border-radius: 2px; color: var(--ink-soft);
}

/* ---------- Page masthead (interior pages) ---------- */
.mast {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #16191E 0%, var(--asphalt-deep) 100%);
  color: var(--reflect);
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem);
}
.mast__in { position: relative; z-index: 2; }
.mast h1 { color: #fff; font-size: clamp(2.25rem, 1.5rem + 3.6vw, 4.25rem); }
.mast .lede { margin-top: 1.25rem; }
.crumb {
  font-family: var(--mono); font-size: .6875rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--slate); margin-bottom: 1.15rem;
}
.crumb a { text-decoration: none; color: var(--slate); }
.crumb a:hover { color: var(--beacon); }

/* ---------- Form ---------- */
.form { display: grid; gap: 1.15rem; }
.field { display: grid; gap: .45rem; }
.field label {
  font-family: var(--mono); font-size: .6875rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-soft);
}
.field input, .field textarea, .field select {
  font: inherit; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid var(--concrete-line); border-radius: var(--r);
  padding: .85rem .9rem; width: 100%;
  transition: border-color .14s, box-shadow .14s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--beacon-deep);
  box-shadow: 0 0 0 3px rgba(255,176,32,.28);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: .875rem; color: var(--ink-soft); }
.form__row { display: grid; gap: 1.15rem; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }

.notice {
  border-left: 3px solid var(--beacon); background: rgba(255,176,32,.11);
  padding: 1rem 1.15rem; border-radius: 0 var(--r) var(--r) 0; font-size: .9375rem;
}

/* ---------- Footer ---------- */
.ftr { background: var(--asphalt-deep); color: #96A0AD; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.ftr__grid { display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .ftr__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.ftr h4 {
  font-size: .75rem; font-family: var(--mono); font-weight: 600; letter-spacing: .18em;
  color: var(--slate); margin-bottom: 1.15rem; text-transform: uppercase;
}
.ftr ul { list-style: none; padding: 0; display: grid; gap: .65rem; }
.ftr a { text-decoration: none; color: #B7C0CC; transition: color .14s; }
.ftr a:hover { color: var(--beacon); }
.ftr__brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.15rem; }
.ftr__brand svg { width: 38px; height: 38px; }
.ftr__tag { font-size: .9375rem; max-width: 34ch; }
.ftr__legal {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--asphalt-line);
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between;
  font-family: var(--mono); font-size: .6875rem; letter-spacing: .08em; color: #79838F;
  text-transform: uppercase;
}

/* ---------- Mobile sticky call bar ---------- */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  background: var(--beacon);
  padding: .7rem var(--gut) calc(.7rem + env(safe-area-inset-bottom));
  display: none; align-items: center; gap: .85rem;
  box-shadow: 0 -8px 28px rgba(0,0,0,.32);
}
.dock a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--ink); color: var(--beacon); text-decoration: none;
  font-family: var(--display); font-weight: 900; font-size: 1.15rem;
  padding: .95rem 1rem; border-radius: var(--r); letter-spacing: -0.01em;
}
.dock__txt { display: flex; flex-direction: column; line-height: 1.1; }
.dock__k { font-family: var(--mono); font-size: .625rem; letter-spacing: .16em; color: #6B5000; text-transform: uppercase; }
.dock__v { font-family: var(--display); font-weight: 900; font-size: .9375rem; color: var(--ink); text-transform: uppercase; }

@media (max-width: 780px) {
  .dock { display: flex; }
  body { padding-bottom: 84px; }
}

/* ---------- Scroll reveal ---------- */
.rise { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.3,1); }
.rise.in { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero__beacon { animation: none; opacity: .34; }
  .rise { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .hdr, .dock, .hero__beacon, .band, .chevron { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; }
  .section--dark, .hero, .mast, .ftr { background: #fff !important; color: #000 !important; }
  .on-dark h2, .on-dark h3, .hero h1, .mast h1 { color: #000 !important; }
}

/* ---------- Service-area map (schematic) ---------- */
.map { margin: 0; }
.map__svg {
  width: 100%; height: auto;
  background: linear-gradient(180deg, #171A20 0%, #0E1116 100%);
  border: 1px solid var(--concrete-line); border-radius: var(--r);
}
.map figcaption {
  font-family: var(--mono); font-size: .6875rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-soft); margin-top: .85rem;
}
.section--dark .map figcaption { color: var(--slate); }
.section--dark .map__svg { border-color: var(--asphalt-line); }

/* ---------- Town cards ---------- */
.area__towns {
  list-style: none; padding: 0; display: grid; gap: 1px;
  background: var(--asphalt-line); border: 1px solid var(--asphalt-line);
  border-radius: var(--r); overflow: hidden;
}
@media (min-width: 620px)  { .area__towns { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .area__towns { grid-template-columns: repeat(3, 1fr); } }
.area__t { background: var(--asphalt); padding: 1.5rem 1.35rem; transition: background-color .18s; }
.area__t:hover { background: var(--asphalt-lift); }
.area__t h3 { color: #fff; margin-bottom: .5rem; font-size: 1.0625rem; }
.area__t p { color: #97A1AE; font-size: .9rem; margin: 0; }

/* ---------- Hours table ---------- */
.hours { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.hours li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .6rem 0; border-bottom: 1px solid var(--concrete-line); font-size: .9375rem;
}
.hours li:last-child { border-bottom: 0; }
.hours span { color: var(--ink-soft); }
.hours b { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: .8125rem; letter-spacing: .02em; }

/* ---------- Masthead headline line breaks ---------- */
.mast h1 br { display: none; }
@media (min-width: 720px) { .mast h1 br { display: inline; } }
