/* ═══════════════════════════════════════════════════════════════════════════
   BIG EASY SOD — MAIN STYLESHEET
   Brand: Dark Forest #263229 | Turf Green #3A7A35 | NOLA Gold #C9973A
   Fonts: Barlow Condensed 700 (display) | Inter 400/500/600 (body)
═══════════════════════════════════════════════════════════════════════════ */

/* ─── 1. Custom Properties ──────────────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --color-primary:        #263229;
  --color-accent-green:   #3A7A35;
  --color-accent-green-h: #2E6228;
  --color-accent-gold:    #C9973A;
  --color-accent-gold-h:  #B5852E;

  /* Surfaces */
  --color-surface-dark:   #374039;
  --color-surface-light:  #F2F0EB;
  --color-surface-pale:   #E4E2DC;

  /* Aliases used in svc2 sections */
  --color-base:           #263229;
  --color-gold:           #C9973A;

  /* Text */
  --color-text-on-dark:   #F2F0EB;
  --color-text-on-light:  #2A2E2A;
  --color-text-muted:     #6B7068;

  /* Semantic */
  --color-success:        #3A7A35;
  --color-danger:         #C93535;

  /* Fonts */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-7: 96px;
  --sp-8: 128px;

  /* Layout */
  --max-width:       1280px;
  --max-width-text:  760px;
  --container-px:    24px;
  --radius-card:     8px;
  --radius-btn:      6px;

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
}

/* ─── 2. Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-on-dark);
  background-color: var(--color-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }
em { font-style: italic; }

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--color-accent-green);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── 3. Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { max-width: var(--max-width-text); }

/* ─── 4. Layout Utilities ───────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section {
  padding-block: var(--sp-7);
}

.section--light {
  background-color: var(--color-surface-light);
  color: var(--color-text-on-light);
}

.hide-mobile { display: inline; }

/* ─── 5. Eyebrow / Section Labels ──────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-bottom: var(--sp-2);
}
.eyebrow--gold { color: var(--color-accent-gold); }
.hero-eyebrow { color: #fff; }

/* ─── 6. Section Headers ────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-6);
}

.section-header--light .section-title { color: var(--color-text-on-dark); }

.section-title { color: var(--color-text-on-dark); }
.section-title--dark { color: var(--color-text-on-light); }
.section--light .section-title,
.section--light .section-desc { color: var(--color-text-on-light); }

.section-desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-top: var(--sp-2);
  margin-inline: auto;
}
.section-desc--dark { color: #555D52; }

/* ─── 7. Buttons ────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  background-color: var(--color-accent-green);
  color: var(--color-text-on-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}
.btn-primary:hover { background-color: var(--color-accent-green-h); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  background: transparent;
  color: var(--color-accent-gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--color-accent-gold);
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}
.btn-ghost:hover {
  background-color: var(--color-accent-gold);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-on-dark);
  opacity: 0.75;
  transition: opacity var(--transition-fast);
}
.btn-call:hover { opacity: 1; }
.btn-call svg { flex-shrink: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  background: transparent;
  color: var(--color-accent-green);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--color-accent-green);
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.btn-outline:hover {
  background-color: var(--color-accent-green);
  color: var(--color-text-on-dark);
  transform: translateY(-1px);
}
.btn-outline--dark {
  color: var(--color-text-on-light);
  border-color: var(--color-text-on-light);
}
.btn-outline--dark:hover {
  background-color: var(--color-text-on-light);
  color: var(--color-text-on-dark);
}

.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ─── 8. Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background-color var(--transition-base), backdrop-filter var(--transition-base), border-color var(--transition-base);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background-color: rgba(26, 31, 28, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  height: 72px;
}

.header-brand {
  flex-shrink: 0;
}

.site-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-on-dark);
}

.header-brand .custom-logo {
  height: 48px;
  width: auto;
  max-width: 160px;
  filter: brightness(0) invert(1);
}
/* Logo two-layer: white base + colored O overlay */
.logo-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
}
/* The O overlay — shows only the center circle of the logo in original color */
/* clip-path: inset(top right bottom left) — adjust if O is misaligned */
.logo-o-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  clip-path: inset(29% 33% 0 31%);
}
/* Footer logo: matches nav — white base + colored O overlay */
.footer-brand .custom-logo {
  filter: none;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.nav-list a,
.nav-list .menu-item-has-children > span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(242, 240, 235, 0.75);
  transition: color var(--transition-fast);
  cursor: default;
}
.nav-list a { cursor: pointer; }
.nav-list a:hover,
.nav-list .menu-item-has-children:hover > span { color: var(--color-text-on-dark); }

/* ── Services dropdown ── */
.nav-list .menu-item-has-children {
  position: relative;
}
.nav-list .menu-item-has-children > a::after,
.nav-list .menu-item-has-children > span::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.7rem;
  opacity: 0.6;
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-surface-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 0;
  margin-top: 8px;
  min-width: 220px;
  list-style: none;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
/* Invisible bridge covers the gap so hover isn't lost moving to the dropdown */
.nav-list .menu-item-has-children::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  display: none;
}
.nav-list .menu-item-has-children:hover::after {
  display: block;
}
.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8125rem;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0.02em;
  color: rgba(242, 240, 235, 0.75);
}
.nav-dropdown li a:hover {
  color: #fff;
  background: rgba(58,122,53,0.15);
}
.nav-list .menu-item-has-children:hover .nav-dropdown,
.nav-list .menu-item-has-children:focus-within .nav-dropdown {
  display: block;
}

/* ── Service Areas mega-menu ── */
.nav-dropdown--mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-surface-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 20px;
  margin-top: 8px;
  width: 680px;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.nav-list .menu-item-has-children:hover .nav-dropdown--mega,
.nav-list .menu-item-has-children:focus-within .nav-dropdown--mega {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 16px;
}
.nav-dropdown-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.nav-dropdown-heading {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-gold);
  padding: 0 8px 8px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-dropdown--mega a {
  display: block;
  padding: 6px 8px;
  font-size: 0.8125rem;
  color: rgba(242,240,235,0.75);
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown--mega a:hover {
  color: #fff;
  background: rgba(58,122,53,0.2);
}
/* View all link at top */
.nav-dropdown-view-all {
  grid-column: 1 / -1;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 12px;
  margin-bottom: 8px;
}
.nav-dropdown-view-all a {
  color: var(--color-accent-gold) !important;
  font-weight: 600 !important;
  font-size: 0.8125rem !important;
}

.nav-dropdown-logo {
  margin-top: auto;
  padding-top: 16px;
  opacity: 0.55;
  filter: brightness(0) invert(1);
}

/* Mobile service areas sub-list */
.nav-mobile-sub {
  list-style: none;
  padding: 0 0 0 16px;
  margin: 4px 0 12px;
}
.nav-mobile-sub li a {
  display: block;
  padding: 6px 0;
  font-size: 0.875rem;
  color: rgba(242,240,235,0.65);
  text-decoration: none;
}
.nav-mobile-sub li a:hover { color: #fff; }
.nav-mobile-sub-heading {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-gold);
  padding: 10px 0 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-on-dark);
  border-radius: 1px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  z-index: 99;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  pointer-events: none;
}
.nav-mobile.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-mobile-inner {
  padding: var(--sp-5) var(--container-px);
}

.nav-mobile-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.nav-mobile-list a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-on-dark);
}
.nav-mobile-parent {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-on-dark);
  cursor: default;
  display: block;
}

.nav-mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

/* ─── 9. Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--color-primary);
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(58, 122, 53, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201, 151, 58, 0.06) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: cover, cover, 256px 256px;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 31, 28, 0.0) 0%,
    rgba(26, 31, 28, 0.3) 100%
  );
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 31, 28, 0.95) 0%,
    rgba(26, 31, 28, 0.7) 60%,
    rgba(26, 31, 28, 0.4) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: var(--sp-6);
  padding-block: var(--sp-7);
}

.hero-content { max-width: 720px; }

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--color-text-on-dark);
  margin-bottom: var(--sp-3);
  margin-top: var(--sp-1);
  letter-spacing: 0.02em;
}

.hero-headline em {
  font-style: normal;
  color: var(--color-accent-green);
  display: block;
}

.hero-subhead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(242, 240, 235, 0.72);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: var(--sp-5);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

/* Hero image panel */
.hero-image-panel {
  position: relative;
  height: calc(100svh - 72px);
  max-height: 780px;
  min-height: 500px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 31, 28, 0.15) 0%,
    rgba(26, 31, 28, 0.5) 100%
  );
}

/* Hero badge — now positioned over image panel */
.hero-badge {
  position: absolute;
  bottom: var(--sp-4);
  right: var(--sp-4);
  z-index: 2;
}

/* ─── OLD hero-badge standalone block (replaced by image-panel positioning) ── */
.hero-badge {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  position: relative;
}

.badge-ring {
  width: 160px;
  height: 160px;
  border: 2px solid var(--color-accent-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
}

.badge-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 151, 58, 0.3);
  border-radius: 50%;
}

.badge-line1, .badge-line2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent-gold);
  line-height: 1;
}
.badge-line1 { font-size: 1.5rem; }
.badge-line2 { font-size: 2.25rem; }
.badge-line3 {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201, 151, 58, 0.7);
  margin-top: 4px;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(242, 240, 235, 0.35);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-dot {
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(4px); opacity: 0.4; }
}

/* ─── 10. Stats Bar ─────────────────────────────────────────────────────────── */
.stats-bar {
  background-color: var(--color-surface-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-block: var(--sp-5);
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  min-width: 120px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-on-dark);
  letter-spacing: 0.02em;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-accent-green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* When number and suffix are on same line */
.stat-item > .stat-number + .stat-suffix {
  display: inline;
}

.stat-item {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
}
.stat-label {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* ─── 11. Services ──────────────────────────────────────────────────────────── */
.services-section { background-color: var(--color-primary); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-3);
}

.service-card {
  background-color: var(--color-surface-dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-base), transform var(--transition-base);
}
.service-card:hover {
  border-color: rgba(58, 122, 53, 0.4);
  transform: translateY(-4px);
}

.service-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.04);
}

.service-card-body {
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-accent-green);
  max-width: 40px;
  max-height: 40px;
  width: 32px;
  height: 32px;
}
.service-card-icon svg {
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-on-dark);
  line-height: 1.15;
}

.service-card-desc {
  font-size: 0.9375rem;
  color: rgba(242, 240, 235, 0.65);
  line-height: 1.65;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  transition: gap var(--transition-fast), color var(--transition-fast);
  margin-top: var(--sp-1);
}
.service-card-link:hover { gap: 10px; }
.service-card-link svg { width: 16px; height: 16px; max-width: 16px; max-height: 16px; flex-shrink: 0; }

/* ─── 12. Why Section ───────────────────────────────────────────────────────── */
.why-section {
  background-color: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.why-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.why-bg-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.35;
}
.why-bg-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 31, 28, 0.85) 0%,
    rgba(26, 31, 28, 0.7) 100%
  );
}
.why-section .container { position: relative; z-index: 1; }

.why-bg-accent {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 122, 53, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  position: relative;
}

.pillar-card {
  background-color: var(--color-surface-dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-card);
  padding: var(--sp-5) var(--sp-4);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.pillar-card--featured {
  border-color: rgba(58, 122, 53, 0.35);
  background-color: rgba(58, 122, 53, 0.06);
}
.pillar-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent-green), var(--color-accent-gold));
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  letter-spacing: -0.02em;
  user-select: none;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-on-dark);
  margin-bottom: var(--sp-2);
  position: relative;
}

.pillar-desc {
  font-size: 0.9375rem;
  color: rgba(242, 240, 235, 0.65);
  line-height: 1.7;
  position: relative;
}

/* ─── 13. Process ───────────────────────────────────────────────────────────── */
.process-section { background-color: var(--color-surface-light); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: var(--sp-6);
  position: relative;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: var(--sp-3);
}

.process-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-accent-green);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  position: relative;
  z-index: 1;
  border: 2px solid rgba(58, 122, 53, 0.3);
}

.process-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--color-accent-green), rgba(58, 122, 53, 0.3));
  align-self: flex-start;
  margin-top: 32px;
  flex-shrink: 0;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-on-light);
  margin-bottom: var(--sp-2);
}

.process-step-desc {
  font-size: 0.9375rem;
  color: #555D52;
  line-height: 1.65;
}

.process-cta { text-align: center; }

/* ─── 14. Testimonials ──────────────────────────────────────────────────────── */
.testimonials-section { background-color: var(--color-primary); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-3);
}

.testimonial-card {
  background-color: var(--color-surface-dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-card);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform var(--transition-base), border-color var(--transition-base);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 151, 58, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}
.testimonial-stars svg { width: 16px; height: 16px; max-width: 16px; max-height: 16px; flex-shrink: 0; }

.testimonial-text {
  font-size: 0.9375rem;
  color: rgba(242, 240, 235, 0.78);
  line-height: 1.7;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: var(--sp-2);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.testimonial-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-text-on-dark);
}

.testimonial-location {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* ─── 15. Areas ─────────────────────────────────────────────────────────────── */
.areas-section { background-color: var(--color-surface-light); }

.areas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
}

.areas-content { max-width: 480px; }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.area-tag {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--color-surface-pale);
  border: 1px solid var(--color-surface-pale);
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-on-light);
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  cursor: default;
}
.area-tag:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-on-dark);
}

/* ─── 16. Areas Archive ─────────────────────────────────────────────────────── */

/* Intro stats strip */
.area-archive-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-5) var(--sp-6);
  background-color: var(--color-surface-pale);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 8px;
}
.archive-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  text-align: center;
}
.archive-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.archive-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.archive-stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(0,0,0,.1);
  flex-shrink: 0;
}

/* Region grouping */
.areas-archive-section { background-color: var(--color-surface-dark); }
.areas-archive-section .section-header .section-title,
.areas-archive-section .section-header .section-desc {
  color: var(--color-text-on-dark);
}
.areas-archive-section .section-header .section-desc {
  opacity: .75;
}

.areas-region {
  margin-bottom: var(--sp-8);
}
.areas-region:last-child { margin-bottom: 0; }

.areas-region-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-gold);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.areas-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sp-3);
}

.area-card {
  display: block;
  text-decoration: none;
  border-radius: 6px;
  background-color: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}
.area-card:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.area-card-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 14px var(--sp-3);
}
.area-card-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  line-height: 0;
}
.area-card:hover .area-card-icon {
  color: rgba(255,255,255,.8);
}
.area-card-name {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-on-dark);
}
.area-card-cta {
  color: rgba(255,255,255,.4);
  flex-shrink: 0;
  line-height: 0;
  transition: color var(--transition-fast);
}
.area-card:hover .area-card-cta {
  color: rgba(255,255,255,.9);
}

/* Responsive */
@media (max-width: 640px) {
  .area-archive-stats { flex-direction: column; gap: var(--sp-3); }
  .archive-stat-divider { width: 40px; height: 1px; }
  .areas-archive-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 360px) {
  .areas-archive-grid { grid-template-columns: 1fr; }
}

/* ─── 17. Quote Form ────────────────────────────────────────────────────────── */
.quote-section { background-color: var(--color-surface-dark); }

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: start;
}

.quote-promises {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.quote-promises li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.9375rem;
  color: rgba(242, 240, 235, 0.78);
}
.quote-promises svg { flex-shrink: 0; width: 20px; height: 20px; max-width: 20px; max-height: 20px; }

/* Form */
.quote-form-wrap {
  background-color: var(--color-primary);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  padding: var(--sp-5);
}

.form-row { display: flex; gap: var(--sp-2); }
.form-row--two > * { flex: 1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--sp-2);
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242, 240, 235, 0.6);
}
.form-group label span { color: var(--color-accent-green); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: var(--color-surface-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-btn);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-on-dark);
  transition: border-color var(--transition-fast);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(242, 240, 235, 0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent-green);
  outline: none;
}
.form-group select { cursor: pointer; }
.form-group select option { background-color: var(--color-surface-dark); }
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-loading { display: none; }
.quote-form.is-loading .btn-label { display: none; }
.quote-form.is-loading .btn-loading { display: inline; }

.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: var(--sp-2);
}

.form-success {
  display: none;
  background-color: rgba(58, 122, 53, 0.15);
  border: 1px solid rgba(58, 122, 53, 0.4);
  border-radius: var(--radius-btn);
  padding: 12px 16px;
  font-size: 0.9375rem;
  color: var(--color-accent-green);
  margin-top: var(--sp-3);
  text-align: center;
}
.form-success.is-visible { display: block; }

/* ─── 17. Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  background-color: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-top { padding-block: var(--sp-7) var(--sp-6); }

.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-5);
}

.footer-brand { max-width: 280px; }

.footer-site-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(30,45,25,0.55);
  line-height: 1.6;
  margin-top: var(--sp-2);
}

.footer-social {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}
.footer-social a {
  width: 36px;
  height: 36px;
  max-width: 36px;
  max-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius-btn);
  color: rgba(30,45,25,0.5);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.footer-social a:hover {
  color: var(--color-primary);
  border-color: rgba(0,0,0,0.3);
}
.footer-social svg { width: 18px; height: 18px; max-width: 18px; max-height: 18px; }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(30,45,25,0.45);
  margin-bottom: var(--sp-3);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-nav-list a {
  font-size: 0.875rem;
  color: rgba(30,45,25,0.65);
  transition: color var(--transition-fast);
}
.footer-nav-list a:hover { color: var(--color-primary); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(30,45,25,0.65);
}
.footer-contact svg { width: 16px; height: 16px; max-width: 16px; max-height: 16px; flex-shrink: 0; color: var(--color-accent-green); }
.footer-contact a { transition: color var(--transition-fast); }
.footer-contact a:hover { color: var(--color-primary); }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-block: var(--sp-3);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(30,45,25,0.45);
}

.footer-legal {
  display: flex;
  gap: var(--sp-3);
}
.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(30,45,25,0.45);
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: var(--color-primary); }

/* ─── 18. Animations ────────────────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-animate="fade-in"]    { transform: none; }
[data-animate="slide-right"]{ transform: translateX(-28px); }
[data-animate="pop-in"]     { transform: scale(0.85); transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays — supports 0–800ms in 50ms increments */
[data-delay="50"]  { transition-delay: 0.05s; }
[data-delay="100"] { transition-delay: 0.1s;  }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s;  }
[data-delay="250"] { transition-delay: 0.25s; }
[data-delay="300"] { transition-delay: 0.3s;  }
[data-delay="350"] { transition-delay: 0.35s; }
[data-delay="400"] { transition-delay: 0.4s;  }
[data-delay="450"] { transition-delay: 0.45s; }
[data-delay="500"] { transition-delay: 0.5s;  }
[data-delay="550"] { transition-delay: 0.55s; }
[data-delay="600"] { transition-delay: 0.6s;  }
[data-delay="650"] { transition-delay: 0.65s; }
[data-delay="700"] { transition-delay: 0.7s;  }
[data-delay="750"] { transition-delay: 0.75s; }

/* stat-text-stat (non-numeric stat, e.g. "Free") */
.stat-text-stat {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-on-dark);
  letter-spacing: 0.02em;
}

/* ─── 19. Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; max-width: 100%; }
  .pillars-grid { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }
  .areas-inner { grid-template-columns: 1fr; gap: var(--sp-5); }
  .quote-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --container-px: 20px;
  }

  .hide-mobile { display: none; }

  .site-header .btn-call,
  .site-header .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .header-nav { display: none; }
  .nav-mobile { display: block; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: var(--sp-5);
  }
  .hero-image-panel { display: none; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { width: 100%; justify-content: center; }

  .stats-inner { gap: var(--sp-4); }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }

  .process-steps { flex-direction: column; align-items: center; gap: var(--sp-4); }
  .process-connector { display: none; }
  .process-step { padding-inline: 0; max-width: 480px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .form-row--two { flex-direction: column; }

  .footer-top-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .section { padding-block: var(--sp-6); }
  .hero { min-height: 100svh; }
  .hero-headline { font-size: 2.5rem; }
  .quote-form-wrap { padding: var(--sp-4) var(--sp-3); }
}

/* ─── 20. Sticky CTA Bar (mobile) ───────────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background-color: var(--color-surface-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-2) var(--container-px);
  gap: var(--sp-2);
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
  }
  .sticky-cta .btn-primary,
  .sticky-cta .btn-ghost {
    flex: 1;
    padding: 12px;
    font-size: 0.875rem;
  }
}

/* ─── 21. Skip Link ─────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-3);
  background: var(--color-accent-green);
  color: var(--color-text-on-dark);
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-btn) var(--radius-btn);
  font-weight: 600;
  z-index: 200;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: 0; }

/* ─── SONIC BOOM LAYER ───────────────────────────────────────────────────── */

/* ─── Hero Trust Row ────────────────────────────────────────────────────────── */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item svg { flex-shrink: 0; }

.trust-label {
  font-size: 0.8125rem;
  color: rgba(242, 240, 235, 0.65);
  font-weight: 400;
  line-height: 1;
}
.trust-label strong {
  color: var(--color-text-on-dark);
  font-weight: 600;
}

.trust-phone {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent-gold);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}
.trust-phone:hover { color: var(--color-text-on-dark); }

.trust-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ─── Pain / Problem Section ────────────────────────────────────────────────── */
.pain-section { background-color: var(--color-primary); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.pain-card {
  background-color: var(--color-surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-card);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.pain-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(201, 151, 58, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9973A;
  flex-shrink: 0;
  margin-bottom: var(--sp-1);
}
.pain-icon svg { width: 28px; height: 28px; max-width: 28px; max-height: 28px; }

.pain-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-on-dark);
  line-height: 1.2;
}

.pain-desc {
  font-size: 0.9375rem;
  color: rgba(242, 240, 235, 0.58);
  line-height: 1.65;
}

.pain-contrast {
  background-color: rgba(58, 122, 53, 0.07);
  border: 1px solid rgba(58, 122, 53, 0.22);
  border-radius: var(--radius-card);
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.pain-contrast-text {
  font-size: 1.0625rem;
  color: rgba(242, 240, 235, 0.78);
  line-height: 1.7;
  flex: 1;
  min-width: 280px;
  max-width: 680px;
}

/* ─── Evidence / Case Studies Section ──────────────────────────────────────── */
.evidence-section { background-color: var(--color-surface-light); }

.evidence-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--sp-3);
}
.evidence-card:not(.evidence-card--featured) {
  align-self: stretch;
}

.evidence-card {
  background-color: #fff;
  border: 1px solid var(--color-surface-pale);
  border-radius: var(--radius-card);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color var(--transition-base);
}
.evidence-card:hover { border-color: rgba(58, 122, 53, 0.3); }

.evidence-card--featured {
  grid-row: 1 / 3;
  background-color: var(--color-primary);
  border-color: rgba(255, 255, 255, 0.07);
}
.evidence-card--featured:hover { border-color: rgba(58, 122, 53, 0.35); }

.evidence-badge {
  display: inline-block;
  padding: 4px 10px;
  background-color: rgba(201, 151, 58, 0.12);
  border: 1px solid rgba(201, 151, 58, 0.32);
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  width: fit-content;
}

.evidence-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-on-dark);
  line-height: 1.2;
}
.evidence-card:not(.evidence-card--featured) .evidence-title { color: var(--color-text-on-light); }

.evidence-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.evidence-meta span {
  font-size: 0.9375rem;
  color: rgba(242, 240, 235, 0.82);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.evidence-meta span::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent-green);
  font-size: 0.9375rem;
}
.evidence-card:not(.evidence-card--featured) .evidence-meta span { color: #777D75; }

.evidence-desc {
  font-size: 0.9375rem;
  color: rgba(242, 240, 235, 0.62);
  line-height: 1.7;
  flex: 1;
}
.evidence-card:not(.evidence-card--featured) .evidence-desc { color: #555D52; }

.evidence-outcome {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--sp-3);
  margin-top: auto;
}
.evidence-card:not(.evidence-card--featured) .evidence-outcome { border-top-color: var(--color-surface-pale); }

.outcome-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-bottom: 6px;
}

.outcome-text {
  font-size: 0.9375rem;
  color: var(--color-text-on-dark);
  font-weight: 500;
  line-height: 1.55;
}
.evidence-card:not(.evidence-card--featured) .outcome-text { color: var(--color-text-on-light); font-weight: 600; }

/* ─── Quote Alt CTA ─────────────────────────────────────────────────────────── */
.quote-alt-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--sp-4);
  margin-top: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote-alt-label {
  font-size: 0.875rem;
  color: rgba(242, 240, 235, 0.45);
  max-width: 100%;
}

.quote-phone-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-accent-gold);
  transition: color var(--transition-fast);
  display: inline-block;
  line-height: 1;
}
.quote-phone-link:hover { color: var(--color-text-on-dark); }

.quote-alt-hours {
  font-size: 0.8125rem;
  color: rgba(242, 240, 235, 0.38);
  max-width: 100%;
}

/* ─── Sonic Boom Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .evidence-grid { grid-template-columns: 1fr; }
  .evidence-card--featured { grid-row: auto; }
}

@media (max-width: 768px) {
  .hero-trust-row { gap: var(--sp-3); }
  .trust-sep { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-contrast {
    flex-direction: column;
    gap: var(--sp-4);
    padding: var(--sp-4);
    text-align: center;
  }
  .pain-contrast .btn-primary { align-self: center; }
}

/* ─── SERVICE PAGE (single-service.php) ─────────────────────────────────────── */

/* Hero */
.svc-hero {
  position: relative;
  min-height: 80svh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.svc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 31, 28, 0.94) 0%,
    rgba(26, 31, 28, 0.78) 55%,
    rgba(26, 31, 28, 0.55) 100%
  );
}

.svc-hero-inner {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-7);
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Breadcrumb */
.svc-breadcrumb { margin-bottom: var(--sp-4); }

.svc-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
}

.svc-breadcrumb ol li {
  font-size: 0.8125rem;
  color: rgba(242, 240, 235, 0.45);
  font-weight: 400;
}

.svc-breadcrumb ol li a {
  color: rgba(242, 240, 235, 0.55);
  transition: color var(--transition-fast);
}
.svc-breadcrumb ol li a:hover { color: var(--color-accent-gold); }
.svc-breadcrumb ol li[aria-current="page"] { color: rgba(242, 240, 235, 0.75); }

/* Hero content */
.svc-hero-content { max-width: 820px; text-align: center; margin: 0 auto; }

.svc-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--color-text-on-dark);
  margin-bottom: var(--sp-3);
  margin-top: var(--sp-1);
}

.svc-hero-subhead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(242, 240, 235, 0.72);
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: var(--sp-5);
  text-align: center;
}

.svc-hero-scroll-cue {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(242, 240, 235, 0.3);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Service intro (post content) */
.svc-intro { background-color: var(--color-surface-light); }

.svc-intro-inner { max-width: 760px; margin-inline: auto; }

.svc-intro-body {
  margin-top: var(--sp-3);
  font-size: 1.0625rem;
  color: #444D42;
  line-height: 1.7;
}
.svc-intro-body p { max-width: 100%; margin-bottom: var(--sp-3); }
.svc-intro-body p:last-child { margin-bottom: 0; }

/* Proof section */
.svc-proof {
  background-color: var(--color-surface-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.svc-proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}

.svc-stat {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  min-width: 100px;
  text-align: center;
}

.svc-stat-text {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-on-dark);
  letter-spacing: 0.02em;
}

.svc-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Featured testimonial */
.svc-feat-testimonial {
  background-color: var(--color-primary);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--color-accent-gold);
  border-radius: var(--radius-card);
  padding: var(--sp-5) var(--sp-5);
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.svc-feat-testimonial-text {
  font-size: 1.125rem;
  color: rgba(242, 240, 235, 0.82);
  line-height: 1.7;
  font-style: italic;
  max-width: 100%;
}

/* Evidence / case study */
.svc-evidence { background-color: var(--color-primary); }

.svc-case-card {
  background-color: var(--color-surface-dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
}

.svc-case-header {
  background-color: rgba(58, 122, 53, 0.07);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.svc-case-body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* Responsive — service page */
@media (max-width: 768px) {
  .svc-hero { min-height: 100svh; }
  .svc-hero-inner { padding-block: var(--sp-5); }
  .svc-proof-stats { gap: var(--sp-4); }
  .svc-stat-divider { display: none; }
  .svc-case-card { grid-template-columns: 1fr; }
  .svc-case-header { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

/* ─── Service Area page — area-specific components ─────────────────────────── */

/* Services available in area */
.area-services-grid {
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--color-surface-pale);
}

.area-services-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-3);
}

.area-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.area-service-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: var(--color-surface-pale);
  border: 1px solid var(--color-surface-pale);
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-on-light);
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.area-service-chip:hover {
  background-color: var(--color-accent-green);
  border-color: var(--color-accent-green);
  color: var(--color-text-on-dark);
}

.area-service-chip svg { flex-shrink: 0; }

/* Nearby areas grid */
.nearby-section { background-color: var(--color-surface-light); }

.nearby-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.nearby-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background-color: #fff;
  border: 1px solid var(--color-surface-pale);
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-on-light);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}

.nearby-chip:hover {
  border-color: var(--color-accent-green);
  color: var(--color-accent-green);
  background-color: rgba(58, 122, 53, 0.04);
}

.nearby-chip svg { flex-shrink: 0; color: var(--color-text-muted); }
.nearby-chip:hover svg { color: var(--color-accent-green); }

/* ═══════════════════════════════════════════════════════
   STAGE 5.5 — HERO ANIMATIONS
═══════════════════════════════════════════════════════ */

/* Hero Blob */
.hero-blob {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  max-width: 680px;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at 50% 50%, rgba(58, 122, 53, 0.22) 0%, rgba(58, 122, 53, 0.06) 60%, transparent 80%);
  border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
  animation: blob-morph 10s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes blob-morph {
  0%   { border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%; transform: rotate(0deg) scale(1); }
  25%  { border-radius: 55% 45% 35% 65% / 55% 60% 40% 45%; transform: rotate(7deg) scale(1.03); }
  50%  { border-radius: 30% 70% 60% 40% / 50% 35% 65% 50%; transform: rotate(-5deg) scale(0.97); }
  75%  { border-radius: 65% 35% 45% 55% / 40% 55% 45% 60%; transform: rotate(10deg) scale(1.02); }
  100% { border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%; transform: rotate(0deg) scale(1); }
}

/* Hero BG Text */
.hero-bg-text {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 14rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(242, 240, 235, 0.04);
  white-space: nowrap;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* Word Reveal */
@keyframes word-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.word-reveal {
  animation: word-up 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: calc(var(--wr, 0) * 0.13s + 0.1s);
}

span.word-reveal {
  display: inline-block; /* required for translateY on inline elements */
}

/* Hero Image Panel Drop-in */
@keyframes hero-image-drop {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-image-panel {
  animation: hero-image-drop 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.7s;
}

/* Hero Badge Ring */
.hero-badge-ring {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 120px;
  height: 120px;
  z-index: 3;
  animation: badge-spin 12s linear infinite;
}

@keyframes badge-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.badge-circle-text {
  fill: var(--color-accent-gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.badge-center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  background-color: var(--color-accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badge-icon-stable 12s linear infinite;
}

@keyframes badge-icon-stable {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* ═══════════════════════════════════════════════════════
   STAGE 5.5 — SERVICE CARDS SCROLL + HOVER
═══════════════════════════════════════════════════════ */

/* Staggered vertical offsets (desktop grid) */
.services-grid { align-items: start; }

.service-card:nth-child(1) { margin-top: 0; }
.service-card:nth-child(2) { margin-top: 48px; }
.service-card:nth-child(3) { margin-top: 24px; }
.service-card:nth-child(4) { margin-top: 64px; }

/* Scroll-in initial state */
.service-card {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color var(--transition-base);
}

/* Reveal when grid enters viewport */
.js-services-grid.cards-in-view .service-card:nth-child(1) {
  opacity: 1; transform: translateY(0); transition-delay: 0s;
}
.js-services-grid.cards-in-view .service-card:nth-child(2) {
  opacity: 1; transform: translateY(0); transition-delay: 0.1s;
}
.js-services-grid.cards-in-view .service-card:nth-child(3) {
  opacity: 1; transform: translateY(0); transition-delay: 0.2s;
}
.js-services-grid.cards-in-view .service-card:nth-child(4) {
  opacity: 1; transform: translateY(0); transition-delay: 0.3s;
}

/* Badge pill — always visible, top-left corner of image */
.service-card-img { position: relative; }

.service-card-hover-label {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  padding: 4px 10px;
  background-color: var(--color-accent-green);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  z-index: 4;
}

/* ═══════════════════════════════════════════════════════
   STAGE 5.5 — EVIDENCE GRID FIX
═══════════════════════════════════════════════════════ */

.evidence-card--featured { align-self: stretch; }

/* ═══════════════════════════════════════════════════════
   STAGE 5.5 — MOBILE OVERRIDES
═══════════════════════════════════════════════════════ */

@media (max-width: 767px) {
  .hero-blob,
  .hero-bg-text { display: none; }

  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) { margin-top: 0; }
}

/* ═══════════════════════════════════════════════════════
   STAGE 5.5B — SERVICE CARD CLICK FIX
   Cards must be visible by default; only hidden when JS
   adds .js-animate-ready (progressive enhancement)
═══════════════════════════════════════════════════════ */

/* Reset unconditional hidden state from previous pass */
.service-card {
  opacity: 1;
  transform: none;
}

/* Only hide once JS marks ready */
.js-animate-ready .service-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color var(--transition-base);
}

.js-animate-ready.cards-in-view .service-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.js-animate-ready.cards-in-view .service-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.js-animate-ready.cards-in-view .service-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.js-animate-ready.cards-in-view .service-card:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════
   STAGE 5.5B — LIGHTER SECTIONS
   Pain + Services move to off-white background
═══════════════════════════════════════════════════════ */

/* Pain Section → light */
.pain-section { background-color: var(--color-surface-light); }
.pain-section .section-title { color: var(--color-text-on-light); }
.pain-section .section-desc  { color: var(--color-text-muted); }

.pain-card {
  background-color: #fff;
  border: 1px solid var(--color-surface-pale);
}

.pain-title { color: var(--color-text-on-light); }
.pain-desc  { color: var(--color-text-muted); }

.pain-contrast {
  background-color: rgba(58, 122, 53, 0.06);
  border-color: rgba(58, 122, 53, 0.2);
}

.pain-contrast-text { color: var(--color-text-on-light); }

/* Services Section → light */
.services-section { background-color: var(--color-surface-light); }
.services-section .section-title { color: var(--color-text-on-light); }
.services-section .section-desc  { color: var(--color-text-muted); }

.service-card {
  background-color: #fff;
  border-color: var(--color-surface-pale);
}

.service-card-title { color: var(--color-text-on-light); }
.service-card-desc  { color: var(--color-text-muted); }

/* Force white background on all service cards — specificity fix for card 1 */
.services-section .service-card {
  background-color: #fff !important;
}
.services-section .service-card-title { color: var(--color-text-on-light) !important; }
.services-section .service-card-desc  { color: var(--color-text-muted) !important; }

/* BUG 1 FIX — on hover bg shifts dark; force light text on all 4 cards */
.service-card:hover .service-card-title {
  color: #F2F0EB !important;
}
.service-card:hover .service-card-desc {
  color: rgba(242,240,235,0.85) !important;
}
.service-card:hover .service-card-icon {
  color: #F2F0EB;
}
.service-card:hover .service-card-icon svg {
  stroke: #F2F0EB;
}
.service-card:hover .service-card-link {
  color: #F2F0EB;
}
.service-card:hover .service-card-link svg {
  stroke: #F2F0EB;
}

/* ═══════════════════════════════════════════════════════
   STAGE 5.5B — CTA BANNER STRIP
═══════════════════════════════════════════════════════ */

.cta-banner-strip {
  position: relative;
  padding: var(--sp-7) 0;
  overflow: hidden;
  text-align: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 26, 22, 0.78);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.cta-banner-logo-wrap {
  background-color: #fff;
  border-radius: 8px;
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-banner-logo {
  height: 52px;
  width: auto;
  display: block;
}

.cta-banner-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 2.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-on-dark);
  line-height: 1.2;
}

.cta-banner-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--sp-1);
}

@media (max-width: 540px) {
  .cta-banner-actions { flex-direction: column; align-items: stretch; }
  .cta-banner-actions a { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   STAGE 5.5B — EVIDENCE CARD IMAGE
═══════════════════════════════════════════════════════ */

.evidence-card-img {
  margin: calc(var(--sp-4) * -1) calc(var(--sp-4) * -1) 0;
  width: calc(100% + var(--sp-4) * 2);
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  flex-shrink: 0;
}

.evidence-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   REDESIGN — Full-bleed hero, stats break-out card,
   clean why section
═══════════════════════════════════════════════════════ */

/* ─── Hero Full Bleed ────────────────────────────────── */
.hero-full {
  position: relative;
  min-height: 90svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-full-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-full-bg img,
.hero-full-bg .hero-full-video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.hero-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 31, 28, 0.92) 0%,
    rgba(26, 31, 28, 0.68) 55%,
    rgba(26, 31, 28, 0.30) 100%
  );
}

.hero-full-inner {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-8) calc(var(--sp-7) + 80px);
}

.hero-full-content {
  max-width: 680px;
}

.hero-full-headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--color-text-on-dark);
  margin-bottom: var(--sp-3);
  margin-top: var(--sp-2);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero-full-headline em {
  font-style: normal;
  color: var(--color-accent-green);
  display: inline;
}

.hero-full-subhead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(242, 240, 235, 0.80);
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: var(--sp-5);
  text-align: center;
}

/* ─── Stats Break-out Card ───────────────────────────── */
.stats-float-wrap {
  background-color: var(--color-surface-light);
  padding-top: 80px;
  padding-bottom: var(--sp-7);
  position: relative;
  z-index: 5;
}
.stats-float-wrap > .container {
  max-width: 100%;
  padding-inline: 0;
}

.stats-float-card {
  background: #ffffff;
  border-radius: 0;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  box-shadow:
    0 -4px 0 0 var(--color-accent-green),
    0 24px 64px rgba(0, 0, 0, 0.13);
  margin-top: -80px;
  position: relative;
  border: 1px solid var(--color-surface-pale);
}

.stat-float-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding-inline: 16px;
}

.stat-float-value {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}

.stat-float-value span[data-count] {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent-green);
  letter-spacing: 0.01em;
  line-height: 1;
}

.stat-float-suf {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent-green);
  letter-spacing: 0.02em;
}

.stat-float-free {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent-green);
  letter-spacing: 0.01em;
  line-height: 1;
}
.gv-stat-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent-green);
  letter-spacing: 0.01em;
  line-height: 1;
}

.stat-float-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.stat-float-divider {
  width: 1px;
  height: 56px;
  background: var(--color-surface-pale);
  flex-shrink: 0;
}

/* Pain section padding accounts for stats card overlap */
.pain-section {
  padding-top: var(--sp-5);
}

/* ─── Service Cards — Remove Stagger ─────────────────── */
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4) {
  margin-top: 0 !important;
}
.services-grid { align-items: stretch !important; }

/* ─── Why Section — Clean (no background image) ──────── */
.why-section--clean .why-bg-image,
.why-section--clean .why-bg-accent {
  display: none !important;
}

/* Pillar icon circles */
.pillar-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  max-width: 52px;
  max-height: 52px;
  background-color: var(--color-accent-green);
  border-radius: 50%;
  margin-bottom: var(--sp-3);
  flex-shrink: 0;
}
.pillar-icon-circle svg {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
}

/* Hide the ghost number since icon replaces it */
.why-section--clean .pillar-number {
  display: none;
}

/* ─── Redesign Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .stats-float-card {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding: 32px 32px;
    margin-top: -56px;
    gap: var(--sp-5) 0;
  }
  .stat-float-divider { display: none; }
  .stat-float-item { padding-inline: 0; }
}

@media (max-width: 768px) {
  .hero-full-content { max-width: 100%; }
  .hero-full-inner {
    padding-bottom: calc(var(--sp-6) + 56px);
  }
  .stats-float-card {
    grid-template-columns: 1fr 1fr;
    margin-top: -48px;
    padding: 28px 20px;
    gap: var(--sp-4) 0;
  }
}

@media (max-width: 480px) {
  .stats-float-card {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
}

/* ═══════════════════════════════════════════════════════
   STAGE 5.5C — GALLERY + BANNER + TESTIMONIALS REDESIGN
═══════════════════════════════════════════════════════ */

/* ─── Gallery Section ────────────────────────────────── */
.gallery-section { background-color: var(--color-surface-light); }

.gallery-section .section-header {
  padding-bottom: var(--sp-5);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 4px solid #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 31, 28, 0.82) 0%,
    rgba(26, 31, 28, 0.25) 45%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 24px 22px;
  pointer-events: none;
}

.gallery-item-overlay span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.gallery-cta-wrap {
  display: flex;
  justify-content: center;
  padding-top: var(--sp-5);
  padding-bottom: var(--sp-2);
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 16 / 9; }
}

/* ─── Testimonials — Light Redesign (home-8 style) ──── */
.testimonials-section {
  background-color: #F5F4F0 !important;
}

.testimonials-section .section-title {
  color: var(--color-text-on-light);
}

.testimonials-section .eyebrow--gold {
  color: var(--color-accent-gold);
}

.testimonial-card {
  background-color: #ffffff !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 30px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10) !important;
  border-color: transparent !important;
}

.testimonial-text {
  color: var(--color-text-on-light) !important;
}

.testimonial-name {
  color: var(--color-text-on-light) !important;
}

.testimonial-footer {
  border-top-color: var(--color-surface-pale) !important;
}

/* ─── BES Banner — Home-8 Solid Split ───────────────── */

/*
  Structure:
  - .bes-banner: section wrapper, position:relative, overflow:hidden
  - .bes-banner-bg: full-bleed absolute background image (right half visible)
  - .bes-banner-inner: flex row, full width
  - .bes-banner-left: SOLID opaque panel (dark→green gradient), no transparency
  - .bes-banner-right: TRANSPARENT — image shows through naturally, badge floats here
*/

.bes-banner {
  position: relative;
  overflow: hidden;
  margin-top: 64px;
}

.bes-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bes-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

.bes-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 300px;
}

/* Solid opaque left panel — dark earth → brand green */
.bes-banner-left {
  flex: 0 0 52%;
  background: linear-gradient(256deg, #2E6228 0%, #263229 100%);
  padding: 56px 64px 56px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 18px;
}

/* Transparent right panel — image shows through */
.bes-banner-right {
  flex: 0 0 48%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 56px;
}

.bes-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.875rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0;
}

.bes-banner-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 0;
}

.bes-banner-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* White badge — floats over the natural image */
.bes-banner-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.28);
}

.bes-banner-badge-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bes-banner-badge-icon svg {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
}

.bes-banner-badge-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bes-banner-badge-phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-on-light);
  letter-spacing: 0.02em;
  line-height: 1.15;
  display: block;
  text-decoration: none;
}
.bes-banner-badge-phone:hover {
  color: var(--color-accent-green);
}

.bes-banner-badge-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
  display: block;
}

@media (max-width: 900px) {
  .bes-banner-inner { flex-direction: column; min-height: auto; }
  .bes-banner-left {
    flex: none;
    width: 100%;
    padding: 48px 40px;
    background: linear-gradient(180deg, #263229 0%, #2E6228 100%);
  }
  .bes-banner-right {
    flex: none;
    width: 100%;
    padding: 40px;
    background: rgba(26, 31, 28, 0.72);
  }
}

@media (max-width: 540px) {
  .bes-banner-left { padding: 40px 24px; }
  .bes-banner-right { padding: 32px 24px 44px; }
  .bes-banner-ctas { flex-direction: column; }
  .bes-banner-badge { flex-direction: row; }
}

/* ═══════════════════════════════════════════════════════
   STAGE 5.5D — HERO CENTER + CAROUSELS
═══════════════════════════════════════════════════════ */

/* ─── Hero: center layout, smaller headline ──────────── */
.hero-full-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-full-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero-full-headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
}
.home .hero-full-content {
  max-width: 1100px;
}
.home .hero-full-headline {
  white-space: nowrap;
  font-size: clamp(1.75rem, 3.8vw, 3.5rem) !important;
}
.hero-ctas,
.hero-trust-row {
  justify-content: center;
}

/* ─── Gallery Carousel ───────────────────────────────── */
.gallery-carousel-wrap {
  position: relative;
}
.gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 6px;
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-track .gallery-item {
  flex: 0 0 calc(33.333% - 4px);
  scroll-snap-align: start;
  aspect-ratio: 4 / 3;
  border: 4px solid #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

/* ─── Carousel Buttons (gallery float style) ─────────── */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: background 0.2s ease;
}
.carousel-btn:hover { background: var(--color-accent-green); }
.carousel-btn:hover svg { stroke: #fff; }
.carousel-btn svg { stroke: var(--color-text-on-light); }
.carousel-btn--prev { left: 12px; }
.carousel-btn--next { right: 12px; }

/* ─── Testimonials Carousel ──────────────────────────── */
.testimonials-carousel-wrap { position: relative; }

.testimonials-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: var(--sp-3);
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonials-track .testimonial-card {
  flex: 0 0 calc(80% - 16px);
  scroll-snap-align: start;
  min-width: 0;
}

/* ─── Carousel Controls Row (below testimonials) ─────── */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.carousel-ctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-surface-pale);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.carousel-ctrl-btn:hover {
  background: var(--color-accent-green);
  border-color: var(--color-accent-green);
}
.carousel-ctrl-btn:hover svg { stroke: #fff; }
.carousel-ctrl-btn svg { stroke: var(--color-text-on-light); }

/* ─── Dots ───────────────────────────────────────────── */
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-surface-pale);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}
.carousel-dot.active {
  background: var(--color-accent-green);
  transform: scale(1.3);
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .gallery-track .gallery-item { flex: 0 0 calc(50% - 3px); }
  .testimonials-track .testimonial-card { flex: 0 0 calc(85% - 12px); }
}
@media (max-width: 560px) {
  .gallery-track .gallery-item { flex: 0 0 85%; }
  .testimonials-track .testimonial-card { flex: 0 0 100%; }
  .hero-full-headline { font-size: clamp(2rem, 9vw, 2.5rem) !important; }
  .home .hero-full-headline { white-space: normal; }
}

/* ============================================================
   SVC2 — 10-Section Service Page Template
   ============================================================ */

/* ── Shared typography ──────────────────────────────────────── */
.svc2-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.svc2-section-title--dark { color: var(--color-base); }
.svc2-section-desc { color: rgba(255,255,255,0.75); font-size: 1.0625rem; margin: 0; }
.svc2-section-desc--dark { color: rgba(26,31,28,0.7); }
.svc2-intro-para { color: rgba(255,255,255,0.82); font-size: 1rem; line-height: 1.7; margin: 0 0 1.25rem; }
.svc2-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

/* ── Section 1: HERO split ──────────────────────────────────── */
.svc2-hero {
  display: flex;
  min-height: 92vh;
}
.svc2-hero-left {
  flex: 0 0 52%;
  background: var(--color-base);
  padding: clamp(80px, 10vw, 140px) clamp(40px, 5vw, 80px) clamp(64px, 8vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc2-hero-right {
  flex: 0 0 48%;
  overflow: hidden;
  clip-path: inset(0 0% 0 0); /* explicit end-state so GSAP can interpolate from inset(0 100% 0 0) */
}
.svc2-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Breadcrumb */
.svc2-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  font-size: 0.8125rem;
}
.svc2-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.svc2-breadcrumb a:hover { color: var(--color-gold); }
.svc2-breadcrumb [aria-current="page"] { color: rgba(255,255,255,0.35); }
.svc2-breadcrumb [aria-hidden] { color: rgba(255,255,255,0.25); }

/* Hero headline */
.svc2-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 1rem;
}
.svc2-subhead {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin: 0 0 2rem;
  max-width: 520px;
}

/* Hero CTAs */
.svc2-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2.5rem;
}

/* Trust row */
.svc2-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.svc2-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}
.svc2-trust-item strong { color: #fff; }
.svc2-trust-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.2);
}

/* ── Section 2: INTRO BLOCK ─────────────────────────────────── */
.svc2-intro {
  background: var(--color-base);
  padding: clamp(80px, 10vw, 120px) 0;
}
.svc2-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.svc2-intro-left { display: flex; flex-direction: column; align-items: flex-start; }
.svc2-intro-left .eyebrow { margin-bottom: 1rem; }
.svc2-intro-left .svc2-section-title { margin-bottom: 1.5rem; }
.svc2-intro-left .btn-primary { margin-top: 0.5rem; }
.svc2-intro-right {}
.svc2-intro-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.svc2-intro-img-wrap > img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.svc2-intro-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc2-intro-badge-stat {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.75), 0 2px 12px rgba(0,0,0,0.5);
}
.svc2-intro-badge-logo {
  height: 40px;
  width: auto;
  max-width: 140px;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0,0,0,0.6));
}

/* ── Section 3: VARIETIES GRID ──────────────────────────────── */
.svc2-varieties {
  background: var(--color-surface-dark);
  padding: clamp(80px, 10vw, 120px) 0;
}
.svc2-varieties .section-header { text-align: center; margin-bottom: 3rem; }
.svc2-varieties .eyebrow { color: var(--color-gold); }
.svc2-varieties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.svc2-varieties-grid--5 { grid-template-columns: repeat(5, 1fr); }
.svc2-varieties-grid--6 { grid-template-columns: repeat(3, 1fr); }
.svc2-variety-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  cursor: default;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
a.svc2-variety-card.is-linked { cursor: pointer; }
a.svc2-variety-card.is-linked:hover {
  border-color: rgba(201,151,58,0.6);
  background: rgba(201,151,58,0.08);
  transform: translateY(-4px);
}
a.svc2-variety-card.is-linked .svc2-variety-arrow { color: var(--color-gold, #C9973A); }
.svc2-variety-card.has-img { padding: 0 !important; gap: 0; }
.svc2-variety-card.has-img .svc2-variety-name { padding: 16px 20px 4px; }
.svc2-variety-card.has-img .svc2-variety-desc { padding: 0 20px 12px; }
.svc2-variety-card.has-img .svc2-variety-link { padding: 0 20px 20px; }
.svc2-variety-link { color: var(--color-gold, #C9973A) !important; }
.svc2-variety-link:hover { color: #fff !important; }
.svc2-variety-card .card-border-glow { display: none !important; }
.svc2-variety-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.svc2-variety-card:hover {
  border-color: rgba(58,122,53,0.5);
  background: rgba(58,122,53,0.08);
  transform: translateY(-3px);
}
.svc2-variety-icon {
  width: 48px;
  height: 48px;
  background: rgba(58,122,53,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cta);
  flex-shrink: 0;
}
.svc2-variety-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.svc2-variety-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.svc2-variety-arrow {
  color: var(--color-gold);
  margin-top: auto;
}

/* ── Section 4: PROCESS STEPS ───────────────────────────────── */
.svc2-process {
  background: #F2F0EB;
  padding: clamp(80px, 10vw, 120px) 0;
}
.svc2-process .section-header { text-align: center; margin-bottom: 3rem; }
.svc2-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc2-process-step {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc2-process-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-cta);
  line-height: 1;
  opacity: 0.6;
}
.svc2-process-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-base);
  margin: 0;
}
.svc2-process-desc {
  font-size: 0.9375rem;
  color: rgba(26,31,28,0.75);
  line-height: 1.65;
  margin: 0;
}
.svc2-process-cta { text-align: center; margin-top: 3rem; }

/* ── Section 5: RIGHT / WRONG ───────────────────────────────── */
.svc2-right-wrong {
  background: var(--color-base);
  padding: clamp(80px, 10vw, 120px) 0;
}
.svc2-right-wrong .section-header { text-align: center; margin-bottom: 3rem; }
.svc2-rw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.svc2-rw-col {
  border-radius: 12px;
  padding: clamp(28px, 4vw, 40px);
}
.svc2-rw-yes { background: rgba(58,122,53,0.12); border: 1px solid rgba(58,122,53,0.25); }
.svc2-rw-no  { background: rgba(201,151,58,0.08); border: 1px solid rgba(201,151,58,0.2); }
.svc2-rw-col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem;
}
.svc2-rw-yes .svc2-rw-col-title svg { color: var(--color-cta); }
.svc2-rw-no  .svc2-rw-col-title svg { color: var(--color-gold); }
.svc2-rw-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc2-rw-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}
.svc2-rw-list li svg { flex-shrink: 0; margin-top: 2px; }

/* ── Section 6: FAQ ACCORDION ───────────────────────────────── */
.svc2-faqs {
  background: var(--color-surface-dark);
  padding: clamp(80px, 10vw, 120px) 0;
}
.svc2-faqs .section-header { text-align: center; margin-bottom: 3rem; }
.svc2-faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc2-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid transparent;
  transition: border-left-color 0.2s;
}
.svc2-faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.svc2-faq-item.is-open { border-left-color: var(--color-cta); }
.svc2-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 20px 20px 20px 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  transition: color 0.2s;
}
.svc2-faq-q:hover { color: var(--color-gold); }
.svc2-faq-chevron { flex-shrink: 0; transition: transform 0.25s; color: var(--color-gold); }
.svc2-faq-item.is-open .svc2-faq-chevron { transform: rotate(180deg); }
.svc2-faq-a {
  padding: 0 20px 20px 16px;
}
.svc2-faq-a p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0;
}

/* ── Section 7: TESTIMONIALS ────────────────────────────────── */
.svc2-testimonials {
  background: var(--color-base);
  padding: clamp(80px, 10vw, 120px) 0;
}
.svc2-testimonials .section-header { text-align: center; margin-bottom: 3rem; }
.svc2-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc2-testi-card {
  background: var(--color-surface-dark);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.07);
}
.svc2-testi-stars { display: flex; gap: 3px; }
.svc2-testi-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  flex: 1;
  margin: 0;
  font-style: italic;
}
.svc2-testi-footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.svc2-testi-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  font-style: normal;
}
.svc2-testi-loc { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }

/* ── Section 8: CTA STRIP ───────────────────────────────────── */
.svc2-cta-strip {
  background: var(--color-cta);
  padding: clamp(56px, 7vw, 80px) 0;
}
.svc2-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.svc2-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}
.svc2-cta-sub { font-size: 1rem; color: rgba(255,255,255,0.85); margin: 0; }
.svc2-cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.svc2-cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
}
.svc2-cta-phone:hover { opacity: 0.85; }

/* btn--dark: dark bg button, use on colored bg sections */
.btn--dark {
  background: var(--color-base) !important;
  color: #fff !important;
  border-color: var(--color-base) !important;
}
.btn--dark:hover {
  background: var(--color-surface-dark) !important;
  border-color: var(--color-surface-dark) !important;
}

/* ── Section 9: RELATED SERVICES ────────────────────────────── */
.svc2-related {
  background: var(--color-base);
  padding: clamp(80px, 10vw, 120px) 0;
}
.svc2-related .section-header { text-align: center; margin-bottom: 3rem; }
.svc2-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc2-related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 28px 24px;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.svc2-related-card:hover {
  border-color: rgba(58,122,53,0.45);
  background: rgba(58,122,53,0.07);
  transform: translateY(-3px);
}
.svc2-related-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.svc2-related-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.svc2-related-arrow {
  color: var(--color-gold);
  margin-top: auto;
  display: block;
}

/* ── Section 10: QUOTE FORM ─────────────────────────────────── */
.svc2-quote {
  background: var(--color-surface-dark);
  padding: clamp(80px, 10vw, 120px) 0;
}
.svc2-quote-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.svc2-quote-info { display: flex; flex-direction: column; align-items: flex-start; }
.svc2-quote-info .eyebrow { margin-bottom: 1rem; }
.svc2-quote-info .svc2-section-title { margin-bottom: 1rem; }
.svc2-quote-info .svc2-intro-para { margin-bottom: 1.5rem; }
.svc2-quote-promises {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc2-quote-promises li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.82);
}
.svc2-quote-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  width: 100%;
}
.svc2-quote-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.65);
}
.svc2-quote-contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.svc2-quote-phone {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.svc2-quote-phone:hover { color: var(--color-gold); }
.svc2-quote-response { font-size: 0.9375rem; color: #fff; font-weight: 600; }
.svc2-quote-hours { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }

/* form inside svc2-quote reuses existing .quote-form styles */
.svc2-quote-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: clamp(28px, 4vw, 40px);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .svc2-varieties-grid { grid-template-columns: repeat(2, 1fr); }
  .svc2-process-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .svc2-hero { flex-direction: column; min-height: auto; }
  .svc2-hero-left { flex: none; width: 100%; padding: 80px 24px 48px; }
  .svc2-hero-right { flex: none; width: 100%; height: 52vw; min-height: 240px; }
  .svc2-intro-inner   { grid-template-columns: 1fr; }
  .svc2-intro-right   { order: -1; }
  .svc2-intro-img-wrap > img { height: 320px; }
  .svc2-rw-grid       { grid-template-columns: 1fr; }
  .svc2-testi-grid    { grid-template-columns: 1fr 1fr; }
  .svc2-related-grid  { grid-template-columns: 1fr 1fr; }
  .svc2-quote-inner   { grid-template-columns: 1fr; }
  .svc2-cta-inner     { flex-direction: column; text-align: center; }
  .svc2-cta-actions   { justify-content: center; }
}

@media (max-width: 640px) {
  .svc2-varieties-grid { grid-template-columns: 1fr; }
  .svc2-process-grid   { grid-template-columns: 1fr; }
  .svc2-testi-grid     { grid-template-columns: 1fr; }
  .svc2-related-grid   { grid-template-columns: 1fr; }
  .svc2-hero-ctas      { flex-direction: column; }
  .svc2-trust-row      { gap: 10px; }
  .svc2-trust-sep      { display: none; }
  .svc2-faq-q          { font-size: 1rem; padding: 18px 16px 18px 12px; }
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS — Centered Slider (Screenshot_8 template)
═══════════════════════════════════════════════════════ */

.testimonials-section {
  position: relative;
  overflow: hidden;
  background-color: #F5F5F3 !important;
  padding-bottom: 80px;
}

/* BUG 3 FIX — bg image swap div, JS controls opacity via fade transition */
.testi-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
}
/* Dark scrim above bg image, below content */
.testi-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 31, 28, 0.72);
}

/* Inner wrapper — same as .container but z-indexed above deco images */
.testi-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ── Decorative side images ── */
.testi-deco {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22%;
  max-width: 320px;
  z-index: 0;
  pointer-events: none;
}
.testi-deco--left  { left: 0; }
.testi-deco--right { right: 0; }
.testi-deco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ── Pill eyebrow ── */
.eyebrow--pill {
  display: inline-block;
  border: 1.5px solid #555;
  border-radius: 50px;
  padding: 5px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #555;
  text-transform: none;
  background: transparent;
  margin-bottom: var(--sp-3);
}

/* ── Section header text — force light on dark bg image ── */
.testimonials-section .section-title--dark {
  color: var(--color-text-on-dark);       /* #F2F0EB — cream white, readable on dark scrim */
}
.testimonials-section .section-desc--dark {
  color: rgba(242, 240, 235, 0.82);       /* off-white, slightly dimmed for hierarchy */
}
.testimonials-section .eyebrow--pill {
  color: rgba(242, 240, 235, 0.8);
  border-color: rgba(242, 240, 235, 0.4);
}

/* ── Slider wrapper ── */
.testi-slider {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  padding-top: var(--sp-2);
}

/* ── Individual slides ── */
.testi-slide {
  display: none;
}
.testi-slide.is-active {
  display: block;
  animation: testiIn 0.35s ease;
}

@keyframes testiIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testi-quote-icon {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5.5rem;
  line-height: 0.75;
  color: var(--color-accent-green);
  margin-bottom: var(--sp-3);
}

.testi-slide-text {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #F2F0EB;
  line-height: 1.6;
  margin: 0 0 var(--sp-3);
}

.testi-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--sp-2);
}

.testi-slide-name {
  display: block;
  font-weight: 700;
  font-style: normal;
  color: #F2F0EB;
  font-size: 1rem;
  margin-bottom: 4px;
}

.testi-slide-loc {
  display: block;
  font-size: 0.875rem;
  color: rgba(242,240,235,0.65);
}

/* ── Avatar nav ── */
.testi-avatar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: var(--sp-5);
}

.testi-avatar-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid transparent;
  padding: 3px;
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
}

.testi-avatar-btn.is-active {
  border-color: var(--color-accent-green);
  opacity: 1;
  transform: scale(1.1);
}

.testi-avatar-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .testi-deco { width: 16%; }
}
@media (max-width: 860px) {
  .testi-deco { display: none; }
  .testi-slider { max-width: 100%; }
}
@media (max-width: 560px) {
  .testi-slide-text { font-size: 1rem; }
  .testi-quote-icon { font-size: 4rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM SCROLL ANIMATIONS — BES_VERSION 1.1.1
   Animations 2–6: GSAP-driven + CSS-only service card border
   All animations disabled below 768px via @media guard at bottom of section
═══════════════════════════════════════════════════════════════════════════ */

/* ─── Animation 2: Hero Headline Gradient Shimmer ──────────────────────────── */
.hero-full-headline {
  background: linear-gradient(90deg, #F2F0EB 0%, #C9973A 50%, #3A7A35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: bes-gradient-shimmer 4s ease infinite 1.2s;
}
.hero-full-headline em {
  -webkit-text-fill-color: transparent; /* keep em inside the gradient */
}
@keyframes bes-gradient-shimmer {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* ─── Animation 3: Circular Scroll Reveal — removed ────────────────────────── */

/* ─── Animation 4: Stat Gold Underline ──────────────────────────────────────── */
.stat-underline {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #C9973A, #3A7A35);
  border-radius: 2px;
  display: block;
}

/* ─── Animation 5: Service Card Rotating Gold Border (JS-driven) ────────────── */
.service-card {
  position: relative;
}
.service-card .card-border-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: transparent;
  border: 2px solid transparent;
  background-image: linear-gradient(transparent, transparent), linear-gradient(var(--glow-angle, 0deg), #C9973A, #3A7A35, #C9973A);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  z-index: 2;
}
.service-card-img,
.service-card-body {
  position: relative;
  z-index: 3;
}
.service-card:hover .card-border-glow {
  opacity: 1;
}

/* ─── Disable all new animations on mobile ──────────────────────────────────── */
@media (max-width: 767px) {
  /* Revert hero headline gradient — use plain off-white */
  .hero-full-headline {
    background: none;
    -webkit-text-fill-color: var(--color-text-on-dark);
    animation: none;
  }
  .hero-full-headline em {
    -webkit-text-fill-color: var(--color-accent-green);
  }

  /* Hide stat underline on mobile */
  .stat-underline { display: none; }

  /* Disable service card border glow on mobile */
  .service-card .card-border-glow { display: none; }
  .sarea-card .card-border-glow   { display: none; }
}

/* ═══════════════════════════════════════════════════════
   SERVICE AREAS ARCHIVE — Stage 5.7
═══════════════════════════════════════════════════════ */

/* ─── Section 2: Area Cards Grid ──────────────────────── */
.sarea-grid-section { background-color: var(--color-primary); }

.sarea-region-group { margin-bottom: var(--sp-7); }
.sarea-region-group:last-child { margin-bottom: 0; }

.sarea-region-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-gold);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.sarea-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sp-3);
}

.sarea-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  background-color: var(--color-surface-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: var(--sp-3) var(--sp-3);
  text-decoration: none;
  transition: border-color var(--transition-base), transform var(--transition-base);
  overflow: hidden;
}
.sarea-card:hover {
  border-color: rgba(201,151,58,0.4);
  transform: translateY(-3px);
}
.sarea-card .card-border-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: transparent;
  border: 2px solid transparent;
  background-image: linear-gradient(transparent, transparent), linear-gradient(var(--glow-angle, 0deg), #C9973A, #3A7A35, #C9973A);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  z-index: 0;
}
.sarea-card:hover .card-border-glow { opacity: 1; }

.sarea-card-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.sarea-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-on-dark);
  line-height: 1.1;
}

.sarea-card-parish {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-gold);
}

.sarea-card-arrow {
  color: rgba(242,240,235,0.3);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.sarea-card:hover .sarea-card-arrow {
  color: var(--color-accent-gold);
  transform: translateX(4px);
}

/* ─── Section 3: Parish Breakdown ─────────────────────── */
.parish-section { background-color: var(--color-primary); }

.parish-rows { margin-top: var(--sp-5); }

.parish-row {
  padding: 28px 0;
  border-bottom: 1px solid rgba(242,240,235,0.12);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.parish-row:first-child { border-top: 1px solid rgba(242,240,235,0.12); }

.parish-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.77,0,0.18,1);
  z-index: 0;
}
.parish-row:hover::before { transform: scaleX(1); }

.parish-row-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.parish-row-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-on-dark);
  transition: color 0.3s ease;
  line-height: 1;
}
.parish-row:hover .parish-row-name { color: #F2F0EB; }

.parish-row-arrow {
  font-size: 1.5rem;
  color: var(--color-accent-gold);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-right: 4px;
}
.parish-row:hover .parish-row-arrow {
  transform: translateX(4px);
  color: #C9973A;
}

.parish-row-hoods {
  font-size: 0.875rem;
  color: rgba(242,240,235,0.55);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  max-width: 100%;
  transition: color 0.3s ease;
}
.parish-row:hover .parish-row-hoods { color: rgba(242,240,235,0.8); }

/* ─── Section 6: CTA Banner ────────────────────────────── */
#testimonials-sa { padding-bottom: var(--sp-8); }

.sarea-cta-banner {
  position: relative;
  padding: var(--sp-8) 0;
  overflow: hidden;
}

.sarea-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.sarea-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,31,28,0.82);
}

.sarea-cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
}

.sarea-cta-logo {
  width: 130px;
  height: auto;
  margin-bottom: var(--sp-2);
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.sarea-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-on-dark);
  line-height: 1.1;
  margin-bottom: 8px;
}

.sarea-cta-sub {
  font-size: 1rem;
  color: rgba(242,240,235,0.6);
  max-width: 100%;
}

.sarea-cta-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .sarea-cards-grid { grid-template-columns: 1fr 1fr; }
  .sarea-cta-actions { justify-content: center; flex-direction: column; width: 100%; }
  .parish-row-name { font-size: 1.75rem; }
}
@media (max-width: 480px) {
  .sarea-cards-grid { grid-template-columns: 1fr; }
}

/* ── Archive Hero Word Reveal (1.2.8) ───────────────────────────────────────── */
.bes-word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.bes-word-inner {
  display: inline-block;
  will-change: transform;
}

/* ── CTA Button Cursor Spotlight Glow (1.2.8) ──────────────────────────────── */
.btn-primary {
  position: relative;
  overflow: hidden;
  --glow-x: 50%;
  --glow-y: 50%;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 70px at var(--glow-x) var(--glow-y), rgba(255,255,255,0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  border-radius: inherit;
}
.btn-primary:hover::after { opacity: 1; }

/* ─── Area About Section ─────────────────────────────── */
.area-about-section { background-color: var(--color-primary); }

.area-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: start;
}

.area-about-text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(242,240,235,0.85);
  margin-top: var(--sp-3);
}

.area-lawn-card {
  background: var(--color-surface);
  border: 1px solid rgba(242,240,235,0.1);
  border-radius: 8px;
  padding: var(--sp-5);
}

.area-lawn-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent-gold);
  margin-bottom: var(--sp-3);
}

.area-lawn-notes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.area-lawn-notes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(242,240,235,0.8);
  line-height: 1.5;
}

.area-lawn-notes svg { flex-shrink: 0; margin-top: 2px; }

/* ─── Fun Facts Section ──────────────────────────────── */
.area-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.area-fact-card {
  background: #fff;
  border: 1px solid rgba(26,31,28,0.08);
  border-radius: 8px;
  padding: var(--sp-4) var(--sp-5);
}

.area-fact-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent-gold);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.area-fact-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-on-light);
}

/* ─── Things To Do Section ───────────────────────────── */
.area-todo-section { background-color: var(--color-primary); }

.area-todo-inner { max-width: 760px; margin-inline: auto; }

.area-todo-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-5) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.area-todo-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: rgba(242,240,235,0.85);
  line-height: 1.55;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(242,240,235,0.08);
}

.area-todo-item:last-child { border-bottom: none; padding-bottom: 0; }
.area-todo-item svg { flex-shrink: 0; margin-top: 3px; }

@media (max-width: 768px) {
  .area-about-inner { grid-template-columns: 1fr; }
  .area-facts-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PAGE TEMPLATES — new selectors for pages built 2026-05-15
   Covers: page-about, page-contact-us, page-faq-sod-installation-new-orleans,
           page-free-quote, page-thank-you
   ================================================================ */

/* ─── Shared: CSS variable alias used in contact template ────── */
:root { --color-surface: var(--color-surface-dark); }

/* ─── Shared: Minimal page hero (no bg image) ────────────────── */
.page-hero--minimal {
  background-color: var(--color-primary);
  padding: var(--sp-8) 0 var(--sp-7);
}

.page-hero-inner--centered {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.page-hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-on-dark);
  margin: var(--sp-2) 0 var(--sp-3);
}

/* ── svc-intro bg image (1.3.1) ──────────────────────────────────────────── */
.svc-intro { position: relative; overflow: hidden; }
.svc-intro-bg { position: absolute; inset: 0; z-index: 0; }
.svc-intro-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.svc-intro-overlay { position: absolute; inset: 0; background: rgba(26, 31, 28, 0.78); }
.svc-intro .container { position: relative; z-index: 1; }
.svc-intro .eyebrow { color: #C9973A; }
.svc-intro .section-title,
.svc-intro .svc-intro-body p { color: #F2F0EB; }

.page-hero-subhead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(242,240,235,0.8);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--sp-4);
}

.page-hero-subhead a {
  color: var(--color-accent-gold);
  text-decoration: underline;
}

/* ─── About: Origin story 2-col ──────────────────────────────── */
.about-origin { background-color: var(--color-primary); }

.about-origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: start;
}

.about-origin-content { padding-top: var(--sp-2); }

.about-origin-body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(242,240,235,0.82);
  margin-bottom: var(--sp-3);
}

.about-origin-body:last-child { margin-bottom: 0; }

.about-origin-img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

/* ─── About: Values grid ─────────────────────────────────────── */
.about-values { background-color: var(--color-surface-dark); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.value-card {
  background-color: var(--color-primary);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: var(--sp-4);
}

.value-card-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201,151,58,0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
}

.value-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text-on-dark);
  margin-bottom: var(--sp-2);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.value-card-body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(242,240,235,0.75);
}

/* ─── About: Team grid ───────────────────────────────────────── */
.about-team { background-color: var(--color-surface-light); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-5);
}

.team-card {
  background-color: #fff;
  border: 1px solid var(--color-surface-pale);
  border-radius: 8px;
  overflow: hidden;
}

.team-avatar-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #D5D3CE;
  display: block;
}

.team-card-body { padding: var(--sp-3); }

.team-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-text-on-light);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.team-card-role {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-accent-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-2);
}

.team-card-bio {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ─── Contact: Split layout ──────────────────────────────────── */
.contact-section { background-color: var(--color-primary); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: start;
}

.contact-details h2 {
  margin-bottom: var(--sp-3);
}
.contact-intro {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-surface-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-detail-value {
  display: block;
  font-size: 1rem;
  color: var(--color-text-on-dark);
  line-height: 1.5;
}

a.contact-detail-value {
  color: var(--color-accent-gold);
  text-decoration: none;
}

a.contact-detail-value:hover { text-decoration: underline; }

.contact-map-placeholder {
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-top: var(--sp-4);
}

.contact-form-wrap { padding-top: var(--sp-2); }

/* ─── FAQ: Category titles and accordion ─────────────────────── */
.faq-section { background-color: var(--color-primary); }

.faq-category { margin-bottom: var(--sp-7); }

.faq-category:last-child { margin-bottom: 0; }

.faq-category-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-accent-gold);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid rgba(201,151,58,0.25);
}

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

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text-on-dark);
  text-align: left;
  line-height: 1.5;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--color-accent-gold); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--color-accent-gold);
}

.faq-item.is-open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 0 var(--sp-4);
}

.faq-item.is-open .faq-answer { display: block; }

.faq-answer p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(242,240,235,0.78);
  margin: 0;
}

/* ─── Free Quote: trust row standalone ───────────────────────── */
.trust-row-wrap {
  background-color: var(--color-surface-dark);
  padding: var(--sp-4) 0;
}

.hero-trust-row--standalone {
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
}

.quote-inner--centered { justify-content: center; }

.quote-form-wrap--wide {
  max-width: 640px;
  margin-inline: auto;
  width: 100%;
}

/* ─── Centered hero variant (FAQ, Free Quote) ─────────────────── */
.hero-full--centered .hero-full-content {
  text-align: center;
  margin-inline: auto;
}
.hero-full--centered .hero-ctas {
  justify-content: center;
}
.hero-full--centered .hero-trust-row {
  justify-content: center;
}

/* ─── Thank You: confirmation hero ───────────────────────────── */
.thankyou-hero {
  padding: var(--sp-8) 0 var(--sp-7);
}
.thankyou-hero .hero-full-content {
  text-align: center;
}

.thankyou-hero-inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.thankyou-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: rgba(58,122,53,0.12);
  border-radius: 50%;
  margin: 0 auto var(--sp-4);
}

.thankyou-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-on-dark);
  margin: var(--sp-2) 0 var(--sp-3);
}

.thankyou-subhead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(242,240,235,0.8);
}

/* ─── Thank You: phone section ───────────────────────────────── */
.thankyou-phone-section {
  background-color: var(--color-surface-dark);
  padding: var(--sp-6) 0;
}

.thankyou-phone-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

.thankyou-phone-number {
  font-size: clamp(2rem, 4vw, 3rem);
}

.thankyou-phone-hours {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ─── Thank You: related links grid ─────────────────────────── */
.thankyou-related { background-color: var(--color-primary); }

.thankyou-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.thankyou-link-card {
  display: block;
  background-color: var(--color-surface-dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: var(--sp-4);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}

.thankyou-link-card:hover {
  border-color: rgba(201,151,58,0.35);
  transform: translateY(-2px);
}

.thankyou-link-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(201,151,58,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
}

.thankyou-link-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-on-dark);
  margin-bottom: var(--sp-2);
}

.thankyou-link-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(242,240,235,0.7);
  margin: 0;
}

/* ─── Shared: horizontal process steps (free-quote, thank-you) ─ */
.process-steps--horizontal {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: var(--sp-6);
}

.process-steps--horizontal .process-connector {
  margin-top: 20px;
  align-self: start;
}

/* ─── Responsive breakpoints ─────────────────────────────────── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-origin-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .thankyou-links-grid { grid-template-columns: 1fr; }
  .process-steps--horizontal {
    grid-template-columns: 1fr;
  }
  .process-steps--horizontal .process-connector { display: none; }
  .page-hero--minimal { padding: var(--sp-7) 0 var(--sp-6); }
}

/* ─── FAQ mid-CTA ────────────────────────────────────── */
.faq-cta-mid {
  background: var(--color-surface-dark, #2C302C);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 32px 40px;
  margin: 48px 0;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.faq-cta-mid-text {
  font-size: 1.1rem;
  color: var(--color-text-on-dark, #F2F0EB);
  font-weight: 500;
  flex: 1;
  min-width: 200px;
}
.faq-cta-mid-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── Thank You trust + testimonial ─────────────────── */
.thankyou-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.thankyou-testimonial {
  max-width: 560px;
  margin: 32px auto 0;
  padding: 24px 32px;
  background: var(--color-surface-dark, #2C302C);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  text-align: left;
}
.thankyou-testimonial p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(242,240,235,0.85);
  font-style: italic;
  margin: 0 0 12px;
}
.thankyou-testimonial footer {
  font-size: 0.875rem;
  color: var(--color-accent-gold, #C9973A);
  font-weight: 500;
}

/* ─── Privacy policy content ─────────────────────────── */
.privacy-content {
  max-width: 760px;
  margin-inline: auto;
  color: var(--color-text-on-light, #2A2E2A);
}
.privacy-updated {
  font-size: 0.875rem;
  color: var(--color-text-muted, #6B7068);
  margin-bottom: 40px;
}
.privacy-content h2 {
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-on-light, #2A2E2A);
  margin: 40px 0 12px;
}
.privacy-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 24px 0 8px;
}
.privacy-content p, .privacy-content li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.privacy-content ul { padding-left: 24px; }
.privacy-content a { color: var(--color-accent-green, #3A7A35); }

@media (max-width: 768px) {
  .faq-cta-mid { flex-direction: column; text-align: center; padding: 24px; }
  .faq-cta-mid-actions { justify-content: center; }
  .thankyou-trust { gap: 16px; }
}

/* ═══════════════════════════════════════════════════════
   v1.3.2 — Archive + Location Page Fixes
   ═══════════════════════════════════════════════════════ */

/* ── Gradient shimmer on svc-hero-headline — matches homepage hero ── */
.svc-hero-headline {
  background: linear-gradient(90deg, #F2F0EB 0%, #C9973A 50%, #3A7A35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: bes-gradient-shimmer 4s ease infinite 1.2s;
}
/* Fix: GSAP word-split wraps text in .bes-word-inner — reapply gradient so
   text stays visible after the split (child spans inherit text-fill transparent
   but lose the parent background-clip context) */
.hero-full-headline .bes-word-inner,
.svc-hero-headline .bes-word-inner {
  background: linear-gradient(90deg, #F2F0EB 0%, #C9973A 50%, #3A7A35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: bes-gradient-shimmer 4s ease infinite 1.2s;
}
@media (max-width: 767px) {
  .svc-hero-headline,
  .hero-full-headline {
    background: none;
    -webkit-text-fill-color: var(--color-text-on-dark);
    animation: none;
  }
  .svc-hero-headline .bes-word-inner,
  .hero-full-headline .bes-word-inner {
    background: none;
    -webkit-text-fill-color: var(--color-text-on-dark);
    animation: none;
  }
}


/* ── Close testimonials bottom gap on service area pages ── */
.service-areas-archive .testimonials-section,
.service-area-page .testimonials-section { padding-bottom: var(--sp-8); }

/* ── Remove extra top margin on bes-banner (location pages only) ── */
.service-area-page .bes-banner { margin-top: 0; }

/* ── Parish accordion — expandable drop panel ── */
.parish-row { cursor: pointer; }
.parish-row-main { cursor: pointer; }
.parish-row-drop {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  position: relative; /* sit above ::before green overlay (z-index: 0) */
  z-index: 1;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.parish-row.is-open .parish-row-drop {
  max-height: 300px;
  opacity: 1;
}
/* Keep green background visible while row is open, not just on hover */
.parish-row.is-open::before { transform: scaleX(1); }
.parish-row.is-open .parish-row-arrow {
  transform: rotate(90deg);
  color: #C9973A;
}
.parish-drop-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 0 20px;
}
.parish-drop-chip {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(242,240,235,0.25);
  border-radius: 4px;
  color: rgba(242,240,235,0.75);
  font-size: 0.875rem;
  text-decoration: none;
  line-height: 1;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.parish-drop-chip:hover {
  background: rgba(201,151,58,0.15);
  color: #F2F0EB;
  border-color: rgba(201,151,58,0.5);
}

/* ================================================================
   MOBILE FIXES — 2026-05-15
   5 issues: stats ticker, gallery gap, locations gap,
             service hover bg, evidence card stretch
   ================================================================ */

/* ─── Fix 1: Stats bar — one-line animated ticker on mobile ───── */
@keyframes stats-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 767px) {
  .stats-bar {
    overflow: hidden;
    padding-block: 14px;
  }
  .stats-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    animation: stats-ticker 20s linear infinite;
    will-change: transform;
  }
  .stats-inner .stat-item {
    flex-shrink: 0;
  }
  /* Re-show dividers as rhythm separators in the ticker */
  .stats-inner .stat-divider {
    display: flex !important;
    flex-shrink: 0;
  }
}

/* ─── Fix 2: Gallery section — cut heading-to-carousel gap ────── */
@media (max-width: 767px) {
  .gallery-section .section-header {
    padding-bottom: var(--sp-2);  /* was 48px, now 16px */
    margin-bottom: var(--sp-3);   /* override global 64px margin */
  }
}

/* ─── Fix 3: Nearby/locations — trim excess section-header gap ── */
@media (max-width: 767px) {
  .nearby-section .section-header {
    margin-bottom: var(--sp-3);   /* was 64px, now 24px */
  }
  .nearby-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: var(--sp-2);
  }
  .nearby-chip {
    justify-content: flex-start;
  }
}

/* ─── Fix 4: Service card hover — add dark bg so light text shows */
.services-section .service-card {
  transition: background-color var(--transition-base),
              border-color var(--transition-base),
              transform var(--transition-base);
}
.services-section .service-card:hover {
  background-color: var(--color-primary) !important;
}

/* ─── Fix 5: Evidence cards — remove row stretch gap on mobile ── */
@media (max-width: 1024px) {
  .evidence-grid {
    grid-template-rows: auto;    /* override explicit 1fr 1fr */
  }
  .evidence-card:not(.evidence-card--featured) {
    align-self: auto;            /* stop stretching to row height */
  }
}
@media (max-width: 767px) {
  .evidence-desc {
    flex: none;                  /* stop filling card height with whitespace */
  }
}

/* ================================================================
   MOBILE FIX — Stats float card: 1-line rotating display
   ================================================================ */
@media (max-width: 767px) {
  .stats-float-wrap {
    padding-top: 48px;
    padding-bottom: var(--sp-4);
  }

  .stats-float-card {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 90px;
    padding: 20px 24px;
    margin-top: -48px;
    grid-template-columns: unset; /* kill grid */
  }

  .stat-float-divider {
    display: none !important;
  }

  .stat-float-item {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
  }

  .stat-float-item.stat-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Scale down the large numbers to fit one line */
  .stat-float-value span[data-count],
  .stat-float-free {
    font-size: 2.25rem;
  }
  .stat-float-suf {
    font-size: 1.4rem;
  }
  .stat-float-label {
    font-size: 0.7rem;
  }
}

/* ── Scroll to top button ── */
.bes-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-accent-gold);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: background-color 0.2s, transform 0.2s;
}
.bes-scroll-top:hover {
  background-color: #b07e28;
  transform: translateY(-2px);
}
.bes-scroll-top[hidden] { display: none; }

/* ═══════════════════════════════════════════════════════════════════
   CHILD SERVICE PAGES  (single-service-child.php)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Sub Hero ── */
.sub-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #fff;
}
.sub-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,31,28,0.78) 0%, rgba(26,31,28,0.55) 100%);
}
.sub-hero__inner {
  position: relative;
  max-width: 760px;
}
.sub-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.sub-hero__breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.sub-hero__breadcrumb a:hover { text-decoration: underline; }
.sub-hero__breadcrumb span[aria-hidden] { opacity: 0.6; }
.sub-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}
.sub-hero__subhead {
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.sub-hero__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── What It Is ── */
.sub-what { padding: 80px 0; }
.sub-what__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sub-what__content h2 { margin-bottom: 20px; }
.sub-what__content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--color-body);
}
.sub-what__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

/* ── Right for You / Not ── */
.sub-fit { padding: 80px 0; background: var(--color-surface-dark); }
.sub-fit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.sub-fit__heading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sub-fit__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sub-fit__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  line-height: 1.5;
}
.sub-fit__icon { flex-shrink: 0; margin-top: 2px; }

/* ── Siblings ── */
.sub-siblings { padding: 80px 0; }
.sub-siblings .section-title { margin-bottom: 8px; }
.sub-siblings__intro {
  color: var(--color-body);
  margin-bottom: 40px;
  font-size: 1rem;
}
.sub-siblings__parent-link {
  text-align: center;
  margin-top: 32px;
}
.sub-siblings__parent-link a {
  color: var(--color-primary);
  text-decoration: underline;
  font-size: 0.95rem;
}

/* ── FAQ on child pages ── */
.sub-faq { padding: 80px 0; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .sub-what__inner,
  .sub-fit__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sub-what__image { display: none; }
  .sub-fit { background: #263229; }
}

/* ═══════════════════════════════════════════════════════════════════
   TYPES OF GRASS HUB PAGE  (page-types-of-grass-sod.php)
   ═══════════════════════════════════════════════════════════════════ */

.gv-hub-intro { background: var(--color-primary); }
.gv-hub-intro__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.gv-hub-intro__row:last-child { margin-bottom: 0; }
.gv-hub-intro__row--flip { direction: rtl; }
.gv-hub-intro__row--flip > * { direction: ltr; }
.gv-hub-intro__text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(242,240,235,0.88);
  margin-bottom: 1.25rem;
}
.gv-hub-intro__text p:last-child { margin-bottom: 0; }
.gv-hub-intro__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
@media (max-width: 768px) {
  .gv-hub-intro__row { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .gv-hub-intro__row--flip { direction: ltr; }
  .gv-hub-intro__img { order: -1; }
  .gv-hub-intro__img img { height: 240px; }
}

.gv-hub-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 1100px) { .gv-hub-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .gv-hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gv-hub-grid { grid-template-columns: 1fr; } }

/* Full-bleed overlay card */
.gv-hub-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.gv-hub-card__img {
  position: absolute;
  inset: 0;
}
.gv-hub-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gv-hub-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,31,28,0.92) 0%, rgba(26,31,28,0.55) 55%, rgba(26,31,28,0.15) 100%);
}
.gv-hub-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-accent-gold, #C9973A);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}
.gv-hub-card__body {
  position: relative;
  z-index: 2;
  padding: 52px 20px 22px;
  display: flex;
  flex-direction: column;
}
.gv-hub-card__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #F2F0EB;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gv-hub-card__desc {
  font-size: 0.9rem;
  color: rgba(242,240,235,0.82);
  line-height: 1.6;
  margin-bottom: 10px;
}
.gv-hub-card__best {
  font-size: 0.8rem;
  color: rgba(242,240,235,0.65);
  margin-bottom: 14px;
}
.gv-hub-card__best strong { color: var(--color-accent-gold, #C9973A); }
.gv-hub-card .service-card-link {
  margin-top: auto;
  color: var(--color-accent-gold, #C9973A);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.gv-hub-card .service-card-link:hover { color: #fff; }

/* Comparison Table */
.gv-compare { background: var(--color-surface-dark); }
.gv-table-wrap { overflow-x: auto; margin-top: 40px; }
.gv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.gv-table th, .gv-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(242,240,235,0.1);
  color: rgba(242,240,235,0.85);
}
.gv-table thead th {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent-gold, #C9973A);
  background: rgba(0,0,0,0.2);
}
.gv-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.gv-table__trait { font-weight: 600; color: #F2F0EB; }
.gv-compare__note {
  margin-top: 28px;
  font-size: 0.9rem;
  color: rgba(242,240,235,0.6);
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}


/* ═══════════════════════════════════════════════════════════════
   BLOG — single.php
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────── */
.blog-post-date {
  font-size: 0.9375rem;
  color: rgba(242,240,235,0.72);
  font-style: normal;
}

/* ── Article wrap ─────────────────────────────────────────────── */
.blog-article-wrap { background: var(--color-bg); }

.blog-article-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

/* ── Article body typography ──────────────────────────────────── */
.blog-article-body {
  color: rgba(242,240,235,0.88);
  font-size: 1.0625rem;
  line-height: 1.8;
}
.blog-article-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #F2F0EB;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 2.5rem 0 1rem;
  line-height: 1.15;
}
.blog-article-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #F2F0EB;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 2rem 0 0.75rem;
  line-height: 1.2;
}
.blog-article-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 1.75rem 0 0.5rem;
}
.blog-article-body p { margin-bottom: 1.4rem; }
.blog-article-body ul,
.blog-article-body ol {
  margin: 0 0 1.4rem 1.25rem;
  padding: 0;
}
.blog-article-body ul { list-style: none; margin-left: 0; }
.blog-article-body ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.6rem;
}
.blog-article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}
.blog-article-body ol { list-style: decimal; }
.blog-article-body ol li { margin-bottom: 0.6rem; }
.blog-article-body a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.blog-article-body a:hover { color: #F2F0EB; }
.blog-article-body blockquote {
  border-left: 4px solid var(--color-gold);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--color-surface);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #F2F0EB;
}
.blog-article-body blockquote p { margin: 0; }
/* ─── AI Summary Box ─────────────────────────────────────── */
.blog-article-body div[style*="background-color:#D5E8F0"] {
  color: var(--color-text-on-light, #2A2E2A) !important;
}
.blog-article-body img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.5rem 0;
  display: block;
}
.blog-article-body strong { color: #F2F0EB; font-weight: 600; }
.blog-article-body hr {
  border: none;
  border-top: 1px solid rgba(242,240,235,0.12);
  margin: 2.5rem 0;
}

/* ── Back link ────────────────────────────────────────────────── */
.blog-article-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(242,240,235,0.12); }
.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(242,240,235,0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-back-link:hover { color: var(--color-gold); }

/* ── Sidebar ──────────────────────────────────────────────────── */
.blog-article-sidebar { position: sticky; top: 100px; }

.blog-sidebar-cta {
  background: var(--color-surface);
  border: 1px solid rgba(201,151,58,0.25);
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 32px;
}
.blog-sidebar-eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.blog-sidebar-cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #F2F0EB;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.blog-sidebar-cta-body {
  font-size: 0.9rem;
  color: rgba(242,240,235,0.7);
  margin-bottom: 20px;
  line-height: 1.6;
}
.blog-sidebar-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  color: rgba(242,240,235,0.6);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-sidebar-phone:hover { color: var(--color-gold); }

.blog-sidebar-recent { }
.blog-sidebar-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242,240,235,0.5);
  margin-bottom: 16px;
}
.blog-sidebar-list { list-style: none; margin: 0; padding: 0; }
.blog-sidebar-item { border-bottom: 1px solid rgba(242,240,235,0.08); }
.blog-sidebar-item:last-child { border-bottom: none; }
.blog-sidebar-item-link {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  text-decoration: none;
  transition: opacity 0.2s;
}
.blog-sidebar-item-link:hover { opacity: 0.8; }
.blog-sidebar-item-img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-sidebar-item-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-sidebar-item-text { flex: 1; }
.blog-sidebar-item-date {
  display: block;
  font-size: 0.75rem;
  color: rgba(242,240,235,0.45);
  margin-bottom: 4px;
}
.blog-sidebar-item-title {
  font-size: 0.875rem;
  color: rgba(242,240,235,0.82);
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
}

/* ── Related posts grid ───────────────────────────────────────── */
.blog-related { background: var(--color-surface); }
.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.blog-related-card {
  background: var(--color-bg);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s;
}
.blog-related-card:hover { transform: translateY(-4px); }
.blog-related-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.blog-related-card-body { padding: 20px 22px 24px; }
.blog-related-card-date {
  display: block;
  font-size: 0.78rem;
  color: rgba(242,240,235,0.45);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.blog-related-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin-bottom: 10px;
}
.blog-related-card-title a {
  color: #F2F0EB;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-related-card-title a:hover { color: var(--color-gold); }
.blog-related-card-excerpt {
  font-size: 0.9rem;
  color: rgba(242,240,235,0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-related-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.blog-related-card-cta:hover { gap: 10px; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .blog-article-grid { grid-template-columns: 1fr; gap: 48px; }
  .blog-article-sidebar { position: static; }
  .blog-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-related-grid { grid-template-columns: 1fr; }
  .blog-article-body { font-size: 1rem; }
}

/* ── Interlinks box ───────────────────────────────────────────── */
.blog-interlinks {
  background: var(--color-surface);
  border: 1px solid rgba(201,151,58,0.2);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 10px 10px 0;
  padding: 22px 24px;
  margin: 2.5rem 0;
}
.blog-interlinks-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}
.blog-interlinks-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-interlinks-list li { }
.blog-interlinks-list a {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(201,151,58,0.08);
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: 100px;
  color: var(--color-gold);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.blog-interlinks-list a:hover {
  background: var(--color-gold);
  color: #1A1F1C;
}

/* ─── Blog Index ────────────────────────────────────────────────────────────── */
.blog-index-section { background: var(--color-surface-light); }

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}

.blog-index-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.blog-index-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.blog-index-card-img-link { display: block; }
.blog-index-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.blog-index-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-index-card:hover .blog-index-card-img img { transform: scale(1.04); }

.blog-index-card-body {
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-index-card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}
.blog-index-card-cat {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-green);
}
.blog-index-card-read {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.blog-index-card-read::before { content: '·'; margin-right: var(--sp-2); }

.blog-index-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--sp-2);
}
.blog-index-card-title a {
  color: var(--color-text-on-dark);
  transition: color var(--transition-fast);
}
.blog-index-card-title a:hover { color: var(--color-gold); }

.blog-index-card-excerpt {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--sp-3);
}

.blog-index-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--sp-3);
}
.blog-index-card-date {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.blog-index-card-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gold);
  transition: color var(--transition-fast);
}
.blog-index-card-link:hover { color: var(--color-text-on-dark); }

.blog-index-pagination {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-7);
}
.blog-index-pagination .page-numbers {
  padding: 8px 16px;
  border-radius: var(--radius-btn);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition-fast);
}
.blog-index-pagination .page-numbers.current,
.blog-index-pagination .page-numbers:hover {
  background: var(--color-accent-green);
  color: #fff;
  border-color: var(--color-accent-green);
}

.blog-index-empty {
  text-align: center;
  color: var(--color-text-muted);
  padding: var(--sp-8) 0;
}

@media (max-width: 1024px) {
  .blog-index-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-index-grid { grid-template-columns: 1fr; }
}

/* ── Blog body image fix — prevent wpautop p wrapper capping image at 760px ── */
.blog-article-body figure {
  margin: 0 0 1.5rem;
}
.blog-article-body figure img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
.blog-article-body p:has(> img) {
  max-width: 100%;
}

/* ── WordPress image alignment classes — blog body ── */
.blog-article-body .wp-block-image {
  margin: 1.5rem 0;
}
.blog-article-body .wp-block-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
.blog-article-body .aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 100%;
}
/* ── Blog body figures ───────────────────────────────────────── */
/* First figure = full-width big image */
.blog-article-body figure:first-of-type {
  float: none !important;
  width: 100% !important;
  margin: 2rem 0 !important;
}
/* Subsequent figures: float left/right at 60% */
.blog-article-body .alignleft {
  float: left;
  width: 60%;
  margin: 0.5rem 2rem 1.5rem 0;
}
.blog-article-body .alignright {
  float: right;
  width: 60%;
  margin: 0.5rem 0 1.5rem 2rem;
}
.blog-article-body .aligncenter {
  float: none;
  width: 100%;
  margin: 2rem 0;
}
/* blog-body-figure: first = full-width, rest alternate */
.blog-article-body .blog-body-figure {
  float: left;
  width: 60%;
  margin: 0.5rem 2rem 1.5rem 0;
}
.blog-article-body .blog-body-figure:nth-of-type(even) {
  float: right;
  margin: 0.5rem 0 1.5rem 2rem;
}
.blog-article-body .alignleft img,
.blog-article-body .alignright img,
.blog-article-body .aligncenter img,
.blog-article-body .blog-body-figure img {
  width: 100% !important;
  height: auto !important;
  border-radius: 10px;
  display: block;
}
.blog-article-body::after {
  content: '';
  display: table;
  clear: both;
}


/* ═══════════════════════════════════════════════════════════
   § 17 — SERVICE LOCATION PAGES (page-service-location.php)
   4 services × 29 cities = 116 programmatic pages
═══════════════════════════════════════════════════════════ */

/* Intro grid: city context left, CTA card right */
.sl-intro-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .sl-intro-grid { grid-template-columns: 1fr; }
}
.sl-intro-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.sl-lawn-notes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sl-lawn-notes li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text);
}
.sl-lawn-notes li svg { flex-shrink: 0; margin-top: 2px; }
.sl-city-about {
  font-size: 0.95rem;
  color: var(--color-text-muted, #555);
  line-height: 1.6;
  border-left: 3px solid var(--color-gold, #C9973A);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

/* CTA sticky card */
.sl-cta-card {
  background: var(--color-surface-light, #f8f6f1);
  border: 1px solid #e0d9cc;
  border-radius: 12px;
  padding: 1.75rem;
  position: sticky;
  top: 100px;
}
.sl-cta-card-label {
  font-size: 0.9rem;
  color: var(--color-text-muted, #555);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.sl-cta-card-note {
  font-size: 0.8rem;
  color: var(--color-text-muted, #777);
  margin: 0.75rem 0 1rem;
  text-align: center;
}
.sl-home-link {
  font-weight: 600;
  color: var(--color-primary, #263229);
  text-decoration: underline;
}
.btn--block { display: block; width: 100%; text-align: center; }

/* FAQ accordion */
.sl-faq-container { max-width: 800px; }
.sl-faq-list { margin-top: 2rem; }
.sl-faq-item {
  border-bottom: 1px solid #e0d9cc;
  padding: 0;
}
.sl-faq-item:first-child { border-top: 1px solid #e0d9cc; }
.sl-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-heading, #1a1f1c);
  list-style: none;
}
.sl-faq-q::-webkit-details-marker { display: none; }
.sl-faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-gold, #C9973A);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s;
}
details[open] .sl-faq-q::after { transform: rotate(45deg); }
.sl-faq-a {
  padding: 0 0 1.25rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text, #333);
}

/* Cross-links block */
.sl-crosslinks { background: var(--color-surface-light, #f8f6f1); }
.sl-crosslinks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 700px) {
  .sl-crosslinks-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.sl-cl-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-heading, #1a1f1c);
  margin: 0 0 1rem;
}
.sl-cl-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sl-cl-link {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--color-primary, #263229);
  background: #fff;
  border: 1px solid #e0d9cc;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.sl-cl-link:hover {
  border-color: var(--color-gold, #C9973A);
  background: #fffbf4;
}
.sl-cl-link--area {
  background: var(--color-primary, #263229);
  color: #fff;
  border-color: transparent;
  font-weight: 600;
}
.sl-cl-link--area:hover {
  background: var(--color-primary-dark, #1a1f1c);
  border-color: transparent;
}

/* Quote section trust list */
.quote-trust-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.quote-trust-list li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.quote-trust-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold, #C9973A);
  font-weight: 700;
}

/* Quote form fallback */
.quote-form-fallback {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.quote-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  box-sizing: border-box;
}
.quote-input:focus {
  outline: none;
  border-color: var(--color-gold, #C9973A);
  box-shadow: 0 0 0 3px rgba(201,151,58,0.15);
}
.quote-textarea { resize: vertical; min-height: 100px; }

/* sl-intro background image (matches svc-intro pattern) */
.sl-intro { position: relative; overflow: hidden; }
.sl-intro-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sl-intro-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sl-intro-overlay {
  position: absolute;
  inset: 0;
  background: rgba(248, 246, 241, 0.84);
}
.sl-intro .container { position: relative; z-index: 1; }

/* ── Cross-links redesign (replaces old sl-cl-* flat styles) ─────────────── */
.sl-crosslinks { background: var(--color-primary, #263229); }
.sl-cl-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sl-cl-inner { grid-template-columns: 1fr; }
}
.sl-cl-panel {
  padding: 3.5rem 3rem;
}
.sl-cl-panel--services {
  border-right: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 768px) {
  .sl-cl-panel--services { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .sl-cl-panel { padding: 2.5rem 1.5rem; }
}
.sl-cl-panel-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.sl-cl-panel-header svg { color: var(--color-gold, #C9973A); flex-shrink: 0; }
.sl-cl-panel-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold, #C9973A);
  margin: 0;
}
.sl-cl-cards {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sl-cl-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
  color: rgba(255,255,255,0.9);
}
.sl-cl-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-gold, #C9973A);
}
.sl-cl-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(201,151,58,0.15);
  color: var(--color-gold, #C9973A);
  flex-shrink: 0;
}
.sl-cl-card-label {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
}
.sl-cl-card-arrow {
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  transition: color 0.15s, transform 0.15s;
}
.sl-cl-card:hover .sl-cl-card-arrow {
  color: var(--color-gold, #C9973A);
  transform: translateX(3px);
}
.sl-cl-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gold, #C9973A);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: gap 0.15s;
}
.sl-cl-all-link:hover { gap: 0.55rem; }
