/* First Alarm Restoration — design tokens */
:root {
  --red: #A62F2C;
  --red-dark: #7E211F;
  --red-light: #BF6967;
  --ink: #1B1A19;
  --navy: #14181D;
  --charcoal: #4D4D4D;
  --slate: #6B6A68;
  --paper: #FFFFFF;
  --cream: #F7F4F1;
  --soft: #F6F8FB;
  --line: #E7E2DD;
  --amber: #D98B2B;
  --radius: 10px;
  --shadow: 0 20px 50px -20px rgba(27, 26, 25, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(27, 26, 25, 0.25);
  --container: 1260px;
  --ff: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--ff);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.12; margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); text-transform: uppercase; font-weight: 900; letter-spacing: -0.005em; }
.hero-rule { width: 88px; height: 5px; background: var(--red-light); border-radius: 3px; margin: 18px 0 22px; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; color: var(--charcoal); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--red); display: inline-block; }
.lede { font-size: 1.1rem; max-width: 62ch; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 8px; font-weight: 700; font-size: 0.98rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

/* Header — floats over the hero photo (fixed, out of normal flow) so it's
   transparent against the actual image, not the blank page background above it;
   turns solid white once you scroll past the hero. */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  /* subtle permanent scrim, not fully transparent — keeps logo/nav legible on first paint
     regardless of what's in the photo underneath, before the scroll state kicks in */
  background: linear-gradient(180deg, rgba(10,8,7,0.45) 0%, rgba(10,8,7,0.15) 100%);
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96); backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line); box-shadow: 0 4px 20px -8px rgba(0,0,0,0.12);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 122px; }
.brand { display: flex; align-items: center; }
.brand img { height: 115px; width: auto; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5)); }
.site-header.scrolled .brand img { filter: none; }
.brand .logo-light { display: block; }
.brand .logo-dark { display: none; }
.site-header.scrolled .brand .logo-light { display: none; }
.site-header.scrolled .brand .logo-dark { display: block; }
.main-nav { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.nav-dd { position: relative; padding-bottom: 20px; margin-bottom: -20px; }
.nav-dd-toggle {
  display: inline-flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer;
  font: inherit; font-weight: 700; font-size: 0.95rem; color: #fff; padding: 4px 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4); transition: color 0.25s ease, text-shadow 0.25s ease;
}
.site-header.scrolled .nav-dd-toggle { color: var(--ink); text-shadow: none; }
.nav-dd-toggle svg { transition: transform 0.2s ease; flex-shrink: 0; }
.nav-dd:hover .nav-dd-toggle svg, .nav-dd:focus-within .nav-dd-toggle svg { transform: rotate(180deg); }
.mega-menu {
  position: absolute; top: 100%; left: 0; transform: none;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow);
  padding: 32px 36px; display: none; grid-template-columns: repeat(2, 230px); gap: 32px 56px;
  z-index: 10; width: max-content; max-width: 90vw;
}
.mega-menu--single { grid-template-columns: 230px; }
.nav-dd:hover .mega-menu, .nav-dd:focus-within .mega-menu { display: grid; }
.mega-col { display: flex; flex-direction: column; gap: 13px; }
.mega-col h4 {
  font-size: 1.05rem; font-weight: 900; letter-spacing: 0.01em; text-transform: none;
  color: var(--red); margin: 0 0 10px; line-height: 1.3; padding-bottom: 8px;
  border-bottom: 2px solid var(--line);
}
/* Higher specificity than .main-nav a / .site-header.scrolled .main-nav a so the dropdown's
   own dark-on-white styling can never be overridden by the header's light/dark nav-text state. */
.mega-menu .mega-col a { color: var(--charcoal) !important; text-shadow: none !important; text-decoration: none; font-size: 0.95rem; line-height: 1.35; white-space: normal; }
.mega-menu .mega-col a:hover { color: var(--red) !important; text-decoration: underline; }
.mega-footer { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 18px; margin-top: 6px; }
.mega-menu .mega-footer a { color: var(--red) !important; text-shadow: none !important; font-weight: 700; text-decoration: none; font-size: 0.92rem; }
.mega-menu .mega-footer a:hover { text-decoration: underline; }
@media (max-width: 1080px) { .nav-dd { display: none; } }
.main-nav a { white-space: nowrap; }
.main-nav a {
  text-decoration: none; font-weight: 700; font-size: 0.95rem; color: #fff;
  position: relative; padding: 4px 0; text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.site-header.scrolled .main-nav a { color: var(--ink); text-shadow: none; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--red-light); transform: scaleX(0); transition: transform 0.2s ease; transform-origin: left;
}
.site-header.scrolled .main-nav a::after { background: var(--red); }
.main-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-pill {
  display: inline-flex; align-items: center; gap: 12px; font-weight: 800; color: #fff;
  text-decoration: none; font-size: 1.08rem; text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.site-header.scrolled .phone-pill { color: var(--ink); text-shadow: none; }
.phone-icon {
  width: 42px; height: 42px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0;
  box-shadow: 0 4px 14px -4px rgba(166,47,44,0.6);
}
.phone-text { display: flex; flex-direction: column; line-height: 1.2; }
.phone-label {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.site-header.scrolled .phone-label { color: var(--slate); }
.nav-toggle { display: none; }
.nav-toggle svg { color: #fff; transition: color 0.25s ease; }
.site-header.scrolled .nav-toggle svg { color: var(--ink); }

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.1);
    transition: background-color 0.25s ease, border-color 0.25s ease;
  }
  .site-header.scrolled .nav-toggle { border-color: var(--line); background: #fff; }
  .header-actions .btn-primary.desktop-only { display: none; }
}
@media (max-width: 560px) {
  .brand img { height: 73px; }
  .site-header .container { height: 80px; }
  .phone-pill .phone-text { display: none; }
  .phone-icon { width: 46px; height: 46px; }
  .hero { padding-top: 120px; }
  .page-hero { padding-top: 116px; }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60; background: var(--ink);
  display: flex; flex-direction: column; padding: 24px;
  transform: translateX(100%); transition: transform 0.25s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu { overflow-y: auto; -webkit-overflow-scrolling: touch; }
.mobile-menu .close-btn { align-self: flex-end; background: none; border: none; color: #fff; width: 44px; height: 44px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; margin-top: 20px; }
.mobile-menu nav a {
  color: #fff; text-decoration: none; font-size: 1.4rem; font-weight: 800; padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-menu .btn { margin-top: 24px; }

/* Mobile menu — expandable Services / Service Areas accordions */
.mobile-nav-group { border-bottom: 1px solid rgba(255,255,255,0.12); }
.mobile-nav-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: none; border: none; color: #fff; font: inherit; font-size: 1.4rem; font-weight: 800;
  padding: 14px 4px; cursor: pointer; text-align: left;
}
.mobile-nav-toggle .chev { transition: transform 0.2s ease; flex-shrink: 0; }
.mobile-nav-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.mobile-submenu { display: none; padding: 0 4px 20px; }
.mobile-submenu.open { display: block; }
.mobile-submenu-cat { margin-bottom: 18px; }
.mobile-submenu-cat:last-of-type { margin-bottom: 10px; }
.mobile-submenu-cat h5 {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--red-light); margin: 0 0 8px;
}
.mobile-menu nav .mobile-submenu a {
  display: block; color: rgba(255,255,255,0.85); text-decoration: none; font-size: 1.05rem; font-weight: 600;
  padding: 8px 0; border-bottom: none;
}
.mobile-menu nav .mobile-submenu-viewall {
  display: inline-block; color: var(--red-light); font-weight: 700; margin-top: 4px;
}

/* Hero — one full-bleed photo with a uniform dark wash, matching the live site's
   approach: consistent overlay across the whole image so text reads anywhere,
   rather than tuning contrast to one specific photo's bright/dark zones. */
.hero {
  position: relative; color: #fff; overflow: hidden;
  padding: 180px 0 70px;
  background-color: #1b1a19;
}
.hero-photo {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-size: cover; background-position: center 40%;
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  /* uniform dark wash, slightly deeper on the left where the copy sits */
  background: linear-gradient(100deg, rgba(10,8,7,0.72) 0%, rgba(10,8,7,0.6) 100%);
}
.hero h1, .hero .lede, .hero-counties { text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero-copy { max-width: 560px; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; font-weight: 700;
  background: rgba(15,12,11,0.65); border: 1px solid rgba(255,255,255,0.25);
  padding: 7px 13px; border-radius: 999px; letter-spacing: 0.02em; backdrop-filter: blur(6px);
}
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--red-light); }
.hero .lede { color: rgba(255,255,255,0.86); font-size: 1.15rem; }
.hero-counties {
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin: 18px 0 26px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-form {
  background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); color: var(--ink);
}
.hero-form h3 { color: var(--ink); margin-bottom: 4px; font-size: 1.15rem; }
.hero-form .hero-note { font-size: 0.8rem; color: var(--slate); margin: 10px 0 0; }
.hero-form .form-row { margin-bottom: 12px; }
.hero-form button { width: 100%; }
.consent-row {
  display: flex; align-items: flex-start; gap: 10px; margin: 6px 0 16px;
  font-size: 0.8rem; color: var(--slate); cursor: pointer;
}
.consent-row input { margin-top: 3px; flex-shrink: 0; }
.consent-row a { color: var(--red); text-decoration: underline; }

/* Inner-page header band (service pages) */
.page-hero {
  background: linear-gradient(120deg, var(--ink), #2b1615 60%, var(--red-dark));
  color: #fff; padding: 160px 0 60px;
}
.page-hero .breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero .eyebrow { color: var(--red-light); }
.page-hero .eyebrow::before { background: var(--red-light); }
.page-hero h1 { color: #fff; }
.page-hero .lede { color: rgba(255,255,255,0.85); max-width: 640px; }

/* Trust bar — one continuous horizontal banner */
.trustbar { background: #fff; padding: 0; }
.trustbar .container { display: flex; align-items: stretch; padding: 0; max-width: var(--container); }
.trustbar-item {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 22px 16px; border-right: 1px solid var(--line); text-align: left;
}
.trustbar-item:last-child { border-right: none; }
.trustbar-item svg { color: var(--red); flex-shrink: 0; }
.trustbar-item .label { display: flex; flex-direction: column; line-height: 1.25; }
.trustbar-item .big { font-weight: 900; font-size: 0.95rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink); }
.trustbar-item .small { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.03em; color: var(--slate); }
@media (max-width: 900px) {
  .trustbar .container { flex-wrap: wrap; }
  .trustbar-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--line); justify-content: flex-start; }
  .trustbar-item:nth-child(odd) { border-right: 1px solid var(--line); }
}

/* Certs / IICRC badge band */
.certs-band { background: var(--navy); color: #fff; padding: 40px 0; text-align: center; }
.certs-band .eyebrow { color: rgba(255,255,255,0.7); justify-content: center; margin-bottom: 20px; }
.certs-band .eyebrow::before { background: var(--red-light); }
.iicrc-badge { margin: 0 auto; height: 64px; width: auto; border-radius: 6px; }

/* About */
.about-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.about-stats { display: grid; gap: 18px; align-content: start; }
.stat-card {
  background: var(--soft); border-left: 4px solid var(--red); border-radius: 8px;
  padding: 22px 26px; display: flex; flex-direction: column; gap: 4px;
}
.stat-num { font-size: 2.4rem; font-weight: 900; color: var(--ink); line-height: 1; }
.stat-label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--slate); }
@media (max-width: 800px) { .about-wrap { grid-template-columns: 1fr; } }

/* Accent color bands (matches brand red section rhythm) */
.bg-red { background: var(--red); color: #fff; }
.bg-red h2, .bg-red h3 { color: #fff; }
.bg-red p { color: rgba(255,255,255,0.85); }
.bg-red .eyebrow { color: rgba(255,255,255,0.85); }
.bg-red .eyebrow::before { background: #fff; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
}

/* Trust strip */
.trust-strip { background: var(--ink); color: #fff; padding: 20px 0; }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.88); }
.trust-item svg { color: var(--red-light); flex-shrink: 0; }

/* Sections */
section { padding: 84px 0; }
section[id] { scroll-margin-top: 96px; } /* keeps anchor targets clear of the fixed header */
.section-head { max-width: 680px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.bg-cream { background: var(--cream); }
.bg-ink { background: var(--ink); color: #fff; }
.bg-ink p { color: rgba(255,255,255,0.75); }
.bg-ink h2 { color: #fff; }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.services-grid--10 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .services-grid--10 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .services-grid--10 { grid-template-columns: 1fr; } }

/* Difference cards (red band) */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.diff-card { background: #fff; color: var(--ink); border-radius: var(--radius); padding: 28px; }
.diff-card .service-icon { background: rgba(166,47,44,0.1); }
.diff-card h3 { color: var(--ink) !important; }
.diff-card p { font-size: 0.92rem; color: var(--charcoal) !important; }
@media (max-width: 900px) { .diff-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .diff-grid { grid-template-columns: 1fr; } }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: transparent; }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px; background: rgba(166,47,44,0.1);
  display: flex; align-items: center; justify-content: center; color: var(--red); margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.94rem; margin-bottom: 14px; }
.service-link { font-weight: 700; font-size: 0.9rem; color: var(--red); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { text-decoration: underline; }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* Services hub — category blocks */
.service-category-block { margin-bottom: 56px; }
.service-category-block:last-child { margin-bottom: 0; }
.service-category-head { margin-bottom: 22px; }
.service-category-head h3 { font-size: 1.4rem; margin-bottom: 6px; }
.service-category-head h3 a { color: var(--ink); text-decoration: none; }
.service-category-head h3 a:hover { color: var(--red); }
.service-category-head p { color: var(--slate); max-width: 640px; }
.service-category-more { margin-top: 18px; }
.service-category-more a { font-weight: 700; color: var(--red); text-decoration: none; }
.service-category-more a:hover { text-decoration: underline; }

/* Difference / why us */
.diff-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.diff-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.diff-list li { display: flex; gap: 16px; }
.diff-num {
  width: 40px; height: 40px; border-radius: 8px; background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0;
}
.bg-red .diff-num { background: #fff; color: var(--red); }
.diff-list h3 { margin-bottom: 4px; font-size: 1.08rem; }
.diff-list p { font-size: 0.93rem; margin-bottom: 0; }
.diff-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.diff-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.diff-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  color: #fff; font-size: 0.85rem; font-weight: 600; margin: 0;
}

@media (max-width: 900px) { .diff-wrap { grid-template-columns: 1fr; } .diff-photo { order: -1; } }

/* Work gallery */
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.work-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.work-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.work-item figcaption {
  padding: 16px 18px; background: #fff; font-size: 0.9rem; color: var(--charcoal); font-weight: 600;
}
@media (max-width: 700px) { .work-grid { grid-template-columns: 1fr; } }

/* Testimonials */
.rating-line { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; }
.stars { color: var(--amber); letter-spacing: 2px; font-size: 1.2rem; }
.rating-line strong { font-size: 1.05rem; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* Reviews marquee — continuous right-to-left scroll, track content duplicated for a seamless loop */
.reviews-marquee {
  overflow: hidden; margin: 0 -24px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex; gap: 24px; width: max-content;
  animation: marquee-scroll 34s linear infinite;
}
.reviews-marquee:hover .marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track .testimonial-card { flex: 0 0 min(420px, 84vw); }

.testimonial-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
}
.testimonial-card .stars { display: block; margin-bottom: 14px; }
.testimonial-card p.quote { font-size: 1rem; color: var(--ink); margin-bottom: 20px; }
.testimonial-meta { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.95rem; flex-shrink: 0;
}
.testimonial-meta .name { font-weight: 800; font-size: 0.92rem; }
.testimonial-meta .date { font-size: 0.8rem; color: var(--slate); }
@media (max-width: 700px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* Areas */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.area-chip {
  border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px;
  font-weight: 700; font-size: 0.92rem; display: flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ink);
}
.area-chip svg { color: var(--red); flex-shrink: 0; }
.bg-red .area-chip { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); color: #fff; }
.bg-red .area-chip svg { color: #fff; }
@media (max-width: 800px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }

/* Area pills + map */
.areas-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 980px; margin: 0 auto; }
.area-pill {
  background: #fff; color: var(--ink); font-weight: 700; font-size: 0.92rem;
  padding: 12px 22px; border-radius: 999px;
}
.map-embed {
  margin-top: 32px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  line-height: 0;
}

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 24px; font-weight: 700; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: ""; position: absolute; background: var(--red); border-radius: 2px;
}
.faq-item summary .plus::before { width: 16px; height: 2px; top: 11px; left: 4px; }
.faq-item summary .plus::after { width: 2px; height: 16px; left: 11px; top: 4px; transition: transform 0.2s ease; }
.faq-item[open] summary .plus::after { transform: rotate(90deg); }
.faq-item .faq-body { padding: 0 24px 22px; margin: 0; font-size: 0.95rem; }

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 34px;
}
.contact-info-card h3 { color: #fff; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-row svg { color: var(--red-light); flex-shrink: 0; margin-top: 3px; }
.contact-row a, .contact-row span { color: rgba(255,255,255,0.9); text-decoration: none; font-size: 0.95rem; }
.contact-row a:hover { text-decoration: underline; }
.social-row { display: flex; gap: 10px; margin-top: 24px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none;
}
.social-row a:hover { background: var(--red); }

.contact-form { background: #fff; border-radius: var(--radius); padding: 34px; color: var(--ink); }
.contact-form h3 { color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.82rem; font-weight: 700; color: var(--charcoal); }
.form-field input, .form-field textarea {
  border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; font: inherit; color: var(--ink);
  background: var(--cream);
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; }
.contact-form button { width: 100%; margin-top: 6px; }
.form-note { font-size: 0.78rem; color: var(--slate); margin-top: 12px; margin-bottom: 0; }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--red), var(--red-dark));
  color: #fff; padding: 56px 0; text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 26px; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.7); }

/* Footer */
footer.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer-grid img { height: 64px; margin-bottom: 14px; }
.footer-grid p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col li { font-size: 0.92rem; color: rgba(255,255,255,0.7); }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.hours-list li { display: flex; justify-content: space-between; gap: 12px; }
.hours-list span:first-child { color: rgba(255,255,255,0.9); font-weight: 700; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.82rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* Reveal animation */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--red); color: #fff;
  padding: 12px 18px; border-radius: 0 0 8px 0; z-index: 100; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }
