/* ============================================================
   Sidekick Plumbing — Brand styles
   Brand: deep teal #015F73, bright teal #039396, brick #AC2524, tan #FDC785
   Type: Sunday Breaks (display) + Gotham Black (UI/body)
   Sunday Breaks isn't on Google Fonts; using Fraunces (similar warm slab serif vibe).
   Gotham isn't free; using Inter / Anton-style stack with Montserrat for headings, with strong weights to mimic Gotham Black.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,400;9..144,600;9..144,700;9..144,800;9..144,900&family=Montserrat:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand palette */
  --teal-deep: #015F73;
  --teal-bright: #039396;
  --brick: #AC2524;
  --brick-dark: #8a1c1b;
  --tan: #FDC785;
  --tan-light: #fde2bb;
  --cream: #FBF6EC;
  --cream-warm: #F5EBD7;
  --ink: #0E2A33;
  --paper: #ffffff;
  --paper-dim: #f4f0e6;

  /* Type */
  --display: 'Fraunces', Georgia, serif;
  --ui: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Container */
  --container: 1240px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(14,42,51,0.08);
  --shadow-md: 0 8px 24px rgba(14,42,51,0.12);
  --shadow-lg: 0 16px 48px rgba(14,42,51,0.18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--ui);
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  max-width: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--brick); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--teal-deep);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; font-family: var(--ui); font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brick); }

p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--brick);
  color: #fff;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 8px 24px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { width: 16px; height: 16px; }

/* ============ HEADER ============ */
.site-header {
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand img {
  height: 64px;
  width: auto;
}
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-family: var(--ui);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.88rem;
}
.nav a { color: var(--teal-deep); }
.nav a:hover { color: var(--brick); text-decoration: none; }
.nav .has-dropdown { position: relative; }
.submenu-toggle { display: none; }  /* desktop: hover reveals submenu, no toggle button needed */
.nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  background: #fff;
  border: 2px solid var(--cream-warm);
  border-radius: 12px;
  padding: 12px 0;
  min-width: 240px;
  box-shadow: var(--shadow-md);
  z-index: 60;
}
.nav .has-dropdown:hover .dropdown { display: block; }
.nav .dropdown a {
  display: block;
  padding: 8px 18px;
  font-size: 0.82rem;
  color: var(--teal-deep);
}
.nav .dropdown a:hover { background: var(--cream); color: var(--brick); }

/* Areas dropdown — 2-column layout for the 16 priority towns */
.nav .dropdown-areas {
  min-width: 460px;
  display: none;
  padding: 14px 8px 8px;
  left: 50%;
  transform: translateX(-50%);
}
.nav .has-dropdown:hover .dropdown-areas { display: grid; }
.nav .dropdown-areas {
  grid-template-columns: 1fr 1fr;
  column-gap: 4px;
}
.nav .dropdown-areas a {
  padding: 7px 14px;
  font-size: 0.82rem;
  border-radius: 6px;
}
.nav .dropdown-areas a.dropdown-all {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 2px solid var(--cream-warm);
  text-align: center;
  color: var(--brick);
}

.header-cta {
  display: flex; align-items: center; gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--ui);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--brick); color: #fff; border-color: var(--brick); }
.btn-primary:hover { background: var(--brick-dark); color: #fff; }
.btn-secondary { background: var(--teal-deep); color: #fff; border-color: var(--teal-deep); }
.btn-secondary:hover { background: var(--teal-bright); color: #fff; }
.btn-tan { background: var(--tan); color: var(--teal-deep); border-color: var(--tan); }
.btn-outline { background: transparent; color: var(--teal-deep); border-color: var(--teal-deep); }

.menu-toggle {
  display: none;
  background: var(--teal-deep);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header .container { grid-template-columns: auto auto; }
  .header-cta .btn-tan { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    /* override desktop centering so menu items left-align in column layout */
    justify-content: flex-start;
    align-items: stretch;
    text-align: left;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    padding: 16px;
    gap: 8px;
    border-top: 2px solid var(--cream-warm);
    /* allow long dropdowns (Service Areas with 34 towns) to scroll inside the menu */
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.open a { padding: 10px 8px; width: 100%; text-align: left; }
  /* Top-level Services / Service Areas labels read as section headers */
  .nav.open .has-dropdown {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .nav.open .has-dropdown > a {
    font-weight: 800;
    color: var(--teal-deep);
    flex: 1 1 auto;
    width: auto;
  }
  .nav.open .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--teal-deep);
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.18s ease;
    flex: 0 0 auto;
  }
  .nav.open .has-dropdown.open > .submenu-toggle {
    transform: rotate(180deg);
  }
  /* Reset both dropdown variants from desktop — no absolute positioning,
     no centered transform, no 2-column grid, no min-width that breaks small screens */
  .nav.open .dropdown,
  .nav.open .dropdown-areas {
    position: static;
    transform: none;
    left: auto; right: auto;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 4px 12px;
    min-width: 0;
    width: 100%;
    text-align: left;
  }
  .nav.open .dropdown-areas {
    display: none;          /* hidden until parent has .open */
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .nav.open .has-dropdown:hover .dropdown,
  .nav.open .has-dropdown:hover .dropdown-areas {
    /* Disable hover-to-open on mobile — use .open class instead */
    display: none;
  }
  .nav.open .has-dropdown.open > .dropdown,
  .nav.open .has-dropdown.open > .dropdown-areas {
    display: block;
  }
  .nav.open .dropdown a,
  .nav.open .dropdown-areas a {
    display: block;
    padding: 9px 8px;
    text-align: left;
    font-size: 0.85rem;
    border-radius: 6px;
  }
  .nav.open .dropdown-areas a.dropdown-all {
    text-align: left;
    grid-column: auto;
    margin-top: 4px;
    padding-top: 10px;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--teal-deep) 0%, #013d4a 100%);
  color: #fff;
  overflow: hidden;
  padding: 56px 0 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(3,147,150,0.25), transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(253,199,133,0.15), transparent 50%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brick);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--ui);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  border: 2px solid var(--tan);
  margin-bottom: 24px;
}
.hero h1 {
  color: #fff;
  font-family: var(--display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2.4rem, 4.8vw, 3.9rem);
  line-height: 1.02;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.hero h1 em { font-style: italic; color: var(--tan); }
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 10px;
}
.hero-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.hero-list li::before {
  content: '';
  display: inline-block;
  width: 22px; height: 22px;
  background: var(--brick);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M22 11V7a2 2 0 0 0-2-2h-4l-2-2h-4l-2 2H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2v6a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-6a2 2 0 0 0 2-2zm-2 0h-1V8a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3H4V7h4l2-2h4l2 2h4z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
}
.rating-badge .stars { color: var(--tan); font-size: 0.95rem; letter-spacing: 1px; }
.rating-badge .label { font-weight: 800; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
.rating-badge .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: #fff;
  border-radius: 50%;
  color: var(--teal-deep);
  font-weight: 900;
  font-size: 0.85rem;
}

.hero-mascot {
  position: relative;
  text-align: center;
}
.hero-mascot::before {
  content: '';
  position: absolute;
  inset: 10% 8%;
  background: radial-gradient(circle, rgba(3,147,150,0.5) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.hero-mascot img {
  position: relative;
  z-index: 1;
  max-height: 460px;
  width: auto;
  margin: 0 auto;
}

/* ===== Real photo variant of hero (used when hero_image is a real photo) ===== */
.hero-image {
  position: relative;
  text-align: center;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 6% 4%;
  background: radial-gradient(circle, rgba(3,147,150,0.45) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 4px solid rgba(255,255,255,0.18);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 4px 12px rgba(0,0,0,0.25);
  margin: 0 auto;
  display: block;
}
@media (max-width: 880px) {
  .hero { padding: 36px 0 56px; }
  .hero .container { grid-template-columns: 1fr; gap: 20px; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-mascot { order: -1; }
  .hero-mascot img { max-height: 260px; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 320px; aspect-ratio: 4 / 3; }
  .hero p.lead { font-size: 1rem; }
  .hero-list li { font-size: 0.93rem; }
}

/* ===== Photo helpers (in-section, team, service hero) ===== */
.photo-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
  display: block;
}
.photo-figure.tall img { aspect-ratio: 3 / 4; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}
@media (max-width: 880px) { .team-grid { grid-template-columns: 1fr; gap: 24px; } }
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--cream-warm);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.team-card .photo {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  display: block;
}
.team-card .body { padding: 20px 22px 24px; }
.team-card h3 { color: var(--teal-deep); margin-bottom: 4px; font-size: 1.25rem; }
.team-card .role {
  display: inline-block;
  background: var(--brick);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--ui);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.team-card p { font-size: 0.95rem; color: rgba(14,42,51,0.78); line-height: 1.55; }

.service-hero-photo {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  border: 4px solid rgba(255,255,255,0.18);
}
.service-hero-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* Replace the cartoon-padded image style on the why-us / story split for real photos */
.split .photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.18), 0 2px 10px rgba(0,0,0,0.08);
  display: block;
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--cream-warm);
  padding: 22px 0;
  border-top: 4px solid var(--brick);
  border-bottom: 4px solid var(--brick);
}
.trust-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ui);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  color: var(--teal-deep);
}
.trust-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--brick);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
}

/* ============ SECTIONS ============ */
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-warm { background: var(--cream-warm); }
.section-teal {
  background: var(--teal-deep);
  color: #fff;
}
.section-teal h1, .section-teal h2, .section-teal h3 { color: #fff; }
.section-teal h4 { color: var(--tan); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  display: inline-block;
  background: var(--brick);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-family: var(--ui);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin-bottom: 16px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p {
  font-size: 1.1rem;
  color: rgba(14,42,51,0.75);
  max-width: 600px;
  margin: 0 auto;
}
.section-teal .section-head p { color: rgba(255,255,255,0.85); }
.section-teal .section-head .eyebrow { background: var(--tan); color: var(--teal-deep); }

/* ============ SERVICES GRID (BADGES) ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 3px solid var(--cream-warm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brick) 0%, var(--brick) 50%, var(--teal-deep) 50%, var(--teal-deep) 100%);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tan);
}
.service-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--brick);
  color: var(--brick);
}
.service-card .icon svg { width: 42px; height: 42px; }
.service-card h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--teal-deep);
}
.service-card p {
  color: rgba(14,42,51,0.75);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.service-card .link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ui);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  color: var(--brick);
}
.service-card .link::after { content: '→'; }
.service-card:hover .link { gap: 10px; }

.service-card-photo {
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.service-card-photo::before { display: none; }
.service-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 2px solid var(--cream-warm);
}
.service-card-body {
  padding: 0 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-photo .icon {
  width: 58px;
  height: 58px;
  margin: -30px 0 16px;
  background: #fff;
  border-color: var(--tan);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}
.service-card-photo .icon svg {
  width: 30px;
  height: 30px;
}
.service-card-photo p { flex: 1; }

.photo-band {
  background: var(--paper);
  padding: 34px 0;
}
.photo-band-overlap {
  background: linear-gradient(to bottom, transparent 0 34px, var(--paper) 34px 100%);
  margin-top: -34px;
  position: relative;
  z-index: 2;
}
.work-photo-card {
  margin: 0 auto;
  max-width: 1040px;
  overflow: hidden;
  border-radius: 16px;
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.work-photo-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}
.work-photo-card figcaption {
  margin: 0;
  padding: 14px 20px;
  background: var(--teal-deep);
  color: #fff;
  font-family: var(--ui);
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.45;
}
.sidebar-photo {
  margin: -8px -8px 22px;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid var(--cream-warm);
}
.sidebar-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 720px) {
  .service-card-image { aspect-ratio: 4 / 3; }
  .work-photo-card img { aspect-ratio: 4 / 3; }
  .work-photo-card figcaption { font-size: 0.82rem; padding: 12px 14px; }
}

/* ============ ABOUT SPLIT ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split img { border-radius: 16px; box-shadow: var(--shadow-md); }
.split h2 { margin-bottom: 14px; }
.split .features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 14px;
}
.split .features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.split .features li .num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brick);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  font-size: 1.1rem;
}
.split .features li strong { display: block; color: var(--teal-deep); margin-bottom: 2px; font-size: 1.05rem; }
.split .features li p { margin: 0; color: rgba(14,42,51,0.75); font-size: 0.95rem; }

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ REVIEWS ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  border: 2px solid var(--cream-warm);
  position: relative;
}
.review-card .stars {
  color: var(--tan);
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-card p {
  font-size: 0.97rem;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.6;
}
.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ui);
  font-weight: 800;
}
.review-card .avatar {
  width: 42px; height: 42px;
  background: var(--teal-deep);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
}
.review-card .name { color: var(--teal-deep); font-size: 0.95rem; }
.review-card .source { font-size: 0.8rem; color: rgba(14,42,51,0.6); text-transform: uppercase; letter-spacing: 0.05em; }

/* ============ AREAS ============ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}
.area-tile {
  background: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid var(--cream-warm);
  font-family: var(--ui);
  font-weight: 800;
  color: var(--teal-deep);
  text-align: center;
  transition: all .2s ease;
  text-decoration: none;
  font-size: 0.92rem;
}
.area-tile:hover {
  background: var(--brick);
  color: #fff;
  border-color: var(--brick);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 2px solid var(--cream-warm);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  font-family: var(--ui);
  font-weight: 800;
  color: var(--teal-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--brick);
  font-weight: 900;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer {
  padding: 0 24px 22px;
  color: rgba(14,42,51,0.8);
  line-height: 1.65;
}
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--brick);
  color: #fff;
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(253,199,133,0.15);
}
.cta-band::before { top: -80px; left: -60px; }
.cta-band::after { bottom: -80px; right: -60px; }
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 14px; font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.92); font-size: 1.1rem; margin-bottom: 28px; max-width: 600px; margin-inline: auto; }
.cta-band .btn-primary { background: var(--tan); color: var(--teal-deep); border-color: var(--tan); }
.cta-band .btn-primary:hover { background: #fff; color: var(--brick); }
/* On red brick CTA, the default teal secondary button blends — make it a white outline */
.cta-band .btn-secondary { background: transparent; color: #fff; border-color: #fff; }
.cta-band .btn-secondary:hover { background: #fff; color: var(--brick); border-color: #fff; }
.cta-band .btn-tan { background: var(--tan); color: var(--brick); border-color: var(--tan); }
.cta-band .btn-tan:hover { background: #fff; color: var(--brick); border-color: #fff; }
.cta-band .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.cta-band .btn-outline:hover { background: #fff; color: var(--brick); border-color: #fff; }

/* On deep-teal sections, secondary teal button would be invisible — switch to tan */
.section-teal .btn-secondary { background: var(--tan); color: var(--teal-deep); border-color: var(--tan); }
.section-teal .btn-secondary:hover { background: #fff; color: var(--brick); border-color: #fff; }
.section-teal .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.section-teal .btn-outline:hover { background: #fff; color: var(--teal-deep); border-color: #fff; }

/* On the dark page-hero (interior pages) */
.page-hero .btn-secondary { background: transparent; color: #fff; border-color: #fff; }
.page-hero .btn-secondary:hover { background: #fff; color: var(--brick); }
.page-hero .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.page-hero .btn-outline:hover { background: #fff; color: var(--teal-deep); }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 24px;
}
.footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  color: var(--tan);
  font-family: var(--ui);
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
/* Brand logo wrapper in footer — pad on cream so the wordmark logo pops on dark navy */
.footer .footer-brand {
  display: inline-block;
  background: var(--cream);
  padding: 16px 22px;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.footer .footer-brand img { display: block; max-height: 64px; width: auto; margin: 0; }
.footer img { max-height: 80px; margin-bottom: 16px; }
.footer p { font-size: 0.93rem; line-height: 1.6; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: rgba(255,255,255,0.78); font-size: 0.92rem; }
.footer ul a:hover { color: var(--tan); text-decoration: none; }
.footer .legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 880px) {
  .footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer .grid { grid-template-columns: 1fr; }
}

/* ============ INTERIOR PAGE HEADER ============ */
.page-hero {
  background: linear-gradient(135deg, var(--teal-deep) 0%, #013d4a 100%);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { line-height: 1.05; }
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(3,147,150,0.3), transparent 60%),
                    radial-gradient(circle at 70% 80%, rgba(253,199,133,0.12), transparent 60%);
}
.page-hero .container { position: relative; }
.page-hero .crumb {
  font-family: var(--ui);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--tan);
  margin-bottom: 14px;
}
.page-hero .crumb a { color: var(--tan); }
.page-hero h1 {
  color: #fff;
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 14px;
  line-height: 1.05;
}
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 720px;
  margin: 0 auto 24px;
}
.page-hero .btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* ============ PROSE ============ */
.prose { max-width: 740px; margin: 0 auto; font-size: 1.05rem; line-height: 1.75; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; font-style: italic; font-family: var(--display); }
.prose ul { padding-left: 1.4em; margin: 1em 0; }
.prose ul li { margin-bottom: 8px; }
.prose strong { color: var(--teal-deep); }
.prose blockquote {
  border-left: 4px solid var(--brick);
  padding: 8px 18px;
  background: var(--cream-warm);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--teal-deep);
  margin: 1.4em 0;
}

/* ============ TWO COL ============ */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.sidebar {
  background: #fff;
  border: 3px solid var(--cream-warm);
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 100px;
}
.sidebar h4 { color: var(--brick); margin-bottom: 14px; font-family: var(--ui); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.sidebar p { font-size: 0.93rem; color: rgba(14,42,51,0.78); }
.sidebar .btn { width: 100%; margin-bottom: 8px; }

@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

/* ============ BOOKING MODAL ============ */
body.booking-modal-open {
  overflow: hidden;
}

.booking-modal[hidden] {
  display: none !important;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 42, 51, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.booking-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 32px));
  height: min(760px, calc(100vh - 64px));
  height: min(760px, calc(100dvh - 64px));
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.booking-modal__dialog iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.booking-modal__close {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 18px);
  right: calc(env(safe-area-inset-right, 0px) + 18px);
  z-index: 10002;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--brick);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
}

.booking-modal__close:hover,
.booking-modal__close:focus {
  background: var(--brick-dark);
  outline: 3px solid rgba(253, 199, 133, 0.75);
}

@media (max-width: 720px) {
  .booking-modal {
    padding: 10px;
  }

  .booking-modal__dialog {
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
    height: calc(100dvh - 20px);
    border-radius: 10px;
  }

  .booking-modal__close {
    top: calc(env(safe-area-inset-top, 0px) + 12px);
    right: calc(env(safe-area-inset-right, 0px) + 12px);
  }
}

/* ============ MOBILE STICKY ACTION BAR ============ */
/* Hidden on desktop; shown as dual-button bar on mobile only.
   Pads the body so page content does not sit beneath the sticky actions. */
.mobile-bar {
  display: none;
}
@media (max-width: 720px) {
  .mobile-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 100;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 252, 245, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 -4px 18px rgba(0,0,0,0.08);
  }
  .mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 0;
    padding: 11px 8px;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--ui);
    line-height: 1.15;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-bar a:hover, .mobile-bar a:active { text-decoration: none; }
  .mobile-bar-call {
    background: var(--brick);
    color: #fff;
  }
  .mobile-bar-book {
    background: var(--tan, #c9a35a);
    color: #1a1a1a;
  }
  .mobile-bar-icon {
    font-size: 1.15rem;
    line-height: 1;
  }
  .mobile-bar-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
  }
  .mobile-bar-label {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.82rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .mobile-bar-sub {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.92;
    letter-spacing: 0.02em;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* Body padding accounts for the sticky action bar. */
  body { padding-bottom: 84px; }
  .hero { padding-bottom: 48px; }
  .topbar { font-size: 0.78rem; }
  .topbar .container { gap: 14px; padding: 8px 16px; }
  .site-header .container { padding: 10px 16px; }
  .brand img { height: 48px; }
  .header-cta .btn-primary { padding: 10px 14px; font-size: 0.78rem; }
}

@media (max-width: 540px) {
  .container { padding-inline: 24px; }
  .hero h1 { font-size: 2.05rem; }
  .hero p.lead { font-size: 0.98rem; }
  .topbar .container { gap: 6px 12px; padding-inline: 10px; }
  .topbar-item { white-space: nowrap; }
  .hero-cta .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.9rem; }
  .mobile-bar-label { font-size: 0.76rem; }
}

/* Legacy .float-call kept hidden in case any cached HTML still references it */
.float-call { display: none !important; }

/* ============ CONTACT FORM ============ */
.form {
  display: grid;
  gap: 14px;
  max-width: 580px;
  margin: 0 auto;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  border: 3px solid var(--cream-warm);
}
.form label {
  font-family: var(--ui);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal-deep);
  display: block;
  margin-bottom: 6px;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 2px solid var(--cream-warm);
  font-family: var(--ui);
  font-size: 1rem;
  background: var(--cream);
  color: var(--ink);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--brick);
}
.form textarea { min-height: 120px; resize: vertical; }
.form button { margin-top: 8px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) {
  .form .row { grid-template-columns: 1fr; }
}

/* ============ CONTACT MESSAGE FORM ============ */
.contact-form {
  max-width: 720px;
  margin: 0;
  box-shadow: var(--shadow-sm);
}
.website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-note {
  margin: 8px 0 0;
  font-size: 0.86rem;
  color: rgba(14,42,51,0.68);
}
.form label.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--ui);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(14,42,51,0.78);
  margin-bottom: 0;
}
.form .checkbox-line input {
  width: auto;
  margin-top: 3px;
  flex: 0 0 auto;
}
.contact-status {
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.92rem;
}
.contact-status--success {
  background: rgba(3,147,150,0.12);
  color: var(--teal-deep);
  border: 2px solid rgba(3,147,150,0.3);
}
.contact-status--error {
  background: rgba(172,37,36,0.1);
  color: var(--brick);
  border: 2px solid rgba(172,37,36,0.25);
}
.form button:disabled {
  opacity: 0.72;
  cursor: wait;
}

/* ============ STATS BAND ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat .num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 900;
  font-size: 3.2rem;
  color: var(--tan);
  line-height: 1;
}
.stat .label {
  font-family: var(--ui);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}

/* ============ V2: BTN-LARGE ============ */
.btn-large {
  padding: 18px 32px;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
@media (max-width: 540px) {
  .btn-large { padding: 14px 22px; font-size: 0.95rem; }
}

/* ============ V2: HERO URGENCY PILLS ============ */
.hero-urgency {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
  align-items: center;
}
.page-hero .hero-urgency {
  justify-content: center;
  margin: 24px auto 28px;
}
.urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(253, 199, 133, 0.18);
  color: var(--tan);
  border: 1.5px solid rgba(253, 199, 133, 0.45);
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--ui);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  white-space: nowrap;
}
.page-hero .urgency-pill {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(253, 199, 133, 0.72);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.section .urgency-pill, .section-paper .urgency-pill, .section-cream .urgency-pill {
  background: rgba(1, 95, 115, 0.08);
  color: var(--teal-deep);
  border-color: rgba(1, 95, 115, 0.25);
}

/* ============ V2: PROCESS LIST / GRID ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.process-step {
  background: var(--paper);
  border: 2px solid var(--cream-warm);
  border-radius: 18px;
  padding: 28px 22px 24px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.process-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--tan);
}
.process-step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brick);
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 14px;
  line-height: 1;
}
.process-step h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--teal-deep);
  margin: 0 0 10px;
  line-height: 1.25;
}
.process-step p {
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.55;
}
.process-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.process-list li {
  counter-increment: step-counter;
  padding-left: 56px;
  margin-bottom: 18px;
  position: relative;
  min-height: 44px;
}
.process-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brick);
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.process-list li > .num { display: none; }
.process-list li strong {
  display: block;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.process-list li p {
  margin: 0;
  color: rgba(14,42,51,0.75);
}
.process-list.process-grid {
  margin: 32px 0 0;
  align-items: stretch;
}
.process-list.process-grid li {
  background: #fff;
  border: 2px solid var(--cream-warm);
  border-radius: 12px;
  padding: 76px 22px 24px;
  margin-bottom: 0;
  box-shadow: var(--shadow-sm);
}
.process-list.process-grid li::before {
  left: 22px;
  top: 22px;
}
.diagnosis-note {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 14px 18px;
  border: 2px solid rgba(1,95,115,0.16);
  border-radius: 12px;
  background: rgba(1,95,115,0.06);
  color: var(--teal-deep);
  font-weight: 800;
  text-align: center;
}
.confidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.confidence-card {
  background: #fff;
  border: 2px solid var(--cream-warm);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.confidence-card h3 {
  color: var(--teal-deep);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.confidence-card p {
  color: rgba(14,42,51,0.75);
  margin: 0;
}
.repair-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}
.repair-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 2px solid var(--cream-warm);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.repair-check {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brick);
  color: #fff;
  font-weight: 900;
}
.repair-card h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: var(--teal-deep);
}
.repair-card p {
  margin: 0;
  color: rgba(14,42,51,0.75);
  font-size: 0.95rem;
}

/* ============ V2: NEIGHBORHOODS GRID (city pages) ============ */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.neighborhood-card {
  background: var(--paper);
  border-left: 4px solid var(--teal-bright);
  border-radius: 10px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.neighborhood-card h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--teal-deep);
  margin: 0 0 8px;
  line-height: 1.3;
}
.neighborhood-card p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}

/* ============ V2: COMMON ISSUES GRID (city pages) ============ */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.issue-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 24px 26px;
  border: 2px solid var(--cream-warm);
}
.issue-card h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--brick);
  margin: 0 0 8px;
  line-height: 1.3;
}
.issue-card p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}

/* ============ V2: FAQ-LIST WRAPPER ============ */
.faq-list .faq-item { margin-bottom: 12px; }

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-tan { color: var(--tan); }
.text-brick { color: var(--brick); }

/* ============ V3: URGENCY CALLOUT (service pages) ============ */
.urgency-callout {
  background: var(--cream-warm);
  padding: 32px 0;
  border-top: 3px solid var(--brick);
  border-bottom: 3px solid var(--brick);
}
.urgency-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--paper);
  padding: 28px 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  max-width: 1000px;
  margin: 0 auto;
}
.urgency-icon {
  font-size: 2.4rem;
  color: var(--brick);
  line-height: 1;
  flex-shrink: 0;
  font-weight: 900;
}
.urgency-body { flex: 1; min-width: 0; }
.urgency-body h2 {
  color: var(--brick);
  margin: 0 0 8px;
  font-size: 1.4rem;
  line-height: 1.25;
}
.urgency-body > p {
  margin: 0 0 14px;
  color: var(--teal-deep);
  font-size: 0.97rem;
  line-height: 1.55;
}
.urgency-body ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.urgency-body ul li {
  margin-bottom: 6px;
  color: var(--teal-deep);
  font-size: 0.95rem;
  line-height: 1.5;
}
.urgency-body ul li::marker { color: var(--brick); }
@media (max-width: 640px) {
  .urgency-card { flex-direction: column; padding: 22px; gap: 14px; }
  .urgency-icon { font-size: 2rem; }
  .urgency-body h2 { font-size: 1.2rem; }
}

/* ============ V3: CHAINS COMPARISON TABLE (service pages) ============ */
.chains-section .section-head { margin-bottom: 36px; }
.chains-table-wrap {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  background: var(--paper);
}
.chains-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ui);
  font-size: 0.95rem;
  min-width: 720px;
}
.chains-table thead th {
  padding: 18px 22px;
  text-align: left;
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--cream-warm);
  color: var(--teal-deep);
  border-bottom: 2px solid var(--cream-deep);
}
.chains-table thead .col-chain { color: rgba(14,42,51,0.65); }
.chains-table thead .col-sidekick {
  color: var(--teal-deep);
  background: rgba(1, 95, 115, 0.08);
}
.chains-table tbody th[scope="row"] {
  padding: 16px 22px;
  text-align: left;
  font-weight: 700;
  color: var(--teal-deep);
  background: var(--cream-warm);
  width: 24%;
  vertical-align: top;
  border-bottom: 1px solid var(--cream-deep);
}
.chains-table tbody td {
  padding: 16px 22px;
  vertical-align: top;
  line-height: 1.55;
  border-bottom: 1px solid var(--cream-deep);
  color: var(--teal-deep);
}
.chains-table tbody .col-chain { color: rgba(14,42,51,0.72); }
.chains-table tbody .col-sidekick {
  background: rgba(1, 95, 115, 0.05);
  font-weight: 500;
}
.chains-table tbody tr:last-child th,
.chains-table tbody tr:last-child td { border-bottom: 0; }
.chains-closing {
  max-width: 900px;
  margin: 26px auto 0;
  background: var(--paper);
  border: 2px solid var(--cream-warm);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.chains-closing h3 { margin-bottom: 10px; }
.chains-closing p { margin-bottom: 0; }
@media (max-width: 720px) {
  .chains-table { font-size: 0.88rem; }
  .chains-table thead th,
  .chains-table tbody th[scope="row"],
  .chains-table tbody td { padding: 12px 14px; }
}

/* ============ AREA CHIP GRID (service-page internal link matrix) ============ */
/* Renders every Morris County town as a clickable chip on every service page.
   Improves crawl equity to area pages + gives mobile users a town picker. */
.area-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
  margin: 18px 0 12px;
}
.area-chip {
  display: block;
  padding: 10px 14px;
  background: var(--cream-warm, #f5efe1);
  color: var(--teal-deep, #0e2a33);
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgba(14,42,51,0.08);
  transition: all 0.18s ease;
  line-height: 1.25;
}
.area-chip:hover {
  background: var(--brick, #ac2524);
  color: #fff;
  border-color: var(--brick, #ac2524);
  text-decoration: none;
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .area-chip-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 6px;
  }
  .area-chip {
    padding: 9px 10px;
    font-size: 0.84rem;
  }
}
