:root {
  --black-900: #18181b;
  --red-700: #c8102e;
  --red-500: #e02440;
  --red-100: #fdeaec;
  --sand: #f7f4f1;
  --ink: #1c1c1f;
  --muted: #66676e;
  --line: #e8e4e2;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(139, 16, 30, 0.12);
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, .brand__text strong {
  font-family: "Barlow Condensed", "Inter", sans-serif;
  line-height: 1.1;
  letter-spacing: 0.2px;
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

a { color: var(--red-700); text-decoration: none; }
a:hover { color: var(--red-500); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--black-900);
  color: #fff;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: #fff; }
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 3px solid var(--red-500);
  outline-offset: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-size: 1rem;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn--primary { background: linear-gradient(135deg, #e02440, #a90d26); color: #fff; box-shadow: 0 10px 24px rgba(200, 16, 46, 0.35); }
.btn--primary:hover { background: linear-gradient(135deg, #ef3a55, #c8102e); color: #fff; box-shadow: 0 14px 30px rgba(200, 16, 46, 0.45); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn--outline { background: transparent; color: var(--black-900); border-color: var(--black-900); }
.btn--outline:hover { background: var(--black-900); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn--lg { padding: 0.95rem 1.8rem; font-size: 1.05rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn--block { width: 100%; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red-700);
  margin: 0 0 0.6rem;
}

/* Icons */
.icon { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon--sm { width: 15px; height: 15px; vertical-align: -2px; }
.icon--fill { width: 18px; height: 18px; fill: currentColor; stroke: none; }

/* Top bar */
.topbar {
  background: var(--black-900);
  color: #e9e7ea;
  font-size: 0.85rem;
  border-bottom: 3px solid var(--red-700);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
}
.topbar__phone { color: #fff; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.topbar__phone:hover { color: #fff; }

/* Header */
.site-header { transition: box-shadow 0.25s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 28px rgba(24, 24, 27, 0.12); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 58px; width: auto; display: block; }

.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a { color: var(--ink); font-weight: 600; font-size: 0.98rem; }
.nav a:hover { color: var(--red-700); }
.nav__cta { color: #fff !important; background: var(--red-700); }
.nav__cta:hover { background: var(--red-500); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: 0.25s; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(122,8,28,0.94), rgba(200,16,46,0.88)),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15), transparent 55%);
  color: #fff;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
  padding: 72px 20px 170px;
}
.hero__divider { position: absolute; left: 0; right: 0; bottom: -1px; pointer-events: none; }
.hero__divider svg { display: block; width: 100%; height: 110px; }
.hero__divider .ridge-back { fill: rgba(255, 255, 255, 0.38); }
.hero__divider .ridge-front { fill: var(--white); }
.hero .eyebrow { color: #f5b1bc; }
.hero .btn--primary { background: #fff; color: var(--red-700); box-shadow: 0 10px 24px rgba(60, 4, 14, 0.35); }
.hero .btn--primary:hover { background: var(--red-100); color: var(--red-700); box-shadow: 0 14px 30px rgba(60, 4, 14, 0.4); }
.hero__lead { font-size: 1.12rem; color: #fdeef0; max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 1.6rem 0; }
.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 1.4rem 0 0; font-weight: 600; font-size: 0.92rem; color: #fff; }
.hero__badges li { background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 999px; padding: 0.45rem 1rem; display: inline-flex; align-items: center; gap: 8px; }

.hero__panel { display: flex; justify-content: center; }
.hero__card {
  border-top: 5px solid var(--red-700);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 300px;
}
.hero__card-logo { width: 100%; height: auto; margin-bottom: 6px; }
.hero__card-label { font-weight: 600; color: var(--muted); }
.hero__card-phone { font-family: "Barlow Condensed", sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--red-700); }
.hero__card-sub { font-size: 0.9rem; color: var(--muted); }

/* Sections */
.section { padding: 72px 0; }
.section--alt { background: var(--sand); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section__head h2::after { content: ""; display: block; width: 64px; height: 4px; border-radius: 2px; background: linear-gradient(90deg, var(--red-700), var(--red-500)); margin: 16px auto 0; }
.section__sub { color: var(--muted); font-size: 1.05rem; }

/* Grid */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--center { align-items: center; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 4px 16px rgba(24,24,27,0.06);
}

/* Services */
.service { transition: transform 0.18s ease, box-shadow 0.18s ease; }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(200, 16, 46, 0.35); }
.service__icon {
  color: var(--red-700);
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--red-100), #fff);
  border: 1px solid #f6d2d8;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(200, 16, 46, 0.10);
  margin-bottom: 14px;
}
.service h3 { color: var(--black-900); }
.service p { color: var(--muted); margin: 0; }

/* About */
.stats { display: flex; gap: 28px; margin-top: 24px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: "Barlow Condensed", sans-serif; font-size: 2.4rem; font-weight: 700; background: linear-gradient(135deg, var(--red-500), #9c0c23); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

.about__photo { width: 100%; height: auto; display: block; border-radius: 18px; box-shadow: var(--shadow); margin-bottom: 24px; }
.about__highlight { background: var(--black-900); color: #f1eff2; border-radius: var(--radius); padding: 32px; }
.about__highlight h3 { color: #fff; }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { padding-left: 30px; position: relative; margin-bottom: 12px; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #ff8fa0; font-weight: 800; }

/* Pills */
.pills { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; padding: 0; justify-content: center; }
.pills li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  font-weight: 600;
  color: var(--black-900);
  box-shadow: 0 2px 8px rgba(24,24,27,0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.pills li:hover { transform: translateY(-3px); border-color: rgba(200, 16, 46, 0.45); color: var(--red-700); }

/* Service-area map + ZIP check */
.area__grid { gap: 30px; }
.area-map-card { padding: 14px; }
.area-map { height: 380px; border-radius: 12px; z-index: 0; }
.area-map__note { margin: 10px 4px 0; font-size: 0.88rem; color: var(--muted); text-align: center; }
.zip-check { margin-bottom: 22px; }
.zip-check h3 { color: var(--black-900); }
.zip-check__form { display: flex; gap: 10px; margin-top: 12px; }
.zip-check__form input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  text-align: center;
  letter-spacing: 2px;
}
.zip-check__form input:focus { outline: 2px solid var(--red-500); border-color: var(--red-500); }
.zip-check__result { margin: 14px 0 0; font-weight: 600; color: var(--muted); }
.zip-check__result--yes { color: #1a7f37; }
.area__grid .pills { justify-content: flex-start; }

/* Reviews */
.quote { position: relative; overflow: hidden; margin: 0; background: #fff; border-radius: 18px; padding: 28px; border: 1px solid var(--line); box-shadow: 0 4px 16px rgba(24,24,27,0.06); }
.quote::before { content: "\201C"; position: absolute; top: -18px; right: 14px; font-family: Georgia, serif; font-size: 7rem; line-height: 1; color: var(--red-100); pointer-events: none; }
.quote__stars { color: #f5a623; display: flex; gap: 3px; margin-bottom: 12px; }
.quote p { font-size: 1.08rem; font-style: italic; }
.quote cite { color: var(--muted); font-style: normal; font-weight: 600; }
.reviews__note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 24px; }

/* Page head (interior pages) */
.page-head__inner { position: relative; padding: 56px 20px 150px; max-width: var(--maxw); margin: 0 auto; }
.page-head h1 { margin-bottom: 0.3em; }
.page-head .hero__lead { margin: 0; }
.page-head__link { color: #fff; text-decoration: underline; }
.page-head__link:hover { color: #f5b1bc; }

/* FAQ */
.faq { max-width: 760px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 14px;
  box-shadow: 0 3px 12px rgba(24,24,27,0.05);
}
.faq details[open] { border-color: rgba(200, 16, 46, 0.35); }
.faq summary {
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red-700); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 12px 0 0; color: var(--ink); }
.faq__cta { text-align: center; margin-top: 36px; }
.faq__cta p { font-weight: 600; color: var(--muted); }

/* Reviews CTA */
.reviews__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* Contact */
.contact__single { max-width: 640px; margin: 0 auto; text-align: center; }
.contact__single .contact__list li { align-items: center; }
.contact__list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 16px; }
.contact__list li { display: flex; flex-direction: column; }
.contact__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); font-weight: 700; }
.contact__list a { font-size: 1.25rem; font-weight: 700; }

.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--red-500); border-color: var(--red-500); }
.field__hint { font-weight: 400; color: var(--muted); font-size: 0.85rem; }
.field input[type="file"] { padding: 0.55rem 0.9rem; cursor: pointer; }
.field input[type="file"]::file-selector-button {
  font: inherit;
  font-weight: 600;
  color: var(--red-700);
  background: var(--red-100);
  border: 0;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-right: 12px;
  cursor: pointer;
}
.contact__form-note { margin: 12px 0 0; font-size: 0.9rem; color: var(--red-700); font-weight: 600; }

/* Footer */
.footer-skyline { background: var(--white); }
.footer-skyline svg { display: block; width: 100%; height: 88px; }
.footer-skyline .ridge-back { fill: rgba(24, 24, 27, 0.32); }
.footer-skyline .ridge-front { fill: var(--black-900); }
.site-footer { background: var(--black-900); color: #e9e7ea; padding: 48px 0 24px; }
.site-footer__inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-logo { height: 96px; width: auto; display: block; filter: invert(1); margin-bottom: 12px; }
.site-footer p { margin: 6px 0 0; max-width: 40ch; }
.site-footer__contact { display: flex; flex-direction: column; gap: 4px; }
.site-footer__contact a { color: #fff; font-size: 1.3rem; font-weight: 700; }
.site-footer__legal { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; font-size: 0.85rem; flex-wrap: wrap; gap: 10px; }
.site-footer__legal a { color: #f5b1bc; }

/* Sticky call button (mobile) */
.call-fab {
  position: fixed;
  bottom: 18px; right: 18px;
  background: var(--red-700);
  color: #fff;
  font-weight: 700;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 60;
  display: none;
  align-items: center;
  gap: 8px;
}
.call-fab .icon { width: 18px; height: 18px; }
.call-fab:hover { color: #fff; background: var(--red-500); }
@keyframes fabPulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.45); }
  70% { box-shadow: 0 0 0 16px rgba(200, 16, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0); }
}
.call-fab { animation: fabPulse 2.4s infinite; }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .call-fab { animation: none; }
  .btn, .service, .pills li { transition: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { justify-content: flex-start; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__cta { margin-top: 10px; text-align: center; border-bottom: 0 !important; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .call-fab { display: inline-flex; }
  .topbar__item { display: none; }
  .topbar__inner { justify-content: center; }
}
