@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,wght@0,400;0,700;1,400&family=Inter+Tight:wght@400;500;600;700&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #048444;
  --primary-dark:   #036336;
  --primary-deep:   #0D3320;
  --primary-mid:    #1A3326;
  --accent:         #C1E1D1;
  --orange:         #FE8503;
  --orange-dark:    #D96E00;
  --canvas:         #FAF7F2;
  --surface:        #F0EDE6;
  --ink:            #1A1C18;
  --muted:          #5A5E52;
  --border:         rgba(26,28,24,0.12);
  --border-light:   rgba(193,225,209,0.20);
  --header-height:  72px;
  --radius:         6px;
  --section-py:     clamp(72px, 9vh, 120px);
  --content-max:    1240px;
}

@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 16px;
}

body {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 44px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* Heading anchors */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7.5vw, 104px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(24px, 3vw, 40px); }
h4 { font-size: clamp(20px, 2.2vw, 28px); }

p { line-height: 1.68; }

a { color: var(--primary); transition: color 150ms; text-decoration: none; }
a:hover { color: var(--primary-dark); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* ============================================================
   EYEBROW LABELS — the 4px stripe motif
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding-left: 12px;
  margin-bottom: 16px;
  line-height: 1.3;
  color: var(--muted);
}

.eyebrow-green {
  border-left: 4px solid var(--primary);
  color: var(--primary);
}

.eyebrow-orange {
  border-left: 4px solid var(--orange);
  color: var(--orange-dark);
}

.eyebrow-light {
  border-left: 4px solid var(--accent);
  color: var(--accent);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container, .section-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.wide-container {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: filter 160ms, transform 160ms, box-shadow 160ms;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { filter: brightness(0.90); color: #fff; text-decoration: none; }

.btn-orange, .btn-emergency {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-orange:hover, .btn-emergency:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); color: #fff; text-decoration: none; }

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover { filter: brightness(0.94); color: var(--primary); text-decoration: none; }

.btn-phone {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  justify-content: center;
  font-size: 16px;
  padding: 16px 28px;
}
.btn-submit:hover { filter: brightness(0.90); color: #fff; text-decoration: none; }

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--orange);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 160ms;
}
.mobile-call-pill svg { width: 20px; height: 20px; flex-shrink: 0; }
.mobile-call-pill:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }

@media (min-width: 900px) { .mobile-call-pill { display: none; } }

/* ============================================================
   SITE HEADER & NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-height);
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 28px;
}

.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary); }

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 160ms;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }
.nav-cta .nav-cta-label { display: inline; }
.nav-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 24px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta .nav-cta-label { display: none; }
  .nav-pages {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--canvas);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    align-items: flex-start;
    z-index: 899;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 10px 0; width: 100%; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up   { opacity: 0; transform: translateY(28px); transition: opacity 600ms ease, transform 600ms ease; }
.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity 600ms ease, transform 600ms ease; }
.fade-right{ opacity: 0; transform: translateX(28px); transition: opacity 600ms ease, transform 600ms ease; }
.scale-in  { opacity: 0; transform: scale(0.94); transition: opacity 550ms ease, transform 550ms ease; }
.stagger > * { opacity: 0; transform: translateY(22px); transition: opacity 500ms ease, transform 500ms ease; }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible { opacity: 1; transform: none; }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1)  { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2)  { transition-delay: 60ms; }
.stagger.visible > *:nth-child(3)  { transition-delay: 120ms; }
.stagger.visible > *:nth-child(4)  { transition-delay: 180ms; }
.stagger.visible > *:nth-child(5)  { transition-delay: 240ms; }
.stagger.visible > *:nth-child(6)  { transition-delay: 300ms; }
.stagger.visible > *:nth-child(7)  { transition-delay: 360ms; }
.stagger.visible > *:nth-child(8)  { transition-delay: 420ms; }
.stagger.visible > *:nth-child(9)  { transition-delay: 480ms; }
.stagger.visible > *:nth-child(10) { transition-delay: 540ms; }
.stagger.visible > *:nth-child(11) { transition-delay: 600ms; }
.stagger.visible > *:nth-child(12) { transition-delay: 660ms; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--primary-deep);
}

.hero > img:first-of-type,
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: saturate(0.85);
}

.hero-overlay {
  background: linear-gradient(to right, rgba(13,51,32,0.88) 0%, rgba(13,51,32,0.55) 55%, rgba(13,51,32,0.10) 100%);
}

.hero-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-block: clamp(64px, 10vh, 120px);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  padding-left: 12px;
  border-left: 4px solid var(--orange);
  margin-bottom: 20px;
  display: inline-block;
}

.hero-title {
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 16ch;
  margin-bottom: 20px;
}

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  line-height: 1.55;
  margin-bottom: 28px;
}

.hero-trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.trust-chip {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--surface);
  border-left: 3px solid var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius);
  white-space: nowrap;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* About Hero */
.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  background: var(--primary-deep);
}

.about-hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-block: clamp(56px, 8vh, 96px);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  padding-left: 12px;
  border-left: 4px solid var(--orange);
  margin-bottom: 16px;
  display: inline-block;
}

.about-hero-title {
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.97;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 16px;
}

.about-hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.80);
  max-width: 50ch;
  margin-bottom: 28px;
}

.about-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Services Hero */
.services-hero {
  position: relative;
  background: var(--primary-deep);
  padding-block: clamp(72px, 10vh, 120px);
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,132,68,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.services-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.services-hero-title {
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.97;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 16px;
}

.services-hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
  margin-bottom: 28px;
}

.services-hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-chip {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--surface);
  border-left: 3px solid var(--primary);
  padding: 7px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
}

.hero-chip-emergency {
  background: var(--orange);
  color: #fff;
  border-left-color: var(--orange-dark);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 64px;
  position: relative;
  z-index: 1;
  background: var(--surface);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.2;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 16px;
}

.marquee-item span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  padding-block: 48px;
}

.trust-strip-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: 16px;
  padding-block: 8px;
  gap: 6px;
  border-right: 1px solid rgba(90,94,82,0.20);
}
.trust-badge:last-child { border-right: none; }

.trust-badge svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.trust-badge-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  line-height: 1.3;
}

.trust-badge-value {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.3;
}

@media (max-width: 900px) {
  .trust-strip-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
  }
  .trust-badge { border-right: none; border-bottom: 1px solid rgba(90,94,82,0.15); }
  .trust-badge:nth-child(3n) { border-bottom: 1px solid rgba(90,94,82,0.15); }
  .trust-badge:nth-last-child(-n+3):nth-child(3n+1),
  .trust-badge:nth-last-child(-n+3):nth-child(3n+2),
  .trust-badge:nth-last-child(-n+3):nth-child(3n)  { border-bottom: none; }
}

@media (max-width: 640px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SERVICES (TABBED PANEL)
   ============================================================ */
.services {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.services-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.services-inner > h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 36px;
  max-width: 22ch;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.service-tab {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 10px 14px;
  cursor: pointer;
  transition: color 150ms, border-color 150ms;
  margin-bottom: -1px;
  white-space: nowrap;
  line-height: 1;
}

.service-tab:hover { color: var(--ink); }
.service-tab.active { color: var(--ink); border-bottom-color: var(--primary); }

.services-panels {
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}

.service-panel {
  display: none;
  height: 480px;
}

.service-panel.active { display: grid; grid-template-columns: 45% 55%; }

.service-panel-photo {
  position: relative;
  overflow: hidden;
}

.service-panel-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-panel-no-photo {
  background: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-panel-no-photo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  text-align: center;
  color: var(--accent);
}

.service-panel-no-photo-inner svg {
  width: 64px;
  height: 64px;
  opacity: 0.7;
}

.service-panel-no-photo-inner p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: rgba(193,225,209,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-panel-body {
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  overflow-y: auto;
}

.service-panel-body h3 {
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.service-panel-body p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  margin-top: 4px;
  text-decoration: none;
  transition: gap 160ms, color 150ms;
}
.service-cta-link:hover { gap: 10px; color: var(--primary-dark); text-decoration: none; }
.service-cta-link svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 900px) {
  .service-panel.active { grid-template-columns: 1fr; height: auto; }
  .service-panel-photo { height: 240px; position: relative; }
  .service-panel-body { padding: 24px; }
}

/* ============================================================
   SERVICE INDEX (services.html)
   ============================================================ */
.service-index {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.service-index-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.service-index-header {
  margin-bottom: 48px;
}

.service-index-header h2 {
  font-size: clamp(36px, 5vw, 60px);
  max-width: 18ch;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-index-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  border: 1px solid var(--border);
}
.service-index-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
  text-decoration: none;
  color: var(--ink);
}

.service-index-card-emergency {
  border-top: 3px solid var(--orange);
}

.service-index-card-rare {
  border-top: 3px solid var(--primary);
}

.service-index-card-img {
  height: 180px;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}

.service-index-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 300ms ease;
}

.service-index-card:hover .service-index-card-img img { transform: scale(1.04); }

.service-img-block {
  position: absolute;
  inset: 0;
  background: var(--primary-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.service-img-block-rare { background: linear-gradient(135deg, var(--primary-deep) 0%, #0a2e1c 100%); }

.service-img-block-num {
  font-family: 'Source Serif 4', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(193,225,209,0.30);
  line-height: 1;
}

.service-img-block-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
}

.service-index-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-index-card-body h3 {
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.service-index-card-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.service-index-card-arrow {
  font-size: 18px;
  color: var(--primary);
  margin-top: auto;
  display: block;
}

@media (max-width: 900px) {
  .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .service-cards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE DETAILS (services.html)
   ============================================================ */
.service-details { background: var(--canvas); }

.service-detail-panel {
  padding-block: clamp(64px, 8vh, 96px);
  border-bottom: 1px solid var(--border);
}

.service-detail-panel-alt { background: var(--surface); }

.service-detail-panel-emergency {
  background: var(--primary-deep);
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.service-detail-inner-reverse { direction: rtl; }
.service-detail-inner-reverse > * { direction: ltr; }

.service-detail-photo {
  border-radius: var(--radius);
  overflow: hidden;
  height: clamp(320px, 40vh, 480px);
}

.service-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  display: block;
}

.service-detail-block {
  border-radius: var(--radius);
  background: var(--primary-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: clamp(320px, 40vh, 480px);
  gap: 12px;
  padding: 40px;
}

.service-detail-block-rare {
  background: linear-gradient(135deg, var(--primary-deep) 0%, #0a2e1c 100%);
}

.service-detail-block-num {
  font-family: 'Source Serif 4', serif;
  font-size: 80px;
  font-weight: 700;
  color: rgba(193,225,209,0.20);
  line-height: 1;
}

.service-detail-block-tag {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

.service-detail-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-detail-body h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  max-width: 20ch;
}

.service-detail-panel-emergency .service-detail-body h2 {
  color: #fff;
}

.service-detail-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.68;
  max-width: 54ch;
}

.service-detail-panel-emergency .service-detail-body p {
  color: rgba(255,255,255,0.72);
}

@media (max-width: 900px) {
  .service-detail-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-inner-reverse { direction: ltr; }
  .service-detail-photo { height: clamp(240px, 50vw, 360px); }
  .service-detail-block { height: 240px; }
}

/* ============================================================
   SERVICES CTA BAND
   ============================================================ */
.services-cta {
  background: var(--primary);
  padding-block: clamp(72px, 9vh, 112px);
}

.services-cta-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.services-cta-inner h2,
.services-cta-title { color: #fff; font-size: clamp(32px, 4.5vw, 60px); max-width: 22ch; }

.services-cta-sub { color: rgba(255,255,255,0.80); font-size: 18px; max-width: 50ch; }

.services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--primary-deep);
  padding-block: var(--section-py);
}

.reviews-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.reviews-inner .eyebrow {
  color: var(--accent);
  border-left-color: var(--orange);
  letter-spacing: 0.12em;
}

.reviews-aggregate {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.reviews-big-score {
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: clamp(56px, 8vw, 80px);
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
}

.reviews-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.reviews-count {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--accent);
  display: block;
}

.reviews-source {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  color: rgba(193,225,209,0.60);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.review-card {
  background: var(--primary-mid);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-stars {
  display: flex;
  gap: 4px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  fill: var(--orange);
  flex-shrink: 0;
}

.review-quote {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.55;
  color: var(--canvas);
}

.review-attribution {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
}

.reviews-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(254,133,3,0.35);
  padding-bottom: 2px;
  transition: border-color 160ms, gap 160ms;
}
.reviews-cta a:hover { color: var(--orange); border-bottom-color: var(--orange); gap: 10px; text-decoration: none; }

@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.gallery-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.gallery-header {
  margin-bottom: 36px;
}

.gallery-header h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  max-width: 20ch;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item-main {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  height: 520px;
}

.gallery-item-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 300ms ease, brightness 300ms ease;
  display: block;
}

.gallery-item {
  grid-column: 2;
  border-radius: var(--radius);
  overflow: hidden;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 300ms ease;
  display: block;
}

.gallery-item-main:hover img,
.gallery-item:hover img {
  transform: scale(1.02);
  filter: brightness(1.08);
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item-main { grid-column: 1; grid-row: auto; height: 320px; }
  .gallery-item { grid-column: 1; height: 240px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-story {
  background: var(--surface);
  padding-block: var(--section-py);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.about-story-photo {
  border-radius: var(--radius);
  overflow: hidden;
  height: 480px;
}

.about-story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  display: block;
  filter: saturate(0.92);
}

.about-story-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-story-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  max-width: 20ch;
  margin-top: 8px;
}

.about-story-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.70;
  max-width: 54ch;
}

.about-trust-chips {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.about-trust-chips li {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 9px 14px 9px 10px;
  background: var(--canvas);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  display: inline-block;
}

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-story-photo { height: clamp(280px, 60vw, 420px); }
}

/* ============================================================
   CREDENTIALS
   ============================================================ */
.credentials {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.credentials-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.credentials-inner h3 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 24px;
  max-width: 18ch;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cred-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding-block: 14px;
  border-bottom: 1px solid var(--border);
}
.cred-row:last-child { border-bottom: none; }

.cred-name, .cred-detail {
  font-family: 'Inter Tight', sans-serif;
}

.cred-name {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}

.cred-detail, .cred-meta {
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
}

.insurance-card {
  background: var(--surface);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insurance-card h4 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
}

.insurance-amount {
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 32px);
  color: var(--primary);
  line-height: 1;
}

.insurance-label,
.insurance-workers,
.insurance-note,
.insurance-tip {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.insurance-tip {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

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

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--surface);
  padding-block: var(--section-py);
}

.service-areas-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.service-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-top: 24px;
}

.service-areas-grid h3 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 12px;
}

.service-areas-intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 46ch;
  margin-top: 12px;
}

.areas-grid,
.areas-chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  list-style: none;
}

.area-chip {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  padding-left: 10px;
  border-left: 2px solid var(--primary);
  line-height: 1.3;
}

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

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.contact-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-inner h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 8px;
  max-width: 20ch;
}

.contact-intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 52ch;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  outline: none;
  transition: border-color 160ms, box-shadow 160ms;
  width: 100%;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(4,132,68,0.12);
}

.form-field textarea { min-height: 120px; resize: vertical; }

.contact-info {
  background: var(--surface);
  border-top: 4px solid var(--orange);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-emergency-pill {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 4px;
}

.contact-phone-link {
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: block;
  transition: color 150ms;
}
.contact-phone-link:hover { color: var(--primary-dark); text-decoration: none; }

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.contact-info-block:last-child { border-bottom: none; padding-bottom: 0; }

.contact-info-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-info-value {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
}

.contact-info-value a { color: var(--primary); }

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

/* ============================================================
   CONTACT CTA (about.html)
   ============================================================ */
.contact-cta {
  background: var(--primary);
  padding-block: clamp(72px, 9vh, 112px);
}

.contact-cta-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.contact-cta-inner h2 { color: #fff; font-size: clamp(32px, 4.5vw, 60px); max-width: 22ch; }
.contact-cta-inner p { color: rgba(255,255,255,0.80); font-size: 18px; max-width: 50ch; }

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--surface);
  padding-block: var(--section-py);
}

.faq-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.faq-inner h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 40px;
  max-width: 20ch;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

details.faq {
  border-bottom: 1px solid var(--border);
}

details.faq > summary {
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 56px;
  padding-block: 16px;
  gap: 16px;
}

details.faq > summary::-webkit-details-marker { display: none; }

details.faq > summary::after {
  content: none;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 200ms;
}

details.faq[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.70;
  padding-bottom: 20px;
  max-width: 68ch;
}

/* ============================================================
   FOOTER (index + services)
   ============================================================ */
.footer, .site-footer {
  background: var(--primary-deep);
  color: var(--canvas);
}

.footer-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-block: clamp(56px, 7vh, 96px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand-name {
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--canvas);
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: var(--accent);
  line-height: 1.55;
  margin-bottom: 12px;
}

.footer-sub,
.footer-license,
.footer-isa {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  color: rgba(193,225,209,0.55);
  line-height: 1.5;
  margin-top: 4px;
}

.footer-nav-label,
.footer-nav-heading,
.footer-col-title,
.footer-contact-label,
.footer-contact-heading {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.footer-col-title-spaced { margin-top: 28px; }

.footer-nav-list,
.footer-links,
.footer-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a,
.footer-links a,
.footer-services-list a {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  opacity: 0.80;
  transition: opacity 150ms, color 150ms;
}
.footer-nav-list a:hover,
.footer-links a:hover,
.footer-services-list a:hover { opacity: 1; color: #fff; text-decoration: none; }

.footer-contact-line {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: rgba(193,225,209,0.75);
  line-height: 1.55;
  margin-bottom: 8px;
}

.footer-contact-line a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}
.footer-contact-line a:hover { color: #fff; text-decoration: none; }

.footer-phone {
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

.footer-email { color: var(--accent); }

.footer-emergency,
.footer-emergency-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 4px;
}

.footer-area {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: rgba(193,225,209,0.65);
  line-height: 1.6;
  margin-block: 8px;
}

.footer-certs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-certs p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  color: rgba(193,225,209,0.55);
}

.footer-info { display: flex; flex-direction: column; gap: 4px; }
.footer-info p { font-size: 14px; color: rgba(193,225,209,0.75); }
.footer-info a { color: var(--accent); }

.footer-bottom {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-block: 20px;
  border-top: 1px solid rgba(193,225,209,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-copyright {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  color: rgba(193,225,209,0.45);
}

/* Footer grid variant (about.html / services.html) */
.footer-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-block: clamp(56px, 7vh, 96px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

/* Footer col variant (services.html) */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col > img,
.footer-brand-logo > img,
.footer-logo > img {
  max-height: 44px !important;
}

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

/* ============================================================
   STAT COUNTERS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}

.stat-num {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  font-family: 'Source Serif 4', serif;
  line-height: 1;
  color: var(--primary);
}

.stat-label {
  font-size: clamp(11px, 1vw, 14px);
  font-family: 'Inter Tight', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   SERVICE CARDS GRID (generic)
   ============================================================ */
.service-card {
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
svg { display: inline-block; vertical-align: middle; }

/* SVG cap — unsized inline SVGs */
.faq-chevron { width: 20px; height: 20px; }
.service-cta-link svg { width: 18px; height: 18px; }
.review-stars svg { width: 18px; height: 18px; }
.trust-badge svg { width: 24px; height: 24px; }
.service-panel-no-photo-inner svg { width: 64px; height: 64px; }
.service-detail-block svg { width: 64px; height: 64px; }

/* Form success message (injected by JS) */
.form-success {
  background: var(--primary);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 8px;
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.trust-badge { grid-column: 1 / -1; }
.review-card { grid-column: 1 / -1; }
.cred-name { grid-column: 1 / -1; }
.cred-detail { grid-column: 1 / -1; }
.area-chip { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.cred-meta { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }

/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }

/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
