/* ========================================================
   PARKER TOW & GO — Brand stylesheet
   Palette pulled from the shield logo: deep red, hazard
   amber, steel blue, asphalt black, off-white.
   ======================================================== */

:root {
  --ink:        #0B0C0E;   /* near-black, body text on light */
  --night:      #14161A;   /* surfaces */
  --steel:      #1E2128;   /* card surfaces on dark */
  --asphalt:    #2A2E36;
  --line:       #2F343D;

  --red:        #D62828;   /* tow truck red */
  --red-deep:   #9F1B1B;
  --amber:      #F5A524;   /* hazard / shield amber */
  --amber-soft: #FFD166;
  --blue:       #1D4ED8;   /* logo blue */
  --blue-soft:  #60A5FA;

  --paper:      #F6F2EC;   /* warm cream */
  --paper-2:    #ECE6DC;
  --white:      #FFFFFF;
  --muted:      #6B7280;
  --muted-2:    #9AA0A6;

  --radius:     14px;
  --radius-lg:  22px;
  --shadow-1:   0 1px 0 rgba(0,0,0,.04), 0 8px 24px -12px rgba(11,12,14,.18);
  --shadow-2:   0 24px 60px -20px rgba(11,12,14,.35);

  --container:  1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Keyboard-only focus ring — brand red with offset for visibility on any background. */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Typography ---------- */
.display, h1, h2, h3 {
  font-family: "Anton", "Barlow Condensed", "Oswald", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .95;
  margin: 0;
  text-transform: uppercase;
}
h1 { font-size: clamp(48px, 7.4vw, 112px); }
h2 { font-size: clamp(36px, 5vw, 68px); }
h3 { font-size: clamp(22px, 2.2vw, 30px); }

p { margin: 0 0 1em; }
.eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content:""; width: 28px; height: 2px; background: currentColor; display: inline-block;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head p { color: var(--muted); font-size: 18px; max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px; font-weight: 700;
  font-family: "Manrope", sans-serif; font-size: 15px;
  letter-spacing: .04em; text-transform: uppercase;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-deep); }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: var(--amber-soft); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--steel); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Top utility bar ---------- */
.utility {
  background: var(--ink);
  color: #D3D6DB;
  font-size: 13px;
  border-bottom: 1px solid #000;
}
.utility .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 40px; gap: 20px; flex-wrap: wrap;
}
.utility .left { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.utility .left span { display: inline-flex; gap: 8px; align-items: center; }
.utility .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,.7); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(34,197,94,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0);  }
  100% { box-shadow: 0 0 0 0   rgba(34,197,94,0);  }
}
.utility .right a { color: #D3D6DB; }
.utility .right a:hover { color: var(--amber); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,242,236,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(11,12,14,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand img { height: 58px; width: auto; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .t1 { font-family: "Anton", sans-serif; font-size: 22px; letter-spacing: .02em; color: var(--blue); white-space: nowrap; }
.brand-text .t2 { font-family: "Anton", sans-serif; font-size: 14px; letter-spacing: .14em; color: var(--amber); margin-top: 4px; white-space: nowrap; }

.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  padding: 10px 16px; font-weight: 700; font-size: 14px;
  letter-spacing: .08em; text-transform: uppercase; border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: rgba(11,12,14,.06); color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1;
}
.nav-phone .label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.nav-phone a { font-family: "Anton", sans-serif; font-size: 26px; color: var(--ink); }
.nav-phone a:hover { color: var(--red); }

.nav-toggle {
  display: none; background: var(--ink); color: #fff; border: 0; width: 46px; height: 46px;
  border-radius: 10px; align-items: center; justify-content: center; cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: #fff;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 720px;
  align-items: stretch;
}
.hero-copy {
  padding: clamp(48px, 7vw, 96px) clamp(28px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  background:
    radial-gradient(1100px 600px at -10% 110%, rgba(214,40,40,.22), transparent 60%),
    radial-gradient(800px 500px at 110% -10%, rgba(245,165,36,.15), transparent 60%),
    var(--ink);
}
.hero-copy .eyebrow { color: var(--amber); }
.hero-copy h1 {
  margin: 18px 0 22px;
  color: #fff;
  font-size: clamp(54px, 8vw, 120px);
}
.hero-copy h1 .accent { color: var(--amber); }
.hero-copy h1 .strike { color: var(--red); }
.hero-copy .lede { color: #C9CDD3; font-size: 19px; max-width: 52ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero-meta {
  display: flex; gap: 32px; margin-top: 52px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-meta .m { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .v { font-family: "Anton", sans-serif; font-size: 36px; color: var(--amber); line-height: 1; }
.hero-meta .l { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #9AA0A6; }

.hero-image {
  position: relative;
  background: #0A0B0D;
  overflow: hidden;
}
.hero-image > img { width: 100%; height: 100%; min-height: 560px; display: block; object-fit: contain; }
.hero-tape {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: var(--amber);
  color: var(--ink);
  font-family: "Anton", sans-serif;
  font-size: 22px;
  letter-spacing: .18em;
  padding: 14px 0;
  display: flex; gap: 56px; overflow: hidden;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.hero-tape .track {
  display: flex; gap: 56px; animation: scroll 28s linear infinite; white-space: nowrap;
  padding-left: 56px;
}
.hero-tape span { display: inline-flex; align-items: center; gap: 18px; }
.hero-tape span::after { content: "★"; color: var(--red); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--ink);
  color: #fff;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.trust .row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.trust .item { display: flex; align-items: center; gap: 14px; }
.trust .item .ico {
  width: 44px; height: 44px; border-radius: 10px; background: rgba(245,165,36,.12);
  color: var(--amber); display: grid; place-items: center; flex-shrink: 0;
}
.trust .item .t1 { font-weight: 800; font-size: 15px; letter-spacing: .02em; }
.trust .item .t2 { font-size: 13px; color: #9AA0A6; }

/* ---------- About ---------- */
.about { background: var(--paper); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 96px); align-items: center;
}
.about-media {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--paper-2); box-shadow: var(--shadow-2);
}
.about-media > img { width: 100%; height: 100%; display: block; object-fit: cover; }
.about-stamp {
  position: absolute; right: -28px; bottom: -28px;
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--amber); color: var(--ink);
  display: grid; place-items: center; text-align: center;
  font-family: "Anton", sans-serif; line-height: 1;
  border: 6px solid var(--paper);
  transform: rotate(-8deg);
  box-shadow: var(--shadow-1);
}
.about-stamp .big { font-size: 56px; color: var(--red); }
.about-stamp .sm  { font-size: 14px; letter-spacing: .14em; margin-top: 8px; }

.about-copy h2 { margin: 16px 0 24px; }
.about-copy h2 .blue { color: var(--blue); }
.about-copy p { color: #4B5563; font-size: 18px; }
.about-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; margin-top: 28px; }
.about-bullets li {
  list-style: none; padding-left: 32px; position: relative; font-weight: 600; color: var(--ink);
}
.about-bullets li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px;
  background: var(--red); border-radius: 50%;
}
.about-bullets li::after {
  content: ""; position: absolute; left: 6px; top: 10px; width: 8px; height: 4px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ---------- Services ---------- */
.services { background: var(--night); color: #fff; }
.services .section-head p { color: #9AA0A6; }
.services-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px;
}
.service {
  background: var(--steel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  position: relative; overflow: hidden;
  min-height: 280px;
}
.service:hover { transform: translateY(-4px); border-color: var(--amber); background: #23272F; }
.service .num {
  position: absolute; top: 18px; right: 22px;
  font-family: "Anton", sans-serif; font-size: 16px; color: var(--muted-2);
}
.service .ico {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(245,165,36,.12); color: var(--amber);
  display: grid; place-items: center;
}
.service h3 { color: #fff; font-size: 24px; }
.service p { color: #B5BAC4; font-size: 15px; line-height: 1.55; margin: 0; }
.service .more {
  margin-top: auto; font-weight: 700; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--amber);
  display: inline-flex; align-items: center; gap: 8px;
}
.service.small { grid-column: span 3; }
.service.med   { grid-column: span 4; }
.service.featured {
  grid-column: span 12;
  min-height: 360px;
  background: linear-gradient(135deg, #2A1010 0%, #1A0C0C 55%, #2C1A0A 100%);
  border: 1px solid rgba(245,165,36,.3);
  padding: 40px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: stretch;
}
.service.featured .left { display: flex; flex-direction: column; justify-content: center; }
.service.featured .badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--amber); color: var(--ink);
  font-family: "Manrope", sans-serif; font-weight: 800;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px; align-self: flex-start; margin-bottom: 18px;
}
.service.featured h3 {
  font-family: "Anton", sans-serif; font-size: clamp(36px, 4vw, 56px);
  line-height: 1; margin-bottom: 18px; text-transform: uppercase;
}
.service.featured p { font-size: 17px; color: #D3D6DB; margin-bottom: 22px; }
.service.featured .cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.service.featured .right {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.service.featured .right h4 {
  font-family: "Anton", sans-serif; font-size: 18px; letter-spacing: .12em;
  color: var(--amber); margin: 0 0 6px; text-transform: uppercase;
}
.service.featured .right ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.service.featured .right li {
  display: flex; gap: 10px; align-items: flex-start; color: #D3D6DB; font-size: 14px;
}
.service.featured .right li::before {
  content: ""; width: 8px; height: 8px; background: var(--amber); border-radius: 2px;
  margin-top: 7px; flex-shrink: 0; transform: rotate(45deg);
}

/* ---------- Private property dedicated section ---------- */
.pp { background: var(--paper); position: relative; }
.pp .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.pp h2 .red { color: var(--red); }
.pp .pp-copy p { color: #4B5563; font-size: 18px; }
.pp .stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 28px; }
.pp .stats .s {
  background: #fff; border: 1px solid rgba(11,12,14,.06);
  border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-1);
}
.pp .stats .v { font-family: "Anton", sans-serif; font-size: 38px; color: var(--blue); line-height: 1; }
.pp .stats .l { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

.pp-card {
  background: var(--ink); color: #fff;
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-2); position: relative; overflow: hidden;
}
.pp-card::before {
  content:""; position: absolute; top: 0; right: 0; width: 220px; height: 220px;
  background: radial-gradient(circle at 30% 30%, var(--red), transparent 60%);
  opacity: .45;
}
.pp-card h3 { color: #fff; font-size: 28px; margin-bottom: 18px; position: relative; }
.pp-card ol { padding: 0; margin: 0; list-style: none; counter-reset: step; position: relative; }
.pp-card ol li {
  counter-increment: step;
  display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.pp-card ol li:last-child { border-bottom: 0; }
.pp-card ol li::before {
  content: counter(step, decimal-leading-zero);
  font-family: "Anton", sans-serif; font-size: 26px; color: var(--amber);
  line-height: 1;
}
.pp-card ol li strong { display: block; color: #fff; font-weight: 800; font-size: 15px; margin-bottom: 2px; }
.pp-card ol li span { color: #B5BAC4; font-size: 14px; }
.pp-card .signage {
  margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap;
}

/* ---------- How it works ---------- */
.how { background: var(--ink); color: #fff; }
.how .steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.how .step { padding: 28px; background: var(--steel); border-radius: var(--radius); border: 1px solid var(--line); }
.how .step .n {
  font-family: "Anton", sans-serif; font-size: 52px; color: var(--red); line-height: 1;
}
.how .step h3 { font-size: 22px; margin: 12px 0 8px; }
.how .step p { color: #B5BAC4; font-size: 14px; margin: 0; }

/* ---------- Service area ---------- */
.area { background: var(--paper-2); }
.area .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.area .copy h2 .amber { color: var(--amber); }
.area .neighborhoods {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 24px; margin-top: 28px;
}
.area .neighborhoods li {
  list-style: none; padding-left: 24px; position: relative; font-weight: 600; font-size: 15px;
}
.area .neighborhoods li::before {
  content: "›"; position: absolute; left: 0; top: -2px; color: var(--red);
  font-family: "Anton", sans-serif; font-size: 22px; line-height: 1;
}
.area-map {
  aspect-ratio: 4/3; background: var(--ink); border-radius: var(--radius-lg);
  position: relative; overflow: hidden; box-shadow: var(--shadow-2);
  display: grid; place-items: center;
}
.area-map svg { width: 100%; height: 100%; }
.area-map .pin {
  position: absolute; background: var(--red); color: #fff;
  font-family: "Anton", sans-serif; font-size: 13px; letter-spacing: .08em;
  padding: 6px 12px; border-radius: 999px; box-shadow: 0 4px 14px rgba(0,0,0,.4);
}

/* ---------- Reviews ---------- */
.reviews { background: var(--paper); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.review {
  background: #fff; border-radius: var(--radius); padding: 28px;
  border: 1px solid rgba(11,12,14,.06); box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; gap: 12px;
}
.review .stars { color: var(--amber); letter-spacing: 4px; font-size: 18px; }
.review p { font-size: 16px; color: #1F2128; margin: 0; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.review .who .av {
  width: 40px; height: 40px; border-radius: 50%; background: var(--ink);
  color: #fff; display: grid; place-items: center; font-weight: 800;
}
.review .who .n { font-weight: 800; font-size: 14px; }
.review .who .m { color: var(--muted); font-size: 12px; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper-2); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: flex-start; }
.faq details {
  background: #fff; border: 1px solid rgba(11,12,14,.08); border-radius: var(--radius);
  padding: 4px 24px; margin-bottom: 12px; transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--red); box-shadow: var(--shadow-1); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 0; font-weight: 800; font-size: 17px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; flex-shrink: 0; transition: transform .2s ease, background .2s ease;
  font-family: "Anton", sans-serif; font-size: 20px; line-height: 1;
}
.faq details[open] summary .plus { transform: rotate(45deg); background: var(--red); }
.faq details p { color: #4B5563; padding-bottom: 20px; margin: 0; }

/* ---------- Contact ---------- */
.contact { background: var(--ink); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; }
.contact-grid > * { min-width: 0; }
.contact h2 { color: #fff; }
.contact h2 .red { color: var(--red); }
.contact .lede { color: #B5BAC4; font-size: 18px; }
.contact .channels { display: grid; gap: 14px; margin-top: 32px; }
.contact .channel {
  display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: center;
  padding: 18px; background: var(--steel); border: 1px solid var(--line); border-radius: var(--radius);
}
.contact .channel .ico {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(214,40,40,.12); color: var(--red);
  display: grid; place-items: center;
}
.contact .channel .l { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #9AA0A6; }
.contact .channel .v { font-family: "Anton", sans-serif; font-size: 22px; color: #fff; }

.form-card {
  background: var(--steel); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
}
.form-card h3 { color: #fff; font-size: 26px; margin-bottom: 6px; }
.form-card .sub { color: #9AA0A6; font-size: 14px; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #9AA0A6; }
.field input, .field select, .field textarea {
  width: 100%;
  background: #14161A; color: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 16px; font-family: inherit; font-size: 15px; outline: none;
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--amber); }
.field textarea { resize: vertical; min-height: 110px; }
.form-card .submit-row {
  display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 8px; flex-wrap: wrap;
}
.form-card .submit-row small { color: #9AA0A6; font-size: 12px; }

/* ---------- Footer ---------- */
.site-footer { background: #08090B; color: #B5BAC4; padding: 72px 0 24px; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot .brand img { height: 64px; }
.foot p { color: #9AA0A6; font-size: 14px; }
.foot h4 {
  font-family: "Anton", sans-serif; font-size: 14px; letter-spacing: .18em;
  text-transform: uppercase; color: #fff; margin: 6px 0 18px;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot ul a { font-size: 14px; color: #B5BAC4; }
.foot ul a:hover { color: var(--amber); }
.foot .social { display: flex; gap: 10px; margin-top: 18px; }
.foot .social a {
  width: 38px; height: 38px; border-radius: 10px; background: #14161A; border: 1px solid var(--line);
  display: grid; place-items: center; color: #B5BAC4;
}
.foot .social a:hover { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.foot-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid #14161A;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: #6B7280; font-size: 13px;
}

/* ---------- Big floating call button (mobile) ---------- */
.call-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  display: none; align-items: center; gap: 10px;
  background: var(--red); color: #fff; padding: 14px 18px;
  border-radius: 999px; font-weight: 800; font-size: 14px;
  letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 18px 40px -10px rgba(214,40,40,.7);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image > img { min-height: 380px; }
  .trust .row { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .pp .container, .area .container, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
  .service.featured { grid-template-columns: 1fr; padding: 32px; }
  .service.small { grid-column: span 6; }
  .service.med   { grid-column: span 6; }
  .how .steps { grid-template-columns: repeat(2,1fr); }
  .foot { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* Collapse the primary nav into the drawer earlier — 5 links + phone + CTA
     don't fit alongside the brand on tablets/small laptops. */
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-primary { display: none; } /* phone number is enough on mid widths */
}
@media (max-width: 720px) {
  .utility { display: none; }
  .nav-phone .label { display: none; }
  .nav-phone a { font-size: 20px; }
  .nav { height: 72px; }
  .brand img { height: 48px; }
  .brand-text .t1 { font-size: 18px; }
  .brand-text .t2 { font-size: 11px; }
  .trust .row { grid-template-columns: 1fr; }
  .services-grid { display: flex; flex-direction: column; }
  .service.small, .service.med, .service.featured { width: 100%; }
  .service.featured { padding: 24px; }
  /* min-width:0 prevents the grid track from expanding to fit the nowrap button */
  .service.featured .left { min-width: 0; }
  .service.featured .cta { flex-direction: column; }
  .service.featured .cta .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .contact .channel .v { font-size: 16px; overflow-wrap: anywhere; }
  .contact .channel { padding: 14px 16px; }
  .how .steps { grid-template-columns: 1fr; }
  .pp .stats { grid-template-columns: 1fr; }
  .about-bullets { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr; }
  .call-fab { display: inline-flex; }
  .area .neighborhoods { grid-template-columns: 1fr; }
}

/* Mobile menu drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 60; background: rgba(11,12,14,.6);
  backdrop-filter: blur(6px); opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.mobile-drawer .panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 86vw);
  background: var(--ink); color: #fff; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transform: translateX(20px); transition: transform .25s ease;
}
.mobile-drawer.open .panel { transform: translateX(0); }
.mobile-drawer a { padding: 14px 16px; font-family: "Anton", sans-serif; font-size: 22px; letter-spacing: .08em; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-drawer .close { align-self: flex-end; background: transparent; border: 0; color: #fff; font-size: 28px; cursor: pointer; }
.mobile-drawer .cta { margin-top: 12px; }

/* Print-friendly */
@media print {
  .site-header, .utility, .call-fab, .mobile-drawer { display: none !important; }
}
