/* Summit prototype v2 — cleaner professional system */
:root {
  --ink: #0f172a;
  --ink-2: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #ffffff;
  --wash: #f8fafc;
  --wash-2: #f1f5f9;
  --navy: #0b1f3a;
  --navy-2: #132f54;
  --accent: #c9850c;
  --accent-ink: #1f1403;
  --accent-soft: #fff7e8;
  --ok: #0f766e;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 12px 32px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius: 16px;
  --radius-sm: 12px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --max: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; }

.skip {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--accent); color: var(--accent-ink);
  padding: .55rem 1rem; font-weight: 600;
}
.skip:focus { left: .75rem; top: .75rem; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.narrow { width: min(100% - 2rem, 720px); margin-inline: auto; }
.center { text-align: center; }

/* Top bar — competitor trust strip */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.86);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.topbar-inner {
  display: flex; flex-wrap: wrap; gap: .5rem 1rem;
  align-items: center; justify-content: center;
  min-height: 36px; padding: .35rem 0;
}
.topbar-phone { color: #fff; text-decoration: none; font-weight: 700; }
.topbar-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  display: none;
}
@media (min-width: 720px) {
  .topbar-dot { display: inline-block; }
  .topbar-inner { justify-content: space-between; }
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 72px;
}
.brand img {
  width: auto; height: 48px; max-width: 168px; object-fit: contain;
}
.nav {
  display: none; flex: 1; justify-content: center; gap: .1rem;
}
.nav a {
  text-decoration: none;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: .5rem .7rem;
  border-radius: 999px;
  letter-spacing: -.01em;
}
.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--wash-2);
  color: var(--ink);
}
.header-cta {
  display: flex; align-items: center; gap: .5rem; margin-left: auto;
}
.nav-toggle {
  width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 12px; background: var(--paper);
  display: grid; place-content: center; gap: 5px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 16px; height: 1.5px; background: var(--ink); border-radius: 2px;
}
.mobile-nav {
  display: grid; gap: .35rem;
  padding: .25rem 1rem 1rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a {
  text-decoration: none; font-weight: 600;
  padding: .8rem .9rem; border-radius: 12px; background: var(--wash);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .35rem; text-decoration: none;
  font-weight: 600; font-size: .9rem;
  letter-spacing: -.01em;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: .7rem 1.1rem;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset;
}
.btn-primary:hover { background: #d99212; }
.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-2);
}
.btn-outline:hover { background: var(--wash); }
.btn-ghost {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-lg { padding: .9rem 1.25rem; font-size: .95rem; }
.btn-block { width: 100%; }
.btn-kicker {
  display: block; font-size: .68rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; opacity: .75;
}
.btn-lg .btn-kicker { margin-bottom: .1rem; }
.btn-primary.btn-lg {
  flex-direction: column; align-items: flex-start;
  line-height: 1.15; min-width: 13.5rem;
}

/* Hero */
.hero {
  position: relative; color: #fff;
  min-height: min(86vh, 720px);
  display: grid; align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(11,31,58,.94) 0%, rgba(11,31,58,.78) 42%, rgba(11,31,58,.45) 100%),
    linear-gradient(to top, rgba(11,31,58,.7), transparent 50%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 1.5rem;
  padding: 3.5rem 0 3rem;
}
.eyebrow {
  margin: 0 0 .75rem;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #f0c36a;
}
.eyebrow.dark { color: var(--accent); }
.hero h1, .section h2, .cta-band h2, .page-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.12;
  margin: 0 0 .85rem;
}
.hero h1 {
  font-size: clamp(2.15rem, 4.8vw, 3.35rem);
  max-width: 16ch;
}
.lead {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.88);
  max-width: 36rem;
  margin: 0 0 1.35rem;
  font-weight: 400;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: .7rem;
  margin-bottom: 1.25rem;
}
.rating-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: .65rem 1rem;
  color: rgba(255,255,255,.8); font-size: .9rem;
}
.rating-row p { margin: 0; }
.stars {
  color: #f5c451; letter-spacing: .08em; font-size: .95rem;
  line-height: 1;
}

.hero-card {
  background: rgba(255,255,255,.97);
  color: var(--ink);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.35rem 1.35rem 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.65);
  max-width: 380px;
}
.hero-card h2 {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 .4rem;
}
.hero-card > p { margin: 0 0 .85rem; color: var(--muted); font-size: .95rem; }
.mini-list {
  margin: 0 0 1rem; padding-left: 1.05rem; color: var(--ink-2);
  font-size: .92rem;
}
.mini-list li { margin: .3rem 0; }
.fine {
  margin: .85rem 0 0;
  font-size: .78rem; color: var(--muted); text-align: center;
}

/* Trust bar */
.trust-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
.trust-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.trust-item {
  display: flex; gap: .7rem; align-items: flex-start;
}
.trust-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  font-size: .85rem; flex: 0 0 auto;
  font-weight: 700;
}
.trust-item strong {
  display: block; font-size: .9rem; letter-spacing: -.01em;
}
.trust-item span {
  display: block; font-size: .8rem; color: var(--muted); margin-top: .1rem;
}

/* Sections */
.section { padding: 4.5rem 0; }
.section-soft { background: var(--wash); }
.section-head { max-width: 38rem; margin-bottom: 2.25rem; }
.section-head.center { margin-inline: auto; }
.section-head h2, .section h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--ink);
}
.section-head p, .body-lg { color: var(--muted); margin: 0; }
.body-lg { font-size: 1.05rem; margin-bottom: 1rem; }
.serif-lead {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  line-height: 1.35;
  color: var(--ink-2);
  margin: 0 0 1rem;
}

/* Cards */
.cards {
  display: grid; gap: 1.15rem;
  grid-template-columns: 1fr;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-lg);
}
.card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden; background: var(--wash-2);
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.card:hover .card-media img { transform: scale(1.03); }
.card-media-tint img { filter: saturate(1.05) contrast(1.02); }
.card-body { padding: 1.15rem 1.2rem 1.3rem; }
.card-tag {
  margin: 0 0 .35rem;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent);
}
.card h3 {
  margin: 0 0 .4rem;
  font-size: 1.1rem;
  letter-spacing: -.02em;
}
.card h3 a { text-decoration: none; }
.card p { margin: 0 0 .85rem; color: var(--muted); font-size: .95rem; }
.text-link {
  color: var(--navy-2);
  font-weight: 650;
  text-decoration: none;
  font-size: .92rem;
}
.text-link:hover { text-decoration: underline; }
.text-link.light { color: #dbe7ff; }

/* Process */
.process {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1rem;
  counter-reset: none;
}
.process li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: .45rem;
}
.process h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
  letter-spacing: -.015em;
}
.process p { margin: 0; color: var(--muted); font-size: .93rem; }

/* Split / quote */
.split {
  display: grid; gap: 1.75rem; align-items: center;
}
.pill-list {
  list-style: none; padding: 0; margin: 0 0 1.25rem;
  display: flex; flex-wrap: wrap; gap: .45rem;
}
.pill-list li {
  background: var(--wash-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .8rem;
  font-size: .85rem; font-weight: 600; color: var(--ink-2);
}
.quote-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-lg);
}
.quote-card blockquote {
  margin: .75rem 0 1rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 500;
}
.quote-meta {
  margin: 0; font-size: .85rem; color: rgba(255,255,255,.7);
  display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
}
.badge {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: .15rem .5rem;
  font-size: .7rem;
  font-weight: 600;
}

/* CTA */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 3.25rem 0;
}
.cta-inner {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  align-items: center; justify-content: space-between;
}
.cta-band p { color: rgba(255,255,255,.78); margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .65rem; }

/* Footer + map */
.site-footer {
  background: #07111f;
  color: rgba(255,255,255,.72);
  padding: 3rem 0 5.75rem;
}
.footer-main {
  display: grid; gap: 1.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { width: 96px; margin-bottom: .75rem; opacity: .95; }
.footer-brand p { margin: 0 0 1rem; font-size: .92rem; }
.footer-brand strong { color: #fff; }
.footer-col h3 {
  margin: 0 0 .75rem;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  text-decoration: none;
  margin: .35rem 0;
  font-size: .92rem;
  color: rgba(255,255,255,.72);
}
.footer-col a:hover { color: #fff; }
.footer-contact p { margin: 0 0 .65rem; font-size: .92rem; line-height: 1.55; }
.footer-contact a { color: #fff; font-weight: 600; }

.footer-map-wrap { padding: 1.75rem 0 0; }
.map-head {
  display: flex; flex-wrap: wrap; gap: .35rem 1rem;
  align-items: baseline; justify-content: space-between;
  margin-bottom: .85rem;
}
.map-head h3 {
  margin: 0; color: #fff; font-size: 1rem; letter-spacing: -.01em;
}
.map-head p { margin: 0; font-size: .9rem; }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: #0b1729;
  aspect-ratio: 21 / 9;
  min-height: 220px;
}
.map-frame iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(.15) contrast(1.05);
}
.map-credit {
  margin: .65rem 0 0;
  font-size: .75rem;
  color: rgba(255,255,255,.45);
}
.map-credit a { color: rgba(255,255,255,.65); }

.footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid; gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom p { margin: 0; }
.comp-note { max-width: 52rem; }

.sticky-call {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(7, 17, 31, .94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
}
.sticky-call a {
  display: flex; justify-content: center; align-items: center;
  background: var(--accent); color: var(--accent-ink);
  text-decoration: none; font-weight: 700;
  border-radius: 12px; padding: .9rem 1rem;
}

/* Service page */
.page-hero { padding: 2.75rem 0 1.25rem; background: var(--wash); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; gap: 1.5rem; align-items: center; }
.page-hero .lead { color: var(--muted); }
.page-hero-media {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.checklist { color: var(--muted); padding-left: 1.1rem; }
.checklist li { margin: .4rem 0; }
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.steps { color: var(--muted); padding-left: 1.15rem; }
.steps li { margin: .5rem 0; }

@media (min-width: 880px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .header-cta .btn-outline { display: inline-flex; }
  .hero-grid {
    grid-template-columns: 1.25fr .75fr;
    align-items: center;
    padding: 4.5rem 0 4rem;
    gap: 2rem;
  }
  .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .split { grid-template-columns: 1.15fr .85fr; gap: 2.5rem; }
  .footer-main { grid-template-columns: 1.35fr .8fr .8fr 1.1fr; }
  .page-hero-grid { grid-template-columns: 1.1fr .9fr; }
  .sticky-call { display: none; }
  .site-footer { padding-bottom: 2.5rem; }
  .map-frame { min-height: 280px; }
}

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

@media (max-width: 879px) {
  .header-cta .btn-outline { display: none; }
}

/* ===== v3 SERP-leader upgrades ===== */
.urgency {
  background: linear-gradient(90deg, #8b1e12, #b45309);
  color: #fff;
  font-size: .8125rem;
  font-weight: 600;
}
.urgency-inner {
  display: flex; flex-wrap: wrap; gap: .35rem 1rem;
  align-items: center; justify-content: space-between;
  min-height: 38px; padding: .4rem 0;
}
.urgency a { color: #fff; font-weight: 800; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.45); }
.hide-sm { display: none; }
@media (min-width: 720px) { .hide-sm { display: inline; } }

.header-phone {
  display: none;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
  padding: .25rem .4rem;
  text-align: right;
}
.hp-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.hp-num {
  font-size: 1.05rem; font-weight: 800; color: var(--navy);
  letter-spacing: -.02em;
}
@media (min-width: 880px) {
  .header-phone { display: flex; }
}

.hero-bullets {
  list-style: none; padding: 0; margin: 1rem 0 0;
  display: grid; gap: .4rem;
  color: rgba(255,255,255,.86); font-size: .92rem; font-weight: 500;
}
.hero-bullets li { padding-left: 1.2rem; position: relative; }
.hero-bullets li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: .45rem; height: .45rem; border-radius: 50%; background: #f5c451;
}

.card-eyebrow {
  margin: 0 0 .35rem;
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent);
}
.estimate-form { display: grid; gap: .65rem; }
.estimate-form label {
  display: grid; gap: .3rem;
  font-size: .78rem; font-weight: 700; color: var(--ink-2);
  letter-spacing: .02em;
}
.estimate-form input,
.estimate-form select {
  font: inherit; font-weight: 500; font-size: .95rem;
  border: 1px solid var(--line); border-radius: 10px;
  padding: .7rem .8rem; background: var(--wash);
  color: var(--ink);
}
.estimate-form input:focus,
.estimate-form select:focus {
  outline: 2px solid rgba(201,133,12,.35); border-color: var(--accent);
  background: #fff;
}
.form-note { margin: 0; font-size: .75rem; color: var(--muted); font-weight: 500; }

.symptom-grid {
  display: grid; gap: .85rem;
  grid-template-columns: 1fr;
}
.symptom {
  display: block; text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow);
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.symptom:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.symptom h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}
.symptom p { margin: 0 0 .65rem; color: var(--muted); font-size: .92rem; }
.symptom span { font-size: .88rem; font-weight: 700; color: var(--navy-2); }
.symptom-accent {
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  border-color: transparent; color: #fff;
}
.symptom-accent p { color: rgba(255,255,255,.78); }
.symptom-accent span { color: #f5c451; }

.cards-4 { grid-template-columns: 1fr; }

.specials {
  background: var(--navy);
  color: #fff;
  padding: 2.5rem 0;
}
.specials-inner {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  align-items: center; justify-content: space-between;
}
.specials h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 .4rem;
}
.specials p { margin: 0; color: rgba(255,255,255,.75); max-width: 36rem; }

.review-cards { display: grid; gap: .85rem; }
.review-card {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.25rem;
  box-shadow: var(--shadow);
}
.review-card blockquote {
  margin: .5rem 0 .75rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--ink);
}
.review-card figcaption {
  font-size: .8rem; color: var(--muted);
}

.areas {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: .55rem;
  justify-content: center;
}
.areas li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .55rem 1rem;
  font-weight: 650; font-size: .9rem;
  box-shadow: var(--shadow);
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .15rem 1rem;
  margin-bottom: .55rem;
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: .9rem 0;
  letter-spacing: -.015em;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: .95rem;
}

.sticky-call {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: .45rem;
  padding: .55rem .65rem calc(.55rem + env(safe-area-inset-bottom));
}
.sticky-est {
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff !important;
  background: transparent !important;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
}
.sticky-phone {
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  padding: .85rem .5rem;
}

@media (min-width: 880px) {
  .symptom-grid { grid-template-columns: repeat(4, 1fr); }
  .cards-4 { grid-template-columns: repeat(4, 1fr) !important; }
  .sticky-call { display: none; }
}
@media (min-width: 640px) and (max-width: 879px) {
  .symptom-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-4 { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ===== v4 gallery + professional footer (required for live look) ===== */
.gallery {
  display: grid;
  gap: .85rem;
  grid-template-columns: 1fr 1fr;
}
.gal {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--wash-2);
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}
.gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gal:hover img { transform: scale(1.04); }
.gal figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .65rem .85rem;
  font-size: .78rem;
  font-weight: 650;
  color: #fff;
  background: linear-gradient(transparent, rgba(7,17,31,.82));
  letter-spacing: -.01em;
}
.gal-lg {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 10;
  min-height: 220px;
}
.gal-wide {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
  min-height: 180px;
}
@media (min-width: 880px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(140px, auto);
  }
  .gal-lg {
    grid-column: 1 / span 2;
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 100%;
  }
  .gal-wide { grid-column: 2 / span 3; }
}

.areas-left { justify-content: flex-start; }

/* Footer v4 — real-site contact panel */
.footer-v4 {
  background-color: #07111f;
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(201,133,12,.12), transparent 55%),
    linear-gradient(180deg, #0a1628 0%, #07111f 40%, #050c16 100%);
  color: rgba(255,255,255,.78);
  padding: 0 0 calc(5.5rem + env(safe-area-inset-bottom));
}
.footer-cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-cta-kicker {
  margin: 0 0 .2rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f0c36a;
}
.footer-cta-phone {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.footer-cta-phone a {
  color: #fff;
  text-decoration: none;
}
.footer-cta-phone a:hover { color: #f5c451; }
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.footer-panel { padding: 2.25rem 0 1.5rem; }
.footer-panel-grid {
  display: grid;
  gap: 1.75rem;
}
.footer-brand-block .footer-logo {
  width: 112px;
  height: auto;
  margin-bottom: .85rem;
  background: #fff;
  border-radius: 12px;
  padding: .45rem .6rem;
}
.footer-tagline {
  margin: 0 0 1.15rem;
  font-size: .95rem;
  line-height: 1.55;
  max-width: 28rem;
}
.footer-tagline strong { color: #fff; font-size: 1.05rem; }
.footer-nap {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}
.footer-nap li {
  display: grid;
  gap: .2rem;
  font-size: .92rem;
  line-height: 1.45;
}
.fn-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.footer-nap a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.footer-nap a:hover { color: #f5c451; }

.footer-links-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.footer-v4 .footer-col h3 {
  margin: 0 0 .75rem;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-v4 .footer-col a {
  display: block;
  text-decoration: none;
  margin: .38rem 0;
  font-size: .92rem;
  color: rgba(255,255,255,.72);
}
.footer-v4 .footer-col a:hover { color: #fff; }

.footer-map-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: calc(var(--radius) + 4px);
  padding: 1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.map-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: .85rem;
}
.map-card-head h3 {
  margin: 0 0 .2rem;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: -.015em;
}
.map-card-head p {
  margin: 0;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}
.map-open {
  display: inline-flex;
  align-items: center;
  padding: .45rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
}
.map-open:hover { background: rgba(255,255,255,.08); }
.map-frame-pro {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #0b1729;
  aspect-ratio: 16 / 10;
  min-height: 240px;
}
.map-frame-pro iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.08) contrast(1.05) saturate(.95);
}
.map-card-foot {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: .75rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.map-card-foot a {
  color: #f0c36a;
  font-weight: 700;
  text-decoration: none;
}
.map-card-foot a:hover { text-decoration: underline; }

.footer-bottom-v4 {
  margin-top: .5rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  gap: .4rem;
  font-size: .78rem;
  color: rgba(255,255,255,.42);
}
.footer-bottom-v4 p { margin: 0; }
.footer-v4 .comp-note { max-width: 48rem; }

@media (min-width: 960px) {
  .footer-panel-grid {
    grid-template-columns: 1.05fr .85fr 1.25fr;
    align-items: start;
    gap: 2rem;
  }
  .footer-v4 { padding-bottom: 2.25rem; }
  .map-frame-pro { min-height: 280px; }
}

/* Production-like polish */
body { overflow-x: hidden; }
.hero { isolation: isolate; }
.section-head h2 { text-wrap: balance; }
.btn:focus-visible,
.nav a:focus-visible,
.symptom:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.brand{display:inline-flex;align-items:center;flex:0 0 auto;}

/* ===== Mobile stability pack (no horizontal jitter) ===== */
html {
  overflow-x: clip;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  overflow-x: clip;
  max-width: 100%;
  position: relative;
  width: 100%;
}
*, *::before, *::after {
  box-sizing: border-box;
  min-width: 0;
}
img, video, canvas, svg, iframe {
  max-width: 100%;
  height: auto;
}
iframe { display: block; width: 100%; border: 0; }

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: max(1rem, env(safe-area-inset-left)) max(1rem, env(safe-area-inset-right));
}

/* Header: fixed height band, less jump on scroll */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.1) blur(10px);
  -webkit-backdrop-filter: saturate(1.1) blur(10px);
}
.header-inner {
  min-height: 64px;
  align-items: center;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(7,17,31,.08);
}
.brand img {
  width: auto !important;
  height: 40px !important;
  max-width: 140px !important;
  object-fit: contain;
}
@media (min-width: 880px) {
  .brand img { height: 48px !important; max-width: 168px !important; }
}

/* Urgency: single-line compact on mobile so height doesn't thrash */
.urgency-inner {
  gap: .35rem .75rem;
  justify-content: space-between;
}
@media (max-width: 719px) {
  .urgency { font-size: .72rem; }
  .urgency-inner {
    min-height: 36px;
    padding: .35rem 0;
    flex-wrap: nowrap;
  }
  .urgency-inner > span:first-child {
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .urgency-inner a {
    flex: 0 0 auto;
    white-space: nowrap;
    border-bottom: 0;
    background: rgba(255,255,255,.14);
    padding: .28rem .55rem;
    border-radius: 999px;
  }
}

/* Hero mobile: stack clean, no overflow */
.hero { width: 100%; overflow: hidden; }
.hero-media { inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-grid {
  width: 100%;
  padding-block: 2rem 2.25rem;
}
.hero-copy h1 {
  font-size: clamp(1.55rem, 6.2vw, 2.35rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}
.hero-actions {
  display: grid;
  gap: .65rem;
  width: 100%;
}
.hero-actions .btn { width: 100%; justify-content: center; }
.hero-card { width: 100%; }
.estimate-form label,
.estimate-form input,
.estimate-form select {
  width: 100%;
  max-width: 100%;
}

/* Trust / cards / symptoms: prevent grid blowout */
.trust-grid,
.cards,
.cards-4,
.symptom-grid,
.process,
.split,
.footer-main,
.footer-panel-grid,
.gallery {
  width: 100%;
  max-width: 100%;
}
.symptom-grid {
  grid-template-columns: 1fr !important;
}
@media (min-width: 560px) and (max-width: 879px) {
  .symptom-grid { grid-template-columns: 1fr 1fr !important; }
}
.symptom, .card, .trust-item, .process li {
  max-width: 100%;
}
.card-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery mobile: full-width tiles, no 21/10 blowout */
@media (max-width: 879px) {
  .gallery {
    grid-template-columns: 1fr 1fr !important;
    gap: .55rem;
  }
  .gal,
  .gal-lg,
  .gal-wide {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    aspect-ratio: 1 / 1 !important;
    min-height: 0 !important;
  }
  .gal-lg {
    grid-column: 1 / -1 !important;
    aspect-ratio: 16 / 10 !important;
  }
  .gal-wide {
    grid-column: 1 / -1 !important;
    aspect-ratio: 16 / 9 !important;
  }
}

/* Areas chips wrap stably */
.areas, .areas-left {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  max-width: 100%;
}
.areas li {
  max-width: 100%;
}

/* Footer mobile stability */
.footer-v4 { width: 100%; overflow: hidden; }
.footer-panel-grid { grid-template-columns: 1fr !important; }
.footer-cta-strip {
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}
.footer-cta-actions { width: 100%; }
.footer-cta-actions .btn { flex: 1 1 auto; justify-content: center; }
.footer-brand-block,
.footer-links-block,
.footer-map-card,
.footer-tagline,
.footer-nap {
  width: 100%;
  max-width: 100%;
}
.footer-logo { max-width: 120px; }
.map-frame-pro {
  width: 100%;
  max-width: 100%;
  min-height: 200px !important;
  aspect-ratio: 16 / 11;
}
.map-card-head { align-items: stretch; }
.map-open { align-self: flex-start; }

/* Sticky CTA: stable, no horizontal drift */
.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: .5rem;
  padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
  background: rgba(7, 17, 31, .96);
  border-top: 1px solid rgba(255,255,255,.08);
  z-index: 80;
  transform: translateZ(0);
  will-change: auto;
}
.sticky-call a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 750;
  font-size: .92rem;
  padding: .55rem .4rem;
  white-space: nowrap;
}
.sticky-est {
  color: #0f172a;
  background: #fff;
}
.sticky-phone {
  color: #0f172a;
  background: #f0c36a;
}
@media (min-width: 880px) {
  .sticky-call { display: none !important; }
}

/* Body padding so sticky doesn't cover footer content (stable, not jumpy) */
@media (max-width: 879px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
  .footer-v4 {
    padding-bottom: 1.25rem !important;
  }
  .cta-inner {
    display: grid;
    gap: 1rem;
  }
  .cta-actions {
    display: grid;
    width: 100%;
    gap: .55rem;
  }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .header-cta .btn-primary { display: none; } /* phone via sticky + urgency */
  .nav-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  .specials-inner {
    display: grid;
    gap: 1rem;
  }
  .specials-inner .btn { width: 100%; justify-content: center; }
}

/* Kill accidental 100vw scroll traps */
.hero-media,
.site-footer,
.cta-band,
.specials,
.urgency {
  max-width: 100%;
}
