/* =========================================================
   LUCAS ARBORIST LTD - DESIGN SYSTEM v2
   Inspired by Arbscapes: deep forest greens, cream, dramatic
   Montserrat throughout, square corners, no roundness
   ========================================================= */

:root {
  /* Background tones */
  --bg-black: #0A100C;
  --bg-darker: #060A08;
  --bg-deep: #030605;
  --bg-card: #0E1611;

  /* Green palette */
  --green-darkest: #0B2415;
  --green-deep: #102E1B;
  --green-brand: #15422A;
  --green-mid: #1D5B38;
  --green-accent: #2D7A4D;
  --green-bright: #4D9D6E;
  --green-soft: #7FB893;

  /* Light tones */
  --cream: #EFEDE4;
  --cream-deep: #E5E1D4;
  --cream-muted: #D9D4C3;
  --white: #FFFFFF;

  /* Text colours */
  --text-on-dark: var(--cream);
  --text-on-dark-muted: rgba(239, 237, 228, 0.7);
  --text-on-light: #1A1F1B;
  --text-on-light-muted: rgba(26, 31, 27, 0.65);

  /* Accents */
  --accent-warm: #C68E3F;
  --accent-emergency: #C9442F;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --space-11: 160px;
  --space-12: 200px;

  /* Containers */
  --container-narrow: 760px;
  --container: 1180px;
  --container-wide: 1380px;
  --container-mega: 1560px;

  /* Type */
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(3, 6, 5, 0.15);
  --shadow-md: 0 8px 24px rgba(3, 6, 5, 0.18);
  --shadow-lg: 0 16px 48px rgba(3, 6, 5, 0.25);
  --shadow-xl: 0 24px 80px rgba(3, 6, 5, 0.35);

  /* Z-layers */
  --z-base: 1;
  --z-elevated: 10;
  --z-header: 100;
  --z-floating: 110;
  --z-modal: 200;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-on-light);
  background: var(--cream);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 200ms ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text-on-light);
}

.hero-h1, h1 {
  font-size: clamp(2.5rem, 5.5vw + 1rem, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h2, .h2 {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

h3, .h3 {
  font-size: clamp(1.375rem, 1.5vw + 0.75rem, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h4 { font-size: 1.25rem; font-weight: 700; }

p { margin: 0; line-height: 1.65; }
.lead {
  font-size: clamp(1.0625rem, 0.5vw + 0.875rem, 1.3125rem);
  line-height: 1.55;
  color: var(--text-on-light-muted);
  font-weight: 400;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-accent);
  font-family: var(--font-sans);
}

.eyebrow--on-dark {
  color: var(--green-soft);
}

/* Dark-section text overrides */
.section--dark, .section--green {
  color: var(--text-on-dark);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.section--green h1, .section--green h2, .section--green h3, .section--green h4 {
  color: var(--cream);
}
.section--dark .lead, .section--green .lead {
  color: var(--text-on-dark-muted);
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-5); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-5); }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--space-5); }
.container-mega { max-width: var(--container-mega); margin: 0 auto; padding: 0 var(--space-5); }

@media (min-width: 768px) {
  .container, .container-narrow, .container-wide, .container-mega { padding: 0 var(--space-7); }
}

.section { padding: var(--space-9) 0; position: relative; }
.section--sm { padding: var(--space-7) 0; }
.section--lg { padding: var(--space-10) 0; }
.section--cream { background: var(--cream); }
.section--cream-deep { background: var(--cream-deep); }
.section--white { background: var(--white); }
.section--dark { background: var(--bg-black); }
.section--green { background: var(--green-darkest); }
.section--green-deep { background: var(--green-deep); }
.section--green-brand { background: var(--green-brand); }

@media (min-width: 1024px) {
  .section { padding: var(--space-10) 0; }
  .section--lg { padding: var(--space-11) 0; }
}

/* =========================================================
   BUTTONS - SQUARE CORNERS, NO ROUNDNESS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 18px 32px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid;
  border-radius: 2px;
  min-height: 56px;
  text-decoration: none;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Filled green - primary on light backgrounds */
.btn--primary {
  background: var(--green-brand);
  color: var(--cream);
  border-color: var(--green-brand);
}
.btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Cream on dark */
.btn--cream {
  background: var(--cream);
  color: var(--green-darkest);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Outline white (on dark hero/section) */
.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(239, 237, 228, 0.4);
}
.btn--outline:hover {
  background: var(--cream);
  color: var(--green-darkest);
  border-color: var(--cream);
}

/* Outline dark (on light section) */
.btn--outline-dark {
  background: transparent;
  color: var(--green-darkest);
  border-color: var(--green-darkest);
}
.btn--outline-dark:hover {
  background: var(--green-darkest);
  color: var(--cream);
}

/* Emergency / urgency */
.btn--emergency {
  background: var(--accent-emergency);
  color: var(--white);
  border-color: var(--accent-emergency);
}
.btn--emergency:hover {
  background: #B33623;
  border-color: #B33623;
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg { padding: 22px 44px; font-size: 0.9375rem; min-height: 64px; }
.btn--sm { padding: 12px 22px; font-size: 0.75rem; min-height: 44px; }
.btn--block { display: flex; width: 100%; }

/* =========================================================
   HEADER - TRANSPARENT BY DEFAULT, GREEN ON SCROLL
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  padding: var(--space-4) 0;
  transition: background 400ms ease, padding 300ms ease, box-shadow 400ms ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(11, 36, 21, 0.96);
  /* backdrop-filter removed for performance */
  
  padding: var(--space-3) 0;
  box-shadow: 0 1px 0 rgba(239, 237, 228, 0.08), 0 8px 32px rgba(0,0,0,0.2);
}

/* When over a light section, switch to dark text */
.site-header.dark-mode:not(.scrolled) {
  /* text colour handled by light theme */
}
.site-header.dark-mode:not(.scrolled) .nav-link,
.site-header.dark-mode:not(.scrolled) .header-cta-text {
  color: var(--green-darkest);
}

.header-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}
@media (min-width: 768px) {
  .header-inner { padding: 0 var(--space-7); }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 4px;
  transition: all 300ms ease;
  flex-shrink: 0;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-wordmark {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}
.logo-wordmark-sub {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(239, 237, 228, 0.6);
  margin-top: 4px;
  display: block;
}

.site-header.dark-mode:not(.scrolled) .logo-wordmark { color: var(--green-darkest); }
.site-header.dark-mode:not(.scrolled) .logo-wordmark-sub { color: rgba(11, 36, 21, 0.55); }

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.nav-link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  transition: color 200ms ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease-out;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--cream); }

/* Dropdown for services */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger { cursor: pointer; display: flex; align-items: center; gap: 6px; }
.nav-dropdown-trigger svg { width: 12px; height: 12px; transition: transform 200ms ease; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 320px;
  background: var(--green-darkest);
  border: 1px solid rgba(239, 237, 228, 0.1);
  padding: var(--space-3);
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease;
  box-shadow: var(--shadow-xl);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
  border-left: 2px solid transparent;
  transition: all 200ms ease;
  text-transform: none;
}
.nav-dropdown-menu a:hover {
  background: rgba(45, 122, 77, 0.15);
  border-left-color: var(--green-bright);
  padding-left: 20px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-phone {
  display: none;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream);
  padding: 8px 14px;
  border: 1px solid rgba(239, 237, 228, 0.25);
  border-radius: 2px;
  transition: all 200ms ease;
}
.header-phone svg { width: 14px; height: 14px; }
.header-phone:hover {
  background: rgba(239, 237, 228, 0.08);
  border-color: rgba(239, 237, 228, 0.5);
  color: var(--cream);
}

@media (min-width: 1024px) {
  .header-phone { display: inline-flex; }
}

.site-header.dark-mode:not(.scrolled) .header-phone {
  color: var(--green-darkest);
  border-color: rgba(11, 36, 21, 0.3);
}
.site-header.dark-mode:not(.scrolled) .header-phone:hover {
  background: rgba(11, 36, 21, 0.08);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.menu-toggle svg { width: 26px; height: 26px; }
.site-header.dark-mode:not(.scrolled) .menu-toggle { color: var(--green-darkest); }

@media (max-width: 1023px) {
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* =========================================================
   MOBILE MENU
   ========================================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: var(--green-darkest);
  display: flex;
  flex-direction: column;
  padding: var(--space-5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms ease, visibility 350ms;
  color: var(--cream);
}
.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-7);
  padding-top: var(--space-3);
}
.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--cream);
}
.mobile-menu-close svg { width: 26px; height: 26px; }

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
  overflow-y: auto;
}
.mobile-menu-nav a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(239, 237, 228, 0.08);
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 400ms ease, transform 400ms ease;
}
.mobile-menu.open .mobile-menu-nav a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .mobile-menu-nav a:nth-child(1) { transition-delay: 80ms; }
.mobile-menu.open .mobile-menu-nav a:nth-child(2) { transition-delay: 140ms; }
.mobile-menu.open .mobile-menu-nav a:nth-child(3) { transition-delay: 200ms; }
.mobile-menu.open .mobile-menu-nav a:nth-child(4) { transition-delay: 260ms; }
.mobile-menu.open .mobile-menu-nav a:nth-child(5) { transition-delay: 320ms; }
.mobile-menu.open .mobile-menu-nav a:nth-child(6) { transition-delay: 380ms; }
.mobile-menu.open .mobile-menu-nav a:nth-child(7) { transition-delay: 440ms; }

.mobile-menu-services-group {
  padding-left: var(--space-4);
  border-left: 2px solid rgba(45, 122, 77, 0.3);
  margin-top: -4px;
  margin-bottom: var(--space-3);
  display: flex;
  flex-direction: column;
}
.mobile-menu-services-group a {
  font-size: 1rem;
  font-weight: 500;
  padding: var(--space-2) 0;
  border-bottom: none;
  color: rgba(239, 237, 228, 0.75);
}

.mobile-menu-footer {
  padding-top: var(--space-6);
  padding-bottom: env(safe-area-inset-bottom);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* =========================================================
   HERO - FULL SCREEN, BIG TYPE
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
  background: var(--bg-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.hero-bg img, .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(3, 6, 5, 0.4) 0%,
    rgba(3, 6, 5, 0.2) 40%,
    rgba(3, 6, 5, 0.7) 80%,
    rgba(3, 6, 5, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--space-9) 0 var(--space-9);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: var(--space-5);
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--green-soft);
}

.hero h1 {
  color: var(--cream);
  font-size: clamp(2.75rem, 6.5vw + 1rem, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-5);
  max-width: 11ch;
}
.hero-sub {
  font-size: clamp(1.0625rem, 0.5vw + 0.9rem, 1.375rem);
  line-height: 1.5;
  color: rgba(239, 237, 228, 0.85);
  max-width: 540px;
  margin-bottom: var(--space-7);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 320px;
}
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; max-width: none; }
}

.hero-meta {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-5);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-2);
}
@media (max-width: 767px) { .hero-meta { display: none; } }

.hero-meta-item {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(239, 237, 228, 0.6);
}
.hero-meta-rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--cream);
}
.hero-meta-rating svg { width: 14px; height: 14px; fill: #F4C034; }

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-header {
  text-align: left;
  max-width: var(--container-narrow);
  margin: 0 0 var(--space-8);
}
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }

.section-header .eyebrow { margin-bottom: var(--space-4); }
.section-header h2 { margin-bottom: var(--space-4); }
.section-header .lead { margin-bottom: 0; }

/* Big number / dramatic intro */
.dramatic-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: end;
  margin-bottom: var(--space-7);
}
@media (min-width: 900px) {
  .dramatic-intro { grid-template-columns: 1fr 1fr; gap: var(--space-9); }
}

/* =========================================================
   AUTO-SCROLLING MARQUEE / CAROUSEL
   ========================================================= */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: var(--space-3) 0;
}
.marquee--mask {
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: var(--space-4);
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee--reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 70s;
}
.marquee--slow .marquee-track {
  animation-duration: 90s;
}
.marquee--fast .marquee-track {
  animation-duration: 40s;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Photo marquee tile */
.marquee-photo {
  flex: 0 0 280px;
  aspect-ratio: 4/5;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .marquee-photo { flex-basis: 340px; }
}
.marquee-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
  transition: transform 600ms ease;
}
.marquee:hover .marquee-photo img {
  filter: brightness(1);
}
.marquee-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-5) var(--space-4) var(--space-4);
  background: linear-gradient(180deg, transparent 0%, rgba(3, 6, 5, 0.8) 100%);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Text marquee (large words scrolling) */
.text-marquee {
  background: var(--green-darkest);
  color: var(--cream);
  padding: var(--space-6) 0;
  overflow: hidden;
  border-top: 1px solid rgba(239, 237, 228, 0.08);
  border-bottom: 1px solid rgba(239, 237, 228, 0.08);
}
.text-marquee-track {
  display: flex;
  gap: var(--space-7);
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
  align-items: center;
}
.text-marquee-item {
  font-size: clamp(2rem, 4vw + 0.5rem, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: var(--space-7);
}
.text-marquee-item::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-bright);
  margin-left: var(--space-7);
}

/* =========================================================
   PARALLAX BANNER
   ========================================================= */

@media (min-width: 768px) {
  
}






/* =========================================================
   STATS ROW / TICKER
   ========================================================= */
.stats-strip {
  background: var(--green-darkest);
  color: var(--cream);
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(239, 237, 228, 0.08);
  border-bottom: 1px solid rgba(239, 237, 228, 0.08);
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
@media (min-width: 768px) {
  .stats-strip-inner { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  text-align: center;
  padding: 0 var(--space-3);
  position: relative;
}
@media (min-width: 768px) {
  .stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(239, 237, 228, 0.12);
  }
}
.stat-num {
  font-size: clamp(2rem, 2.5vw + 0.5rem, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--cream);
  line-height: 1;
}
.stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-top: var(--space-2);
  display: block;
}

/* =========================================================
   SERVICE CARDS / FEATURE GRID
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--green-darkest);
  border: 1px solid rgba(239, 237, 228, 0.08);
}
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }

.service-tile {
  background: var(--green-darkest);
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-decoration: none;
  color: var(--cream);
  transition: background 300ms ease, transform 300ms ease;
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.service-tile:hover {
  background: var(--green-brand);
}
.service-tile-num {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--green-soft);
}
.service-tile-icon {
  width: 36px;
  height: 36px;
  color: var(--green-soft);
  margin-bottom: var(--space-2);
}
.service-tile-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
.service-tile h3 {
  color: var(--cream);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}
.service-tile p {
  color: rgba(239, 237, 228, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  flex-grow: 1;
}
.service-tile-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: var(--space-3);
}
.service-tile-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform 250ms ease;
}
.service-tile:hover .service-tile-arrow svg {
  transform: translateX(6px);
}

/* =========================================================
   REVIEWS CAROUSEL - dark green, square cards
   ========================================================= */
.reviews-section {
  background: var(--green-darkest);
  color: var(--cream);
  padding: var(--space-10) 0 var(--space-9);
  position: relative;
}

.review-card {
  flex: 0 0 360px;
  background: var(--green-deep);
  border: 1px solid rgba(239, 237, 228, 0.08);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
@media (min-width: 768px) { .review-card { flex-basis: 420px; } }

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.review-source-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.review-meta-text {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-top: 2px;
}
.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: var(--space-3);
}
.review-stars svg { width: 14px; height: 14px; fill: var(--cream); }
.review-body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(239, 237, 228, 0.88);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================================
   PROCESS / NUMBERED STEPS
   ========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-5); } }

.process-step {
  padding-top: var(--space-5);
  border-top: 2px solid var(--green-accent);
  position: relative;
}
.process-step-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--green-accent);
  margin-bottom: var(--space-3);
}
.process-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
  letter-spacing: -0.015em;
}
.process-step p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-on-light-muted);
}
.section--dark .process-step p, .section--green .process-step p {
  color: rgba(239, 237, 228, 0.7);
}

/* =========================================================
   QUOTE FORM / CONTACT
   ========================================================= */
.form-block {
  background: var(--cream);
  padding: var(--space-7);
  border: 1px solid var(--cream-muted);
}
.section--dark .form-block, .section--green .form-block {
  background: var(--bg-card);
  border-color: rgba(239, 237, 228, 0.1);
  color: var(--cream);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) { .form-grid--2col { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-accent);
}
.section--dark .field label, .section--green .field label { color: var(--green-soft); }

.field input, .field textarea, .field select {
  height: 52px;
  padding: 0 var(--space-4);
  border: 1px solid var(--cream-muted);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-on-light);
  border-radius: 2px;
  transition: border-color 200ms ease, background 200ms ease;
}
.field textarea { height: 140px; padding: var(--space-3) var(--space-4); resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--green-mid);
  background: var(--white);
}

.section--dark .field input, .section--dark .field textarea,
.section--green .field input, .section--green .field textarea {
  background: rgba(0,0,0,0.3);
  border-color: rgba(239, 237, 228, 0.15);
  color: var(--cream);
}
.section--dark .field input:focus, .section--green .field input:focus,
.section--dark .field textarea:focus, .section--green .field textarea:focus {
  border-color: var(--green-bright);
}

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-on-light-muted);
}
.field-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--green-brand);
}
.field-checkbox a { color: var(--green-accent); text-decoration: underline; }

.honeypot { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--bg-darker);
  color: rgba(239, 237, 228, 0.7);
  padding: var(--space-10) 0 var(--space-5);
  font-size: 0.875rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-9);
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-8); }
}

.footer-brand-block {
  max-width: 360px;
}
.footer-brand-name {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}
.footer-tag {
  line-height: 1.6;
  margin-bottom: var(--space-5);
}
.footer-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.credential-pill {
  background: rgba(45, 122, 77, 0.15);
  color: var(--green-soft);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(45, 122, 77, 0.25);
  border-radius: 2px;
}

.footer h4 {
  color: var(--cream);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.footer ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer ul li a {
  color: rgba(239, 237, 228, 0.7);
  font-size: 0.9375rem;
  transition: color 200ms ease;
  display: inline-block;
}
.footer ul li a:hover { color: var(--cream); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: 0.9375rem;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--green-soft);
}
.footer-contact-item a { color: rgba(239, 237, 228, 0.85); }
.footer-contact-item a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(239, 237, 228, 0.08);
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(239, 237, 228, 0.5);
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}
.footer-bottom-links a { color: rgba(239, 237, 228, 0.6); }
.footer-bottom-links a:hover { color: var(--cream); }

/* =========================================================
   STICKY DESKTOP CTA + MOBILE BOTTOM BAR
   ========================================================= */
.sticky-cta {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-floating);
  background: var(--green-brand);
  color: var(--cream);
  padding: 16px 24px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--green-mid);
  border-radius: 2px;
  display: none;
  align-items: center;
  gap: var(--space-2);
  transform: translateY(120%);
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1), background 200ms ease;
  box-shadow: var(--shadow-lg);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta:hover { background: var(--green-mid); }
.sticky-cta svg { width: 14px; height: 14px; }

@media (min-width: 1024px) {
  .sticky-cta { display: inline-flex; }
}

/* Mobile bottom bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-floating);
  background: var(--green-darkest);
  display: flex;
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(100%);
  transition: transform 350ms ease;
  border-top: 1px solid rgba(239, 237, 228, 0.1);
}
.mobile-bar.visible { transform: translateY(0); }
.mobile-bar a {
  flex: 1;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
}
.mobile-bar a:first-child {
  border-right: 1px solid rgba(239, 237, 228, 0.1);
}
.mobile-bar a:last-child {
  background: var(--green-brand);
}
.mobile-bar svg { width: 16px; height: 16px; }
@media (min-width: 1024px) { .mobile-bar { display: none; } }

/* WhatsApp FAB */

@media (min-width: 1024px) {
  
}


  50% { transform: scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  z-index: 120;
  background: var(--bg-card);
  color: var(--cream);
  padding: var(--space-5);
  border: 1px solid rgba(239, 237, 228, 0.1);
  max-width: 460px;
  font-size: 0.8125rem;
  line-height: 1.55;
  display: none;
  box-shadow: var(--shadow-xl);
}
.cookie-banner.show { display: block; }
@media (min-width: 768px) {
  .cookie-banner { bottom: var(--space-6); left: var(--space-6); right: auto; }
}
.cookie-banner p { margin-bottom: var(--space-4); }
.cookie-banner a { color: var(--green-soft); text-decoration: underline; }
.cookie-buttons { display: flex; gap: var(--space-2); }
.cookie-buttons button {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(239, 237, 228, 0.25);
  color: var(--cream);
  padding: var(--space-3);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 200ms ease;
}
.cookie-buttons .accept-all {
  background: var(--green-mid);
  border-color: var(--green-mid);
}
.cookie-buttons button:hover { background: rgba(239, 237, 228, 0.08); }
.cookie-buttons .accept-all:hover { background: var(--green-bright); border-color: var(--green-bright); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   UTILITY
   ========================================================= */
.text-balance { text-wrap: balance; }
.no-wrap { white-space: nowrap; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }
.gap-6 { gap: var(--space-6); }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-7 { margin-bottom: var(--space-7); }

/* Body when sticky bar visible */
@media (max-width: 1023px) {
  body.has-mobile-bar { padding-bottom: 64px; }
}

/* =========================================================
   V3 UPDATES
   Ghost-text banners, hero trust icons, fixes
   ========================================================= */

/* Hero trust icons row (under hero CTAs) */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-7);
  max-width: 640px;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(239, 237, 228, 0.15);
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  color: var(--cream);
}
.hero-trust-icon {
  width: 28px;
  height: 28px;
  color: var(--green-soft);
}
.hero-trust-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.hero-trust-text {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.hero-trust-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(239, 237, 228, 0.55);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .hero-trust {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  .hero-trust-item { flex-direction: row; align-items: center; gap: var(--space-3); }
  .hero-trust-icon { flex-shrink: 0; }
}

/* =========================================================
   GHOST-TEXT BANNER SECTIONS
   Background photo + giant LUCAS/ARBORIST text behind content
   ========================================================= */
.ghost-banner {
  position: relative;
  padding: var(--space-10) 0;
  background: var(--green-darkest);
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}
.ghost-banner--photo {
  background: var(--bg-black);
}
.ghost-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ghost-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.7);
}
.ghost-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 36, 21, 0.85) 0%, rgba(3, 6, 5, 0.8) 100%);
}
.ghost-banner-letters {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}
.ghost-banner-letters span {
  font-family: var(--font-sans);
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: rgba(239, 237, 228, 0.04);
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}
.ghost-banner-content {
  position: relative;
  z-index: 3;
}

/* For stats specifically, position the letters at the edges */
.ghost-banner-letters--split {
  justify-content: space-between;
  padding: 0 var(--space-5);
}
.ghost-banner-letters--split span {
  font-size: clamp(10rem, 30vw, 36rem);
  color: rgba(239, 237, 228, 0.05);
}

/* Stats inside ghost banner */
.ghost-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-7);
  align-items: end;
}
@media (min-width: 768px) {
  .ghost-stats { grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
}
.ghost-stat {
  display: flex;
  flex-direction: column;
}
.ghost-stat-num {
  font-size: clamp(3rem, 6vw + 0.5rem, 6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.ghost-stat-num sup {
  font-size: 0.6em;
  color: var(--green-bright);
  font-weight: 700;
  vertical-align: top;
  margin-left: 4px;
}
.ghost-stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(239, 237, 228, 0.7);
  margin-top: var(--space-3);
}

/* =========================================================
   REVIEWS HEADER - star icon, "5 STAR REVIEWS"
   ========================================================= */
.reviews-header-block {
  text-align: center;
  padding-bottom: var(--space-7);
  position: relative;
}
.reviews-header-block .review-stars-big {
  display: inline-flex;
  gap: 6px;
  margin-bottom: var(--space-4);
}
.reviews-header-block .review-stars-big svg {
  width: 24px;
  height: 24px;
  fill: #F4C034;
}
.reviews-header-block .eyebrow {
  margin-bottom: var(--space-4);
  display: block;
}
.reviews-header-block h2 {
  color: var(--cream);
  font-size: clamp(2.5rem, 5vw + 0.5rem, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  max-width: 16ch;
  margin: 0 auto;
}

/* =========================================================
   FINAL CTA WITH PHOTO BACKGROUND
   ========================================================= */
.cta-photo {
  position: relative;
  padding: var(--space-10) 0;
  background: var(--bg-black);
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
  text-align: center;
}
.cta-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}
.cta-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 36, 21, 0.7) 0%, rgba(3, 6, 5, 0.85) 100%);
}
.cta-photo-letters {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-size: clamp(8rem, 22vw, 24rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(239, 237, 228, 0.05);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}
.cta-photo-content {
  position: relative;
  z-index: 3;
}
.cta-photo h2 {
  color: var(--cream);
  font-size: clamp(2.25rem, 5vw + 1rem, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin-bottom: var(--space-5);
}
.cta-photo p {
  color: rgba(239, 237, 228, 0.85);
  font-size: clamp(1.0625rem, 0.5vw + 0.875rem, 1.25rem);
  max-width: 560px;
  margin: 0 auto var(--space-7);
}

/* =========================================================
   FOOTER FIXES - spacing
   ========================================================= */
.site-footer h4 {
  margin-bottom: var(--space-5);
}
.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.site-footer ul li {
  line-height: 1.4;
}
.site-footer ul li a {
  padding: 4px 0;
  display: inline-block;
}
.footer-contact-item {
  margin-bottom: var(--space-4);
  align-items: flex-start;
}
.footer-contact-item div {
  line-height: 1.5;
}

/* =========================================================
   ENSURE DARK SECTIONS HAVE WHITE TEXT
   ========================================================= */
.section--dark, .section--green, .section--green-deep, .section--green-brand,
.ghost-banner, .cta-photo {
  color: var(--cream);
}
.section--dark p, .section--green p, .section--green-deep p, .section--green-brand p,
.ghost-banner p, .cta-photo p,
.section--dark .lead, .section--green .lead, .section--green-deep .lead, .section--green-brand .lead,
.ghost-banner .lead, .cta-photo .lead {
  color: rgba(239, 237, 228, 0.85);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4, .section--dark h5,
.section--green h1, .section--green h2, .section--green h3, .section--green h4, .section--green h5,
.section--green-deep h1, .section--green-deep h2, .section--green-deep h3, .section--green-deep h4, .section--green-deep h5,
.section--green-brand h1, .section--green-brand h2, .section--green-brand h3, .section--green-brand h4, .section--green-brand h5,
.ghost-banner h1, .ghost-banner h2, .ghost-banner h3, .ghost-banner h4, .ghost-banner h5,
.cta-photo h1, .cta-photo h2, .cta-photo h3, .cta-photo h4, .cta-photo h5 {
  color: var(--cream);
}

/* =========================================================
   AREAS PAGE - map and coverage banner
   ========================================================= */
.areas-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: var(--green-darkest);
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
  padding: var(--space-9) 0;
}
.areas-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.areas-banner-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.4;
  filter: saturate(0.7);
}
.areas-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(11, 36, 21, 0.85) 0%, rgba(3, 6, 5, 0.7) 100%);
}
.areas-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.areas-banner h1 {
  color: var(--cream);
  font-size: clamp(2.25rem, 5vw + 0.5rem, 4.5rem);
  margin-bottom: var(--space-5);
}
.areas-map-iframe-wrap {
  position: relative;
  width: 100%;
  background: var(--bg-darker);
  border: 1px solid rgba(239, 237, 228, 0.1);
  overflow: hidden;
}
.areas-map-iframe-wrap iframe {
  width: 100%;
  height: 460px;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg) brightness(0.95);
}

/* =========================================================
   SERVICE PAGE UNIQUE SECTIONS
   Each service gets a custom block - styles for all
   ========================================================= */

/* Pruning - what crown work looks like diagram */
.crown-diagram {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-7);
}
@media (min-width: 768px) { .crown-diagram { grid-template-columns: repeat(4, 1fr); } }
.crown-step {
  background: var(--white);
  border-left: 4px solid var(--green-mid);
  padding: var(--space-5);
}
.crown-step-svg {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: var(--space-4);
}
.crown-step h4 {
  font-size: 1.0625rem;
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
.crown-step p {
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
  line-height: 1.55;
}

/* Tree removal - TPO timeline */
.tpo-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
  position: relative;
}
@media (min-width: 768px) {
  .tpo-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}
.tpo-step {
  background: var(--cream);
  padding: var(--space-5);
  border-top: 3px solid var(--green-accent);
  position: relative;
}
.tpo-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--green-accent);
  z-index: 2;
  display: none;
}
@media (min-width: 768px) {
  .tpo-step:not(:last-child)::after { display: block; }
}
.tpo-step-day {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--green-accent);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.tpo-step h4 {
  font-size: 1rem;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}
.tpo-step p {
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
  line-height: 1.55;
}

/* Stump grinding price matrix */
.price-matrix {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-6);
  background: var(--white);
}
.price-matrix th, .price-matrix td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  border-bottom: 1px solid var(--cream-muted);
  font-size: 0.9375rem;
}
.price-matrix th {
  background: var(--green-darkest);
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.price-matrix td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--green-brand);
  font-size: 1.125rem;
}
.price-matrix tr:last-child td { border-bottom: 0; }

/* Health assessments - symptoms checklist */
.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (min-width: 640px) { .symptoms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .symptoms-grid { grid-template-columns: repeat(3, 1fr); } }
.symptom-card {
  background: var(--white);
  padding: var(--space-5);
  border-left: 3px solid var(--accent-emergency);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.symptom-card-icon {
  width: 32px; height: 32px;
  color: var(--accent-emergency);
}
.symptom-card-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.symptom-card h4 {
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.symptom-card p {
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
  line-height: 1.55;
}

/* Emergency - call panel */
.emergency-panel {
  background: var(--accent-emergency);
  color: var(--white);
  padding: var(--space-7);
  text-align: center;
  border: 4px solid var(--accent-emergency);
  margin: var(--space-7) 0;
}
.emergency-panel h3 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}
.emergency-panel p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto var(--space-5);
}
.emergency-panel .btn--cream {
  background: var(--white);
  color: var(--accent-emergency);
  border-color: var(--white);
}
.emergency-panel .btn--cream:hover {
  background: transparent;
  color: var(--white);
}

/* Maintenance - annual cycle calendar */
.cycle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
@media (min-width: 768px) { .cycle-grid { grid-template-columns: repeat(4, 1fr); } }
.cycle-card {
  background: var(--white);
  padding: var(--space-5);
  border-top: 3px solid var(--green-mid);
}
.cycle-card-season {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--green-accent);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.cycle-card h4 {
  font-size: 1.125rem;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-3);
}
.cycle-card ul {
  list-style: none;
  padding: 0;
}
.cycle-card ul li {
  padding: 6px 0;
  font-size: 0.8125rem;
  color: var(--text-on-light-muted);
  border-bottom: 1px solid var(--cream-muted);
}
.cycle-card ul li:last-child { border-bottom: 0; }

/* Firewood - moisture explainer */
.moisture-explainer {
  background: var(--white);
  padding: var(--space-7);
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 768px) { .moisture-explainer { grid-template-columns: 1fr 1fr; } }
.moisture-bar {
  height: 56px;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-5);
}
.moisture-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #4D9D6E 0%, #2D7A4D 100%);
  display: flex;
  align-items: center;
  padding-left: var(--space-4);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
.moisture-bar-label {
  position: absolute;
  right: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-on-light);
  z-index: 2;
}
.moisture-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.moisture-side {
  padding: var(--space-4);
  text-align: center;
  background: var(--cream);
}
.moisture-side strong { display: block; font-size: 1.5rem; margin-bottom: 4px; }
.moisture-side.good { background: rgba(45, 122, 77, 0.08); border: 1px solid rgba(45, 122, 77, 0.2); }
.moisture-side.bad { background: rgba(201, 68, 47, 0.06); border: 1px solid rgba(201, 68, 47, 0.2); }

/* Logs - delivery zones */
.delivery-zones {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (min-width: 768px) { .delivery-zones { grid-template-columns: repeat(3, 1fr); } }
.zone-card {
  background: var(--white);
  padding: var(--space-5);
  border-left: 3px solid var(--green-mid);
}
.zone-card-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: var(--space-3);
  display: block;
}
.zone-card h4 {
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}
.zone-card-towns {
  font-size: 0.875rem;
  color: var(--text-on-light-muted);
  line-height: 1.5;
}
.zone-card-price {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--cream-muted);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green-brand);
}

/* Service detail page hero - varies per service */
.service-hero {
  position: relative;
  min-height: 70vh;
  min-height: 70svh;
  display: flex;
  align-items: center;
  background: var(--bg-black);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.service-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.service-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(3, 6, 5, 0.5) 0%, rgba(3, 6, 5, 0.85) 100%);
}
.service-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--space-9) 0;
}
.service-hero h1 {
  color: var(--cream);
  font-size: clamp(2.5rem, 6vw + 0.5rem, 5.5rem);
  margin-bottom: var(--space-5);
}
.service-hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--green-soft);
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(127, 184, 147, 0.4);
}

/* About page - team values cards */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
.value-card {
  background: var(--white);
  padding: var(--space-6);
  border-left: 3px solid var(--green-brand);
}
.value-card-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green-accent);
  margin-bottom: var(--space-3);
  display: block;
}
.value-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}
.value-card p {
  color: var(--text-on-light-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Reviews page - full grid */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-7);
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* Contact page - 4 lane grid */
.contact-lanes {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-7);
}
@media (min-width: 768px) { .contact-lanes { grid-template-columns: repeat(2, 1fr); } }
.contact-lane {
  background: var(--white);
  padding: var(--space-6);
  border: 1px solid var(--cream-muted);
  display: flex;
  flex-direction: column;
}
.contact-lane.urgent {
  background: rgba(201, 68, 47, 0.05);
  border-color: rgba(201, 68, 47, 0.3);
}
.contact-lane h3 {
  font-size: 1.375rem;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-3);
}
.contact-lane p {
  color: var(--text-on-light-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-5);
  flex-grow: 1;
}

/* Legal pages */
.prose-page {
  max-width: 760px;
  margin: 0 auto;
}
.prose-page h2 {
  font-size: 1.875rem;
  margin: var(--space-7) 0 var(--space-4);
  letter-spacing: -0.02em;
}
.prose-page h3 {
  font-size: 1.25rem;
  margin: var(--space-5) 0 var(--space-3);
}
.prose-page p, .prose-page li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-on-light);
  margin-bottom: var(--space-4);
}
.prose-page ul { padding-left: var(--space-5); list-style: disc; margin-bottom: var(--space-5); }
.prose-page strong { color: var(--green-darkest); }
.prose-page a { color: var(--green-accent); text-decoration: underline; }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: var(--space-5);
}
.breadcrumb a { color: var(--green-soft); }
.breadcrumb a:hover { color: var(--cream); }
.breadcrumb span { color: var(--cream); }


/* =========================================================
   V5 — HEADER, BREADCRUMB, MARQUEE FIXES
   ========================================================= */

/* Header: bigger logo, more breathing room, bigger nav text */
.site-header { padding: var(--space-5) 0; }
.site-header.scrolled { padding: var(--space-4) 0; }

.logo-mark {
  width: 64px;
  height: 64px;
  padding: 4px;
}
.site-header.scrolled .logo-mark {
  width: 56px;
  height: 56px;
}

.logo-wordmark {
  font-size: 1.0625rem;
  letter-spacing: 0.05em;
}
.logo-wordmark-sub {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  margin-top: 5px;
}

.main-nav { gap: var(--space-7); }
.nav-link { font-size: 0.875rem; letter-spacing: 0.1em; }
.header-phone { font-size: 0.875rem; padding: 10px 16px; }

@media (max-width: 1023px) {
  .logo-mark { width: 52px; height: 52px; }
}

/* Hide breadcrumbs site-wide */
.breadcrumb { display: none !important; }

/* Hide text marquees site-wide. Photo marquees are unaffected. */
.text-marquee,
.marquee--text,
section.text-marquee { display: none !important; }

/* Hide the gimmicky "SERVICE 01 / 08" eyebrow pill from service hero */
.service-hero-eyebrow { display: none !important; }

/* Hide the "Jump to" anchor index on the services hub */
.services-index { display: none !important; }
section:has(> .container-wide > .services-index) { display: none !important; }

/* Service hero: tighter top padding now that breadcrumb + eyebrow are gone */
.service-hero-content { padding: var(--space-8) 0 var(--space-9); }
.service-hero { min-height: 64vh; min-height: 64svh; }

/* Tighten hero vertical rhythm site-wide */
.hero-eyebrow { margin-bottom: var(--space-4); }
.hero h1 { margin-bottom: var(--space-5); }
.hero-sub { margin-bottom: var(--space-6); }


/* =========================================================
   V5 FOLLOWUP — hero spacing
   The header is now bigger (logo 64px, padding bumped), so hero content
   needs more top room to clear it. Header takes ~120px now.
   ========================================================= */
.hero-content {
  padding-top: var(--space-11);  /* 160px clears the larger fixed header */
}
.service-hero-content {
  padding-top: var(--space-11);
}
@media (max-width: 767px) {
  .hero-content { padding-top: var(--space-10); }   /* 128px on mobile */
  .service-hero-content { padding-top: var(--space-10); }
}
/* Tighter wrap on long H1s — stops "in Kent." dangling on its own line */
.hero h1, .service-hero h1 { max-width: 18ch; }


/* =========================================================
   V6 — HEADER, BANNERS, HERO TOP BAND, FAB
   ========================================================= */

/* Header up another ~20%. */
.site-header { padding: var(--space-6) 0; }
.site-header.scrolled { padding: var(--space-5) 0; }
.logo-mark { width: 76px; height: 76px; padding: 5px; }
.site-header.scrolled .logo-mark { width: 64px; height: 64px; }
.logo-wordmark { font-size: 1.125rem; }
.logo-wordmark-sub { font-size: 0.75rem; }
.nav-link { font-size: 0.9375rem; }
.header-phone { font-size: 0.9375rem; padding: 12px 18px; }
@media (max-width: 1023px) {
  .logo-mark { width: 60px; height: 60px; }
  .site-header { padding: var(--space-5) 0; }
}



/* Push hero content down further now that header is larger again. */
.hero-content { padding-top: var(--space-12); }   /* 200px desktop */
.service-hero-content { padding-top: var(--space-12); }
@media (max-width: 767px) {
  .hero-content { padding-top: var(--space-11); }   /* 160px mobile */
  .service-hero-content { padding-top: var(--space-11); }
}

/* =========================================================
   NEW STATIC BANNER (replaces parallax-banner)
   Pic 12 reference: short eyebrow + short heading + body + 1 button, centred
   ========================================================= */
.banner-static {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: var(--space-9) 0;
}
@media (min-width: 768px) {
  .banner-static { min-height: 520px; padding: var(--space-10) 0; }
}
.banner-static-bg {
  position: absolute;
  inset: 0;                       /* No -15% offset → no colour-strip-at-scroll */
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.banner-static-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 36, 21, 0.75) 0%, rgba(3, 6, 5, 0.85) 100%);
}
.banner-ghost-letters {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-family: var(--font-sans);
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: rgba(239, 237, 228, 0.04);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}
.banner-static-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  color: var(--cream);
}
.banner-static-content .eyebrow {
  display: block;
  margin-bottom: var(--space-5);
}
.banner-static h2 {
  color: var(--cream);
  font-size: clamp(2.25rem, 4.5vw + 0.75rem, 4.25rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.0;
  max-width: 18ch;
  margin: 0 auto var(--space-5);
}
.banner-static-body {
  color: rgba(239, 237, 228, 0.85);
  font-size: clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto var(--space-6);
}

/* Hide the OLD parallax-banner entirely if any remain — belt-and-braces */


/* WhatsApp FAB — sit lower-left of the sticky CTA on desktop, with comfortable gap */

@media (min-width: 1024px) {
  
}

/* Belt-and-braces: re-assert v5 hides in case anything regresses. */
.breadcrumb { display: none !important; }
.text-marquee { display: none !important; }
.service-hero-eyebrow { display: none !important; }
.services-index { display: none !important; }

/* Header phone CTA — stop the number from wrapping to two lines */
.header-phone {
  white-space: nowrap;
  flex-shrink: 0;
}
/* Slightly tighter nav gap so phone always fits on one line */
.main-nav { gap: var(--space-6); }





/* =========================================================
   PROJECT GRID — recent projects section on service pages
   ========================================================= */
.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-7);
}
@media (min-width: 700px)  { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .project-grid { grid-template-columns: repeat(4, 1fr); } }

.project-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--cream-muted);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(11, 36, 21, 0.12);
}
.project-card-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--green-darkest);
}
.project-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.project-card:hover .project-card-photo img {
  transform: scale(1.04);
}
.project-card-body {
  padding: var(--space-4) var(--space-5) var(--space-5);
}
.project-card-loc {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-accent);
  display: block;
  margin-bottom: var(--space-2);
}
.project-card h4 {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--text-on-light);
  margin-bottom: var(--space-2);
  line-height: 1.25;
}
.project-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-on-light-muted);
  margin: 0;
}


/* =========================================================
   V8 FOLLOWUP — lag fixes
   ========================================================= */
/* The hidden text marquees no longer need to animate */
.text-marquee, .text-marquee-track { animation: none !important; }
/* Remove smooth scroll — was causing jankiness on long pages */
html { scroll-behavior: auto; }




/* =========================================================
   V11 — Static photo hero (no more iframe, no more letterbox)
   ========================================================= */
.hero {
  background: var(--bg-black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Keep the keep the white/cream eyebrow rule */
.hero-eyebrow,
.hero-eyebrow::before { color: var(--cream) !important; }
.hero-eyebrow::before { background: var(--cream) !important; }
/* Subtle additional dark layer for text contrast on the photo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
  pointer-events: none;
}


/* =========================================================
   V12 — Mobile eyebrow no-wrap fix
   "FAMILY RUN · NPTC QUALIFIED · FULLY INSURED" was wrapping on small screens.
   Reduce letter-spacing + font-size + scale eyebrow on mobile.
   ========================================================= */
@media (max-width: 600px) {
  .hero-eyebrow {
    font-size: 0.5625rem;      /* 9px on mobile */
    letter-spacing: 0.15em;    /* much tighter */
    white-space: nowrap;
    max-width: calc(100vw - 32px);
  }
  .hero-eyebrow::before {
    width: 16px;
    flex-shrink: 0;
  }
}
/* On the very smallest screens (≤375px), hide the leading line so eyebrow can fit */
@media (max-width: 400px) {
  .hero-eyebrow::before { display: none; }
  .hero-eyebrow { gap: 0; }
}


/* =========================================================
   V12 — ALT BLOCKS replacing review banners on service pages
   ========================================================= */
.alt-block {
  background: var(--green-darkest);
  color: var(--cream);
  padding: var(--space-10) 0;
  position: relative;
  isolation: isolate;
}
.alt-block-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.alt-block-inner .eyebrow {
  display: block;
  margin-bottom: var(--space-5);
}
.alt-block h2 {
  color: var(--cream);
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 auto var(--space-5);
  max-width: 22ch;
}
.alt-block-sub {
  color: rgba(239, 237, 228, 0.75);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto var(--space-7);
}

/* Big quote (stump grinding) */
.big-quote {
  position: relative;
  padding: var(--space-6) var(--space-5);
  max-width: 760px;
  margin: 0 auto;
  border: none;
}
.big-quote-mark {
  width: 56px;
  height: 56px;
  fill: var(--green-soft);
  opacity: 0.4;
  margin: 0 auto var(--space-4);
  display: block;
}
.big-quote p {
  font-size: clamp(1.25rem, 1.5vw + 0.75rem, 1.875rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--cream);
  letter-spacing: -0.015em;
  font-style: italic;
  margin: 0 0 var(--space-5);
}
.big-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-soft);
}

/* Insurer strip / delivery zones — chip-style row */
.insurer-strip, .delivery-zones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.insurer-strip span, .delivery-zones span {
  padding: 10px 18px;
  border: 1px solid rgba(239, 237, 228, 0.22);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--cream);
  background: rgba(239, 237, 228, 0.04);
}

/* Client list (maintenance) */
.client-list {
  list-style: none;
  padding: 0;
  margin: var(--space-6) auto 0;
  max-width: 720px;
  text-align: left;
}
.client-list li {
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(239, 237, 228, 0.1);
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.55;
}
.client-list li:last-child { border-bottom: none; }
.client-list strong {
  color: var(--green-soft);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

/* Wood mix grid (firewood) */
.wood-mix-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 700px) { .wood-mix-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .wood-mix-grid { grid-template-columns: repeat(4, 1fr); } }

.wood-mix-card {
  background: rgba(239, 237, 228, 0.04);
  border: 1px solid rgba(239, 237, 228, 0.1);
  padding: var(--space-5);
  text-align: center;
}
.wood-mix-pct {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--green-soft);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.wood-mix-card h4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--cream);
  margin: 0 0 var(--space-2);
}
.wood-mix-card p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(239, 237, 228, 0.7);
  margin: 0;
}


/* ============ V7 FINAL BUILD: hero video, before/after, video feature ============ */
.hero-bg--video { overflow: hidden; background: var(--bg-black); }
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  width: max(100vw, 177.78vh);
  height: max(100svh, 56.25vw);
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
.hero-overlay.hero-overlay--video {
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 72%, rgba(0,0,0,0.42) 100%);
}

.ba-section { }
.ba-header { max-width: 720px; margin-bottom: var(--space-6); }
.ba-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--green-accent, #2F6B3F);
  margin-bottom: var(--space-3);
}
.ba-header h2 { margin-bottom: var(--space-3); }
.ba-sub { color: var(--text-on-light-muted, #4a5a4f); max-width: 60ch; }
.ba-row { margin-bottom: var(--space-6); }
.ba-row:last-child { margin-bottom: 0; }
.ba-row-label {
  display: block;
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-deep, #15422A);
  margin-bottom: var(--space-3);
}
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.ba-item { position: relative; margin: 0; overflow: hidden; background: var(--green-deep, #15422A); }
.ba-item img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.ba-pill {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 14px;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.ba-pill--before { background: rgba(8, 20, 13, 0.82); color: var(--cream, #EFEDE4); }
.ba-pill--after { background: var(--green-bright, #2F8C4C); color: #fff; }
@media (max-width: 700px) {
  .ba-grid { grid-template-columns: 1fr; }
}

.video-feature .video-frame {
  max-width: 980px; margin: 0 auto;
  border: 1px solid rgba(239, 237, 228, 0.14);
}
.video-feature .vf-header { text-align: center; max-width: 680px; margin: 0 auto var(--space-6); }
.video-feature .vf-header h2 { color: var(--cream, #EFEDE4); margin-bottom: var(--space-3); }
.video-feature .vf-header p { color: rgba(239, 237, 228, 0.72); }
.video-feature .ba-eyebrow { color: var(--green-soft, #8FBF9F); }


/* ============ V8: components, footer, logo, mobile ============ */

/* Just the stump, nothing round it */
.logo-mark { background: transparent !important; padding: 0 !important; border-radius: 0 !important; box-shadow: none !important; border: none !important; }

/* Footer: white headings + logo */
.site-footer h4 { color: #ffffff !important; }
.footer-logo { width: 92px; height: auto; display: block; margin-bottom: var(--space-4); }

/* Generic section header */
.sec-head { max-width: 740px; margin-bottom: var(--space-6); }
.sec-head .eyebrow { display: inline-block; margin-bottom: var(--space-3); }
.sec-head h2 { margin-bottom: var(--space-3); }
.sec-head p { color: var(--text-on-light-muted); max-width: 62ch; }
.section--dark .sec-head h2, .section--cream-deep.is-dark .sec-head h2 { color: var(--cream); }

/* Numbered process steps */
.steps-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); counter-reset: step; }
.step-item { background: #fff; border: 1px solid var(--cream-muted, #ddd8ca); padding: var(--space-5); position: relative; counter-increment: step; }
.step-item::before { content: counter(step, decimal-leading-zero); display: block; font-size: 0.8rem; font-weight: 900; letter-spacing: 0.2em; color: var(--green-accent, #2F6B3F); margin-bottom: var(--space-3); }
.step-item h4 { font-size: 1.05rem; margin-bottom: var(--space-2); }
.step-item p { font-size: 0.9375rem; color: var(--text-on-light-muted); margin: 0; }
.steps-flow--red .step-item::before { color: var(--accent-emergency, #C03A2B); }

/* Checklist grid */
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.check-card { background: #fff; border: 1px solid var(--cream-muted, #ddd8ca); padding: var(--space-5); }
.check-card .check-ic { width: 38px; height: 38px; display: grid; place-items: center; background: var(--green-deep, #15422A); margin-bottom: var(--space-3); }
.check-card .check-ic svg { width: 20px; height: 20px; stroke: var(--cream, #EFEDE4); }
.check-grid--red .check-card .check-ic { background: var(--accent-emergency, #C03A2B); }
.check-card h4 { font-size: 1.02rem; margin-bottom: var(--space-2); }
.check-card p { font-size: 0.9375rem; color: var(--text-on-light-muted); margin: 0; }

/* Season grid */
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.season-card { background: var(--green-deep, #15422A); color: var(--cream, #EFEDE4); padding: var(--space-5); }
.season-card .season-tag { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.26em; text-transform: uppercase; color: var(--green-soft, #8FBF9F); display: block; margin-bottom: var(--space-3); }
.season-card h4 { color: var(--cream, #EFEDE4); font-size: 1.05rem; margin-bottom: var(--space-2); }
.season-card ul { list-style: none; padding: 0; margin: 0; }
.season-card li { font-size: 0.9rem; color: rgba(239,237,228,0.78); padding: 5px 0; border-bottom: 1px solid rgba(239,237,228,0.1); }
.season-card li:last-child { border-bottom: none; }

/* Comparison cards */
.compare-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.compare-card { border: 1px solid var(--cream-muted, #ddd8ca); background: #fff; padding: var(--space-5); }
.compare-card--ours { background: var(--green-deep, #15422A); border-color: var(--green-deep, #15422A); }
.compare-card--ours h4, .compare-card--ours li { color: var(--cream, #EFEDE4); }
.compare-card h4 { font-size: 1.05rem; margin-bottom: var(--space-3); }
.compare-card .compare-tag { display: inline-block; font-size: 0.66rem; font-weight: 900; letter-spacing: 0.22em; text-transform: uppercase; padding: 4px 10px; margin-bottom: var(--space-3); background: var(--green-bright, #2F8C4C); color: #fff; }
.compare-card ul { list-style: none; padding: 0; margin: 0; }
.compare-card li { font-size: 0.92rem; padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.07); color: var(--text-on-light-muted); }
.compare-card--ours li { border-bottom-color: rgba(239,237,228,0.12); }
.compare-card li:last-child { border-bottom: none; }

/* FAQ accordion (shared) */
.faqs { max-width: 860px; }
.faqs details { background: #fff; border: 1px solid var(--cream-muted, #ddd8ca); margin-bottom: var(--space-3); }
.faqs summary { cursor: pointer; list-style: none; padding: var(--space-4) var(--space-5); font-weight: 700; font-size: 1.02rem; position: relative; padding-right: 56px; }
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary::after { content: '+'; position: absolute; right: var(--space-5); top: 50%; transform: translateY(-50%); font-size: 1.4rem; font-weight: 400; color: var(--green-accent, #2F6B3F); }
.faqs details[open] summary::after { content: '\2212'; }
.faqs details p { padding: 0 var(--space-5) var(--space-4); margin: 0; color: var(--text-on-light-muted); font-size: 0.96rem; }

/* Do / Don't */
.do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.dd-col { padding: var(--space-5); background: #fff; border-top: 4px solid var(--green-bright, #2F8C4C); border-right: 1px solid var(--cream-muted, #ddd8ca); border-bottom: 1px solid var(--cream-muted, #ddd8ca); border-left: 1px solid var(--cream-muted, #ddd8ca); }
.dd-col--dont { border-top-color: var(--accent-emergency, #C03A2B); }
.dd-col h4 { font-size: 1.02rem; margin-bottom: var(--space-3); letter-spacing: 0.08em; text-transform: uppercase; }
.dd-col ul { list-style: none; padding: 0; margin: 0; }
.dd-col li { padding: 8px 0 8px 26px; position: relative; font-size: 0.95rem; color: var(--text-on-light-muted); border-bottom: 1px solid rgba(0,0,0,0.06); }
.dd-col li:last-child { border-bottom: none; }
.dd-col li::before { content: ''; position: absolute; left: 0; top: 13px; width: 14px; height: 14px; background-color: var(--green-bright, #2F8C4C); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat; }
.dd-col--dont li::before { background-color: var(--accent-emergency, #C03A2B); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round'%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round'%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3C/svg%3E"); }

/* Report contents strip */
.report-strip { background: var(--green-deep, #15422A); padding: var(--space-6); display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: center; }
.report-strip h3 { color: var(--cream, #EFEDE4); margin-bottom: var(--space-3); }
.report-strip p { color: rgba(239,237,228,0.75); margin: 0; }
.report-strip ul { list-style: none; padding: 0; margin: 0; }
.report-strip li { color: var(--cream, #EFEDE4); font-size: 0.96rem; padding: 9px 0 9px 28px; position: relative; border-bottom: 1px solid rgba(239,237,228,0.12); }
.report-strip li:last-child { border-bottom: none; }
.report-strip li::before { content: ''; position: absolute; left: 0; top: 14px; width: 14px; height: 14px; background-color: var(--green-soft, #8FBF9F); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat; }

/* Portrait video split */
.video-split { display: grid; grid-template-columns: 380px 1fr; gap: var(--space-7); align-items: center; }
.video-split .vp-frame { position: relative; padding-top: 177.78%; background: #000; border: 1px solid rgba(239,237,228,0.14); }
.video-split .vp-frame iframe { border: 0; position: absolute; top: 0; left: 0; height: 100%; width: 100%; }
.video-split .vp-text h2 { color: var(--cream, #EFEDE4); margin-bottom: var(--space-4); }
.video-split .vp-text p { color: rgba(239,237,228,0.74); margin-bottom: var(--space-4); max-width: 56ch; }

/* Contact form selects to match inputs */
.field select { width: 100%; appearance: none; -webkit-appearance: none; background-color: #fff; border: 1px solid var(--cream-muted, #ddd8ca); padding: 14px 44px 14px 16px; font: inherit; color: inherit; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315422A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; }
.emergency-note { display: flex; gap: var(--space-3); align-items: flex-start; background: #fff; border-left: 4px solid var(--accent-emergency, #C03A2B); padding: var(--space-4) var(--space-5); margin-bottom: var(--space-5); }
.emergency-note svg { flex: 0 0 22px; width: 22px; height: 22px; stroke: var(--accent-emergency, #C03A2B); margin-top: 2px; }
.emergency-note p { margin: 0; font-size: 0.95rem; }
.emergency-note a { font-weight: 800; color: var(--accent-emergency, #C03A2B); }

/* About story balance */
.dramatic-intro { align-items: center; }
.story-photo { margin-top: var(--space-5); }
.story-photo img { width: 100%; max-width: 420px; aspect-ratio: 4 / 5; object-fit: cover; display: block; }

/* ===== Mobile ===== */
@media (max-width: 980px) {
  .steps-flow { grid-template-columns: 1fr 1fr; }
  .season-grid { grid-template-columns: 1fr 1fr; }
  .check-grid { grid-template-columns: 1fr 1fr; }
  .compare-cards { grid-template-columns: 1fr; }
  .video-split { grid-template-columns: 1fr; gap: var(--space-5); }
  .video-split .vp-frame { max-width: 340px; margin: 0 auto; width: 100%; }
  .report-strip { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .steps-flow { grid-template-columns: 1fr; }
  .season-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .do-dont { grid-template-columns: 1fr; }
  .footer-logo { width: 76px; }
  .faqs summary { font-size: 0.96rem; padding: var(--space-4); padding-right: 48px; }
}

/* V8.1: long CTA buttons must never overflow small screens */
@media (max-width: 640px) {
  .btn--lg { padding: 18px 22px; max-width: 100%; white-space: normal; text-align: center; line-height: 1.35; }
  .emergency-panel .btn { width: 100%; }
}

/* V8.2: no button or grid column may ever exceed small viewports */
@media (max-width: 640px) {
  .btn { white-space: normal; max-width: 100%; text-align: center; line-height: 1.35; }
  .service-editorial > * { min-width: 0; }
  .contact-lane { min-width: 0; }
}


/* ============ V9 FINAL POLISH ============ */

/* Mobile menu: collapsible Services */
.mm-services { border: none; }
.mm-services summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  font: inherit; color: inherit;
  padding: inherit;
}
.mm-services summary::-webkit-details-marker { display: none; }
.mm-services summary svg { width: 20px; height: 20px; transition: transform 250ms ease; flex: 0 0 20px; }
.mm-services[open] summary svg { transform: rotate(180deg); }
.mobile-menu-nav .mm-services summary {
  padding: 14px 0;
}
.mm-services .mobile-menu-services-group { display: flex; flex-direction: column; }

/* Mobile hero: video band on top, content below. No cropping, no black bars. */
@media (max-width: 700px) {
  .hero--video, .hero:has(.hero-bg--video) {
    min-height: 0;
    display: block;
    background: var(--bg-black);
  }
  .hero-bg--video {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }
  .hero-bg--video .hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    min-height: 0;
    transform: none;
  }
  .hero--video .hero-overlay--video, .hero:has(.hero-bg--video) .hero-overlay--video { display: none; }
  .hero--video .hero-content, .hero:has(.hero-bg--video) .hero-content {
    position: relative;
    padding-top: var(--space-6);
  }
}

/* V9.1: contrast fixes. Green card text must be cream; zone tags must not inherit the blanket span rule. */
.compare-card.compare-card--ours h4,
.compare-card.compare-card--ours li { color: var(--cream); }
.delivery-zones .zone-card .zone-card-tag { color: var(--green-accent); }

/* V9.2: Services summary matches top level menu items */
.mobile-menu-nav .mm-services summary {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(239, 237, 228, 0.08);
  letter-spacing: -0.01em;
}
.mm-services[open] summary { border-bottom-color: transparent; }
.mm-services summary svg { width: 22px; height: 22px; }
