/* ============================================================
   Onsite Mobile Mechanics - Bold Modern
   Palette locked. One accent (#ef4444). Light theme throughout.
   ============================================================ */

:root {
  --accent: #ef4444;          /* single accent: red */
  --accent-ink: #b91c1c;      /* darker accent for text on white (AA) */
  --accent-deep: #991b1b;     /* hover/pressed */
  --ink: #0b0f14;             /* near-black text */
  --ink-2: #1f2937;           /* dark neutral (sections / dark band) */
  --ink-3: #374151;           /* muted body */
  --muted: #5b6675;           /* secondary text on white (AA on paper) */
  --paper: #ffffff;           /* page background */
  --paper-2: #f4f6f8;         /* soft panel */
  --paper-3: #eaeef2;         /* borders / hairlines */
  --line: #e2e7ec;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 11px;
  --shadow-sm: 0 1px 2px rgba(11,15,20,.06), 0 2px 8px rgba(11,15,20,.05);
  --shadow: 0 12px 34px rgba(11,15,20,.10);
  --shadow-lg: 0 30px 70px rgba(11,15,20,.18);
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* NAV-SAFETY: never out-ranked */
[hidden] { display: none !important; }

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 22px rgba(239,68,68,.32);
}
.btn--primary:hover { background: var(--accent-deep); box-shadow: 0 12px 28px rgba(239,68,68,.4); }

.btn--line {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn--line:hover { background: var(--ink); color: #fff; }

.btn--line-inv { color: #fff; border-color: rgba(255,255,255,.55); }
.btn--line-inv:hover { background: #fff; color: var(--ink-2); border-color: #fff; }

.btn--ghost {
  background: var(--paper-2); color: var(--ink);
  border-color: var(--line);
  font-family: var(--font-body); font-weight: 600;
}
.btn--ghost:hover { border-color: var(--ink); }

.btn--lg { padding: 16px 28px; font-size: 17px; }
.btn--block { width: 100%; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav[data-elevated="true"] {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 22px rgba(11,15,20,.06);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}

.wordmark { display: inline-flex; align-items: center; gap: 10px; }
.wordmark__mark {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--accent); color: #fff;
  box-shadow: 0 6px 16px rgba(239,68,68,.3);
}
.wordmark__text {
  font-family: var(--font-display); font-weight: 900;
  font-size: 18px; letter-spacing: -0.01em; line-height: 1; color: var(--ink);
  display: flex; flex-direction: column; gap: 2px;
}
.wordmark__co {
  font-size: 9.5px; font-weight: 700; letter-spacing: .14em;
  color: var(--muted);
}

.nav__links { display: none; gap: 26px; }
.nav__links a {
  font-size: 14.5px; font-weight: 600; color: var(--ink-3);
  position: relative; padding: 6px 0;
  transition: color .15s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--accent); transition: width .2s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__phone { display: none; }
.nav__cta { display: none; }

.nav__toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 42px; padding: 0 11px;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 11px;
  cursor: pointer;
}
.nav__toggle-bar { display: block; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile nav panel */
.mobile-nav {
  position: fixed; inset: 0; z-index: 150;
  background: var(--paper);
  padding: 88px var(--pad) 40px;
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-nav__close {
  position: absolute; top: 18px; right: var(--pad);
  width: 44px; height: 44px; display: inline-grid; place-items: center;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 11px;
  color: var(--ink); cursor: pointer;
}
.mobile-nav a {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: var(--ink); padding: 15px 4px; border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav__call {
  margin-top: 18px; border: 2px solid var(--ink) !important;
  border-radius: var(--radius-sm); text-align: center; padding: 15px !important;
  border-bottom: 2px solid var(--ink) !important; font-size: 18px !important;
}
.mobile-nav__cta {
  margin-top: 10px; background: var(--accent); color: #fff !important;
  border-radius: var(--radius-sm); text-align: center; padding: 16px !important;
  border-bottom: none !important; box-shadow: 0 8px 22px rgba(239,68,68,.32);
}

/* ---------- layout helpers ---------- */
.section { padding: clamp(56px, 8vw, 104px) var(--pad); }
.section > * { max-width: var(--maxw); margin-inline: auto; }
.section__head { max-width: 720px; margin: 0 auto clamp(34px, 5vw, 54px); text-align: center; }
.section__kicker {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: .15em; text-transform: uppercase; color: var(--accent-ink);
  margin-bottom: 12px;
}
.section__title { font-size: clamp(28px, 4.4vw, 46px); }
.section__lead {
  margin-top: 16px; color: var(--muted); font-size: clamp(16px, 2vw, 18px); line-height: 1.62;
}

.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  display: inline-block; box-shadow: 0 0 0 4px rgba(239,68,68,.18);
}
.dot--live { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,.4); } 50% { box-shadow: 0 0 0 7px rgba(239,68,68,0); } }
@media (prefers-reduced-motion: reduce) { .dot--live { animation: none; } }

.stars { color: var(--accent); display: inline-flex; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 78px) var(--pad) clamp(48px, 6vw, 80px);
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(239,68,68,.08), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--paper-2) 100%);
  overflow: hidden;
}
.hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: clamp(32px, 5vw, 56px); align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 14px; color: var(--ink-3);
  background: var(--white); border: 1px solid var(--line);
  padding: 8px 15px; border-radius: 999px; box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(40px, 8.2vw, 76px);
  line-height: 0.98; letter-spacing: -0.03em;
  text-transform: none;
}
.hero__accent { color: var(--accent); display: block; }
.hero__sub {
  margin-top: 22px; max-width: 36ch;
  font-size: clamp(17px, 2.3vw, 20px); color: var(--ink-3); line-height: 1.55;
}
.hero__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 13px; }
.hero__trust {
  margin-top: 30px; display: flex; flex-direction: column; gap: 12px;
}
.hero__trust li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 14.5px; color: var(--ink-2);
}
.hero__trust svg { color: var(--accent-ink); flex: none; }

.hero__visual { position: relative; margin: 0; }
.hero__img {
  width: 100%; height: auto; border-radius: 22px;
  box-shadow: var(--shadow-lg);
  object-fit: cover; aspect-ratio: 5 / 5.4;
  border: 1px solid rgba(11,15,20,.06);
}
.hero__badge {
  position: absolute; left: -6px; bottom: 22px;
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border-radius: 14px; padding: 13px 17px;
  box-shadow: var(--shadow); max-width: 250px;
  border: 1px solid var(--line);
}
.hero__badge-num {
  font-family: var(--font-display); font-weight: 900; font-size: 30px;
  color: var(--accent); line-height: 1;
}
.hero__badge-text { font-size: 13px; font-weight: 600; color: var(--ink-2); line-height: 1.3; }

/* ---------- trust strip ---------- */
.trust { background: var(--ink-2); color: #fff; padding: 0 var(--pad); }
.trust__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
}
.trust__item {
  padding: 26px 18px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.trust__item:nth-child(2n) { border-right: none; }
.trust__item:nth-child(n+3) { border-bottom: none; }
.trust__num {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(20px, 3vw, 27px); color: #fff; margin-bottom: 4px;
}
.trust__label { display: block; font-size: 13px; color: rgba(255,255,255,.72); }

/* ---------- services ---------- */
.services { background: var(--paper); }
.services__grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
.svc {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d6dde4; }
.svc__icon {
  display: inline-grid; place-items: center; width: 52px; height: 52px;
  border-radius: 13px; background: rgba(239,68,68,.1); color: var(--accent-ink);
  margin-bottom: 18px;
}
.svc__icon svg { width: 26px; height: 26px; }
.svc__title { font-size: 21px; margin-bottom: 9px; }
.svc__copy { color: var(--muted); font-size: 15.5px; line-height: 1.55; }
.svc--feature {
  background: var(--ink-2); border-color: var(--ink-2); color: #fff;
}
.svc--feature .svc__title { color: #fff; }
.svc--feature .svc__copy { color: rgba(255,255,255,.78); }
.svc--feature .svc__icon { background: rgba(239,68,68,.22); color: #fff; }

/* ---------- how it works ---------- */
.how { background: var(--paper-2); }
.how__track {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  counter-reset: step;
}
.step {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px 26px;
  box-shadow: var(--shadow-sm);
}
.step__no {
  font-family: var(--font-display); font-weight: 900; font-size: 38px;
  color: var(--accent); opacity: .28; line-height: 1; display: block; margin-bottom: 6px;
}
.step__title { font-size: 19px; margin-bottom: 8px; }
.step__copy { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* ---------- why choose us ---------- */
.why { background: var(--paper); }
.why__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: clamp(30px, 5vw, 56px); align-items: start;
}
.why__copy .section__kicker { margin-bottom: 12px; }
.why__copy .section__title { font-size: clamp(28px, 4.4vw, 42px); }
.why__copy .section__lead { margin-bottom: 26px; }
.why__list { display: grid; gap: 14px; }
.why__item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px;
}
.why__ico {
  flex: none; display: inline-grid; place-items: center; width: 46px; height: 46px;
  border-radius: 12px; background: var(--white); color: var(--accent-ink);
  border: 1px solid var(--line);
}
.why__item h3 { font-size: 17px; margin-bottom: 4px; }
.why__item p { color: var(--muted); font-size: 14.5px; line-height: 1.5; }

/* ---------- 60-second callback ---------- */
.callback { background: var(--ink); color: #fff; }
.callback .section__head { color: #fff; }
.callback__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: clamp(34px, 5vw, 60px); align-items: center;
}
.callback__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 14px; color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 8px 15px; border-radius: 999px; margin-bottom: 20px;
}
.callback__title { color: #fff; font-size: clamp(27px, 4.2vw, 42px); }
.callback__copy { margin-top: 18px; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.6; max-width: 46ch; }
.callback__points { margin-top: 26px; display: grid; gap: 14px; }
.callback__points li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15.5px; color: rgba(255,255,255,.9);
}
.callback__points svg { color: var(--accent); flex: none; margin-top: 1px; }

/* quote form */
.callback__form {
  max-width: var(--maxw); margin: clamp(40px, 6vw, 64px) auto 0;
}
#quoteForm {
  background: var(--white); color: var(--ink);
  border-radius: 20px; padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-lg); max-width: 640px; margin: 0 auto;
  position: relative;
}
.callback__form-title { font-size: clamp(24px, 3.5vw, 30px); }
.callback__form-sub { color: var(--muted); margin-top: 8px; margin-bottom: 22px; font-size: 15.5px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-weight: 600; font-size: 14px; color: var(--ink-2); margin-bottom: 7px;
}
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: var(--paper-2); border: 1.5px solid var(--line); border-radius: 11px;
  padding: 13px 15px; transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #98a2ae; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--white);
  box-shadow: 0 0 0 4px rgba(239,68,68,.13);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:invalid:not(:placeholder-shown) { border-color: #d4564a; }
.form-note { margin-top: 14px; font-weight: 600; font-size: 14.5px; color: var(--accent-ink); }
.callback__form-fine { margin-top: 14px; font-size: 12.5px; color: var(--muted); text-align: center; }

.callback__success {
  position: absolute; inset: 0; background: var(--white); border-radius: 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 36px; gap: 8px;
}
.callback__success-icon {
  display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 50%;
  background: rgba(239,68,68,.12); color: var(--accent); margin-bottom: 6px;
}
.callback__success h4 { font-size: 24px; }
.callback__success p { color: var(--muted); max-width: 32ch; }

/* ---------- gallery ---------- */
.gallery { background: var(--paper); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  grid-auto-rows: 1fr;
}
.shot {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); background: var(--paper-3);
}
.shot img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; transition: transform .4s ease; }
.shot--wide { grid-column: 1 / -1; }
.shot--wide img { aspect-ratio: 16 / 9; }
.shot--tall { grid-row: span 2; }
.shot--tall img { aspect-ratio: auto; height: 100%; }
.shot:hover img { transform: scale(1.04); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(11,15,20,.78));
  color: #fff; font-size: 13px; font-weight: 600; padding: 22px 16px 13px;
}

/* ---------- reviews ---------- */
.reviews { background: var(--paper-2); }
.reviews__grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.review {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px; margin: 0;
  box-shadow: var(--shadow-sm);
}
.review__stars { display: inline-flex; gap: 2px; color: var(--accent); margin-bottom: 14px; }
.review blockquote {
  margin: 0; font-size: 16px; line-height: 1.55; color: var(--ink-2);
}
.review figcaption { margin-top: 18px; display: flex; flex-direction: column; }
.review__name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); }
.review__loc { font-size: 13px; color: var(--muted); }

/* ---------- service areas ---------- */
.areas { background: var(--paper); }
.areas__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: clamp(28px, 5vw, 48px); align-items: center;
}
.areas__copy .section__title { font-size: clamp(27px, 4vw, 40px); }
.areas__copy .section__lead { margin-bottom: 24px; }
.areas__list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.areas__list li {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 11px; padding: 14px 16px;
  font-weight: 600; font-size: 15px; color: var(--ink-2);
  display: flex; align-items: center; gap: 9px;
}
.areas__list li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none;
}

/* ---------- faq ---------- */
.faq { background: var(--paper-2); }
.faq__list { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.qa {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.qa summary {
  list-style: none; cursor: pointer; padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: var(--ink);
}
.qa summary::-webkit-details-marker { display: none; }
.qa__chev { position: relative; width: 16px; height: 16px; flex: none; }
.qa__chev::before, .qa__chev::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--accent);
  border-radius: 2px; transition: transform .25s ease;
}
.qa__chev::before { width: 14px; height: 2.4px; transform: translate(-50%,-50%); }
.qa__chev::after { width: 2.4px; height: 14px; transform: translate(-50%,-50%); }
.qa[open] .qa__chev::after { transform: translate(-50%,-50%) scaleY(0); }
.qa__body { padding: 0 22px 20px; }
.qa__body p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ---------- final cta ---------- */
.finalcta {
  background:
    radial-gradient(120% 130% at 50% -20%, rgba(239,68,68,.5), transparent 55%),
    var(--ink-2);
  color: #fff; padding: clamp(56px, 8vw, 100px) var(--pad);
}
.finalcta__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.finalcta__title { color: #fff; font-size: clamp(30px, 5vw, 52px); }
.finalcta__copy { margin-top: 18px; color: rgba(255,255,255,.82); font-size: clamp(16px, 2vw, 19px); line-height: 1.55; }
.finalcta__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: clamp(48px, 6vw, 72px) var(--pad) 0; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 34px;
  padding-bottom: 40px;
}
.footer__brand { max-width: 360px; }
.wordmark--footer .wordmark__text { color: #fff; }
.wordmark--footer .wordmark__co { color: rgba(255,255,255,.55); }
.footer__tag { margin-top: 16px; font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.6); }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  border-radius: 11px; background: rgba(255,255,255,.07); color: #fff;
  border: 1px solid rgba(255,255,255,.12); transition: background .15s ease;
}
.footer__social a:hover { background: var(--accent); border-color: var(--accent); }
.footer__h { color: #fff; font-size: 14px; letter-spacing: .04em; margin-bottom: 14px; font-weight: 700; }
.footer__list { display: grid; gap: 9px; font-size: 14.5px; }
.footer__list a { color: rgba(255,255,255,.72); transition: color .15s ease; }
.footer__list a:hover { color: #fff; }
.footer__list li { display: flex; justify-content: space-between; gap: 12px; }
.footer__list--areas li { justify-content: flex-start; }
.footer__bar {
  max-width: var(--maxw); margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0 32px;
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.55);
}

/* ---------- sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: 0;
  background: var(--white); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 22px rgba(11,15,20,.1);
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
}
.callbar__quote, .callbar__call {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  padding: 14px; border-radius: 12px;
}
.callbar__quote { color: var(--ink); border: 2px solid var(--ink); margin-right: 9px; }
.callbar__call { background: var(--accent); color: #fff; box-shadow: 0 6px 16px rgba(239,68,68,.3); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn, .svc, .shot img { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .svc--feature { grid-column: 1 / -1; }
  .how__track { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 861px) {
  .nav__links { display: flex; }
  .nav__phone { display: inline-flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .callbar { display: none; }

  .hero__inner { grid-template-columns: 1.05fr 0.95fr; }
  .hero__trust { flex-direction: row; flex-wrap: wrap; gap: 10px 26px; }

  .trust__inner { grid-template-columns: repeat(4, 1fr); }
  .trust__item { border-bottom: none; }
  .trust__item:nth-child(2n) { border-right: 1px solid rgba(255,255,255,.1); }
  .trust__item:last-child { border-right: none; }

  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .svc--feature { grid-column: span 1; grid-row: span 1; }

  .how__track { grid-template-columns: repeat(4, 1fr); }

  .why__inner { grid-template-columns: 0.85fr 1.15fr; }
  .why__list { grid-template-columns: repeat(2, 1fr); }

  .callback__inner { max-width: 760px; text-align: center; }
  .callback__inner .callback__copy { margin-left: auto; margin-right: auto; }
  .callback__inner .callback__points { max-width: 480px; margin-left: auto; margin-right: auto; text-align: left; }

  .reviews__grid { grid-template-columns: repeat(3, 1fr); }

  .areas__inner { grid-template-columns: 0.9fr 1.1fr; }
  .areas__list { grid-template-columns: repeat(4, 1fr); }

  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
}

@media (min-width: 1024px) {
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
  .shot--wide { grid-column: span 2; }
  .shot--wide img { aspect-ratio: 1 / 1; }
}
