/* =============================================================
   Branded local-service template - design system
   Rebuilt clean from the scoop-king.com structure/UX.
   Single accent color is the per-site variable (footprint rule).
   Set --accent / --accent-dark on :root to reskin a whole site.
   ============================================================= */

:root {
  /* ---- PER-SITE ACCENT (override these two per brand) ---- */
  --accent: #c2410c;        /* primary accent (buttons, links, bands) */
  --accent-dark: #9a3412;   /* hover / deeper accent */

  /* derived accent tints (kept neutral so any hue works) */
  --accent-soft: color-mix(in srgb, var(--accent) 12%, white);
  --accent-faint: color-mix(in srgb, var(--accent) 7%, white);
  --accent-tint-line: color-mix(in srgb, var(--accent) 45%, white);

  /* ---- fixed neutral system (shared across all sites) ---- */
  --ink: #0f172a;          /* near-black, dark bands + footer */
  --ink-2: #1e293b;        /* slightly lighter dark */
  --text: #172033;         /* body text */
  --text-dim: #475569;     /* secondary text */
  --text-faint: #94a3b8;   /* meta / muted */
  --border: #e5e7eb;       /* hairline */
  --border-dark: #cbd5e1;
  --white: #ffffff;
  --page-bg: #f8fafc;      /* very light page background */
  --panel: #f1f5f9;        /* light panel fill */

  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06);
  --shadow-md: 0 6px 18px rgba(15,23,42,0.09);
  --shadow-lg: 0 20px 50px rgba(15,23,42,0.16);
  --shadow-btn: 0 8px 22px rgba(15,23,42,0.28);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 100px;
  --max: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--page-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { line-height: 1.1; }

/* ---------- shared layout ---------- */
.container { max-width: var(--max); margin: 0 auto; }
section { padding: 84px 24px; }
.eyebrow {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 14px;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.025em;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 14px;
}
.section-head .lead {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn svg { flex: 0 0 auto; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--ink); color: #fff; }
.btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-lg { padding: 18px 34px; font-size: 17px; }
.btn-block { width: 100%; }
/* on dark/accent bands, invert the primary to white */
.on-accent .btn-primary,
.on-dark .btn-primary { background: #fff; color: var(--ink); }
.on-accent .btn-primary:hover,
.on-dark .btn-primary:hover { background: rgba(255,255,255,0.88); color: var(--ink); }
.on-accent .btn-outline,
.on-dark .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.on-accent .btn-outline:hover,
.on-dark .btn-outline:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ============================================================
   PROMO BAR
   ============================================================ */
.promo-bar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 101;
}
.promo-bar strong { font-weight: 800; }
.promo-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: 800;
}
.promo-bar .pb-accent { color: var(--accent-tint-line); }

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--accent);
  z-index: 1000;
  transition: width 0.05s linear;
}

/* ============================================================
   NAV (sticky)
   ============================================================ */
nav.topbar {
  position: fixed;
  top: 40px; left: 0; right: 0;   /* sits below the promo bar */
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: box-shadow 0.3s ease, top 0.3s ease;
}
nav.topbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 22px; height: 22px; }
.nav-links {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
}
.nav-links a { padding: 8px 0; position: relative; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
}
.nav-phone svg { color: var(--accent); }
.nav-cta .btn { padding: 11px 20px; font-size: 14px; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: all 0.3s;
}
.mobile-menu {
  position: fixed;
  top: 104px; left: 0; right: 0;
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateY(-140%);
  transition: transform 0.32s ease;
  padding: 20px 24px 28px;
  z-index: 99;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 18px; }

/* ============================================================
   HERO (centered)
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 50% -10%, var(--accent-faint), transparent 70%),
    var(--page-bg);
  overflow: hidden;
  padding: 172px 24px 76px;
  text-align: center;
}
.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(15,23,42,0.08);
}
.pill-tag .stars { color: var(--accent); letter-spacing: -1px; }
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(38px, 6.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto 18px;
}
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero .aeo {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  max-width: 62ch;
  margin: 0 auto 14px;
  font-weight: 500;
}
.hero .sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 34px;
  line-height: 1.5;
}
.hero .sub strong { color: var(--ink); }
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-photo {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 26px 64px rgba(15,23,42,0.20);
  border: 6px solid #fff;
  aspect-ratio: 16/9;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.96);
  padding: 11px 17px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(0,0,0,0.16);
}
.hero-photo .badge .dot {
  width: 10px; height: 10px;
  background: #16a34a;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(22,163,74,0.5);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

/* ============================================================
   TRUST STRIP (dark band)
   ============================================================ */
.trust-strip { background: var(--ink); color: #fff; padding: 18px 24px; }
.trust-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 18px 26px;
  text-align: center;
}
.trust-strip .item {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600;
}
.trust-strip .item svg { color: var(--accent-tint-line); flex: 0 0 auto; }

/* ============================================================
   SERVICES (icon cards)
   ============================================================ */
.services { background: var(--page-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.service-card .ic {
  width: 58px; height: 58px;
  border-radius: 15px;
  background: var(--accent-faint);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.service-card .ic svg { width: 30px; height: 30px; }
.service-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.service-card p { font-size: 14.5px; color: var(--text-dim); line-height: 1.6; }

/* ============================================================
   PROOF GALLERY (accent band)
   ============================================================ */
.proof {
  background: var(--accent);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  z-index: 0;
}
.proof > * { position: relative; z-index: 1; }
.proof .section-head h2 { color: #fff; }
.proof .eyebrow { color: rgba(255,255,255,0.85); }
.proof .section-head .lead { color: rgba(255,255,255,0.9); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}
.proof-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  background: var(--panel);
  transition: transform 0.3s ease;
}
.proof-tile:hover { transform: translateY(-6px); }
.proof-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.proof-tile:hover img { transform: scale(1.05); }
.proof-tile .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
}
.proof-tile .caption h4 { font-size: 17px; font-weight: 800; margin-bottom: 3px; }
.proof-tile .caption p { font-size: 13px; opacity: 0.9; }
/* labeled placeholder (used where a real photo is needed) */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background:
    repeating-linear-gradient(45deg, var(--panel), var(--panel) 12px, #e2e8f0 12px, #e2e8f0 24px);
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   HOW IT WORKS (step cards)
   ============================================================ */
.how { background: var(--page-bg); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.step .num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 9px; }
.step p { font-size: 14px; color: var(--text-dim); line-height: 1.55; }

/* ============================================================
   VALUE / "NO SURPRISE FEES" CARD  (light section, dark card)
   ============================================================ */
.value { background: #fff; }
.value-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--ink);
  color: #fff;
  border-radius: 26px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(15,23,42,0.32);
}
.value-card .badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 6px 15px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.value-card .big {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(40px, 7vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.value-card .big .small { font-size: 20px; opacity: 0.85; font-weight: 700; }
.value-card .desc { font-size: 16px; opacity: 0.92; margin: 14px 0 26px; }
.value-card ul { list-style: none; text-align: left; margin-bottom: 28px; }
.value-card ul li {
  padding: 9px 0;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255,255,255,0.95);
}
.value-card ul li svg { flex: 0 0 18px; color: var(--accent-tint-line); margin-top: 3px; }
.value-card .fine { font-size: 12px; opacity: 0.7; margin-top: 14px; }
.value-card .fine a { color: var(--accent-tint-line); text-decoration: underline; }

/* ============================================================
   TESTIMONIALS (light panel)
   ============================================================ */
.reviews { background: var(--panel); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}
.review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.review .stars { color: var(--accent); font-size: 17px; letter-spacing: -1px; margin-bottom: 14px; }
.review .quote { font-size: 15.5px; color: var(--ink); line-height: 1.6; margin-bottom: 20px; font-weight: 500; }
.review .author { display: flex; align-items: center; gap: 13px; padding-top: 16px; border-top: 1px solid var(--border); }
.review .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
}
.review .name { font-size: 14px; font-weight: 800; color: var(--ink); }
.review .meta { font-size: 12px; color: var(--text-faint); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--page-bg); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.faq-q .plus {
  width: 28px; height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--accent-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  font-weight: 800;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 22px; font-size: 15px; color: var(--text-dim); line-height: 1.65; }

/* ============================================================
   FINAL CTA (accent band)
   ============================================================ */
.final-cta {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 92px 24px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(34px, 5.4vw, 58px);
  letter-spacing: -0.03em;
  font-weight: 900;
  margin-bottom: 16px;
}
.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.94);
  max-width: 560px;
  margin: 0 auto 34px;
}
.final-cta .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta .phone-line {
  margin-top: 22px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}
.final-cta .phone-line a { font-weight: 800; text-decoration: underline; }

/* ============================================================
   FOOTER (dark)
   ============================================================ */
footer { background: var(--ink); color: rgba(255,255,255,0.72); padding: 66px 24px 28px; }
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand .brand-mark { background: var(--accent); }
.footer-brand p { font-size: 14.5px; line-height: 1.6; max-width: 300px; margin-bottom: 14px; }
.footer-brand .fb-contact { display: block; padding: 4px 0; font-size: 14.5px; color: rgba(255,255,255,0.72); }
.footer-brand .fb-contact.tel { color: #fff; font-weight: 800; font-size: 17px; }
.footer-brand .btn { margin-top: 16px; }
.footer-col h5 {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col a { display: block; padding: 5px 0; font-size: 14.5px; color: rgba(255,255,255,0.72); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom a:hover { color: #fff; }
.footer-disclaimer {
  max-width: var(--max);
  margin: 14px auto 0;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ============================================================
   STICKY MOBILE CALL BAR
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  padding: 12px 14px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.12);
  z-index: 60;
  gap: 10px;
}
.sticky-cta .btn { flex: 1; }
.sticky-cta .btn-call { background: var(--accent); color: #fff; box-shadow: none; }

/* ============================================================
   QUOTE MODAL
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.72);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.modal-backdrop.open { display: flex; }
.modal-window {
  background: #fff;
  border-radius: 26px;
  max-width: 500px;
  width: 100%;
  padding: 34px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  max-height: 92vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--text-dim);
}
.modal-close:hover { background: var(--border); color: var(--ink); }
.modal-window .m-head { text-align: center; margin-bottom: 20px; }
.modal-window .m-badge {
  display: inline-block;
  background: var(--accent-faint);
  color: var(--accent-dark);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.modal-window h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-weight: 900;
}
.modal-window .m-sub { font-size: 15px; color: var(--text-dim); }
.field-group { margin-bottom: 15px; }
.field-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.field-group input,
.field-group select {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s;
}
.field-group input:focus,
.field-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-faint);
}
.modal-window .m-call {
  margin: 18px 0;
  padding: 16px;
  background: var(--accent-faint);
  border: 2px dashed var(--accent);
  border-radius: 12px;
  text-align: center;
}
.modal-window .m-call .l { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 4px; }
.modal-window .m-call a { font-size: 26px; font-weight: 900; color: var(--accent-dark); font-family: "Fraunces", Georgia, serif; }
.modal-window .m-trust { font-size: 11px; color: var(--text-faint); text-align: center; margin-top: 12px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 920px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero { padding: 150px 20px 56px; }
}
@media (max-width: 700px) {
  section { padding: 60px 20px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 78px; }
  .hero-photo { aspect-ratio: 4/3; }
  .nav-cta .btn-quote { display: none; }  /* keep only call in the tight header */
  .footer-inner { grid-template-columns: 1fr; }
  /* long single-line buttons must never push past the viewport */
  .btn { white-space: normal; max-width: 100%; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .hero h1 { font-size: clamp(29px, 8vw, 40px); }
}
@media (max-width: 380px) {
  .hero h1 { font-size: 27px; }
}
