/* ================================================================
   CLEARHAUL — MAIN STYLESHEET
   Stack: pure CSS3, custom properties, mobile-first
   Fonts: Plus Jakarta Sans (headings) + Inter (body) via Google
   ================================================================ */

/* ----------------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* Brand — forest green */
  --clr-green-950: #071a0f;
  --clr-green-900: #0d2b1a;
  --clr-green-800: #1c4a2e;
  --clr-green-700: #27623d;
  --clr-green-600: #2d7a4f;
  --clr-green-200: #a3cdb4;
  --clr-green-100: #d5eadd;
  --clr-green-50:  #eef7f1;

  /* Accent — warm amber */
  --clr-amber:       #e8923b;
  --clr-amber-dark:  #c97828;
  --clr-amber-hover: #d4822e;
  --clr-amber-light: #fef3e8;

  /* Neutrals */
  --clr-gray-900: #111827;
  --clr-gray-800: #1f2937;
  --clr-gray-700: #374151;
  --clr-gray-600: #4b5563;
  --clr-gray-400: #9ca3af;
  --clr-gray-300: #d1d5db;
  --clr-gray-200: #e5e7eb;
  --clr-gray-100: #f3f4f6;
  --clr-gray-50:  #f9fafb;
  --clr-white:    #ffffff;
  --clr-off-white:#fafaf8;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Type scale (fluid) */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  clamp(2.8rem, 6vw, 4.5rem);

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   26px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:    0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:    0 10px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
  --shadow-xl:    0 20px 60px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.06);
  --shadow-hover: 0 16px 48px rgba(0,0,0,.14), 0 6px 16px rgba(0,0,0,.07);

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:  150ms var(--ease-smooth);
  --t-med:   280ms var(--ease-out);
  --t-slow:  500ms var(--ease-out);

  /* Layout */
  --max-w:        1200px;
  --container-px: clamp(1.25rem, 5vw, 2.5rem);
  --section-py:   clamp(4rem, 8vw, 7rem);
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--clr-gray-800);
  background-color: var(--clr-off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Extra bottom padding on mobile for the sticky CTA bar */
  padding-bottom: 68px;
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

img, svg { display: block; max-width: 100%; }

/* Ensure [hidden] always wins even when a display rule exists on the same element */
[hidden] { display: none !important; }

a { color: inherit; text-decoration: none; }

ul[role="list"] { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

/* ----------------------------------------------------------------
   2b. KEYFRAMES
   ---------------------------------------------------------------- */
@keyframes hha-twinkle {
  0%   { opacity: 0.12; transform: scale(0.75); }
  100% { opacity: 0.65; transform: scale(1.25); }
}

/* ----------------------------------------------------------------
   3. ACCESSIBILITY
   ---------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  z-index: 9999;
  padding: var(--sp-3) var(--sp-6);
  background: var(--clr-green-800);
  color: var(--clr-white);
  border-radius: var(--r-md);
  font-weight: 600;
  transition: top var(--t-fast);
}

.skip-link:focus {
  top: var(--sp-4);
}

:focus-visible {
  outline: 2.5px solid var(--clr-amber);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ----------------------------------------------------------------
   4. TYPOGRAPHY
   ---------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--clr-gray-900);
}

h1 { font-size: var(--text-6xl); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: var(--text-xl); font-weight: 700; }
h4 { font-size: var(--text-base); font-weight: 700; letter-spacing: 0; }

p { color: var(--clr-gray-600); line-height: 1.7; }

.text-link {
  color: var(--clr-green-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}

.text-link:hover { color: var(--clr-green-800); }

/* ----------------------------------------------------------------
   5. LAYOUT
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

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

/* Tighten the gap between Services and Gallery */
.services { padding-bottom: clamp(2rem, 4vw, 3.5rem); }
.gallery  { padding-top:    clamp(2rem, 4vw, 3.5rem); padding-bottom: 0; }

.section--alt {
  background-color: var(--clr-green-50);
}

.section--green {
  background: linear-gradient(145deg, var(--clr-green-900) 0%, var(--clr-green-800) 100%);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-green-700);
  background: var(--clr-green-50);
  border: 1px solid var(--clr-green-200);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-5);
}

.section__tag--light {
  color: var(--clr-green-100);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}

.section__header h2 {
  margin-bottom: var(--sp-4);
}

.section__sub {
  font-size: var(--text-lg);
  color: var(--clr-gray-600);
  max-width: 540px;
  margin-inline: auto;
}

/* ----------------------------------------------------------------
   6. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  padding: 0.65rem 1.4rem;
  border-radius: var(--r-full);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn:active { transform: scale(0.97); }

/* Amber (primary CTA) */
.btn--amber {
  background: var(--clr-amber);
  color: var(--clr-white);
  border-color: var(--clr-amber);
  box-shadow: 0 4px 14px rgba(232,146,59,0.35);
}

.btn--amber:hover {
  background: var(--clr-amber-hover);
  border-color: var(--clr-amber-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,146,59,0.45);
}

/* Green (secondary CTA) */
.btn--green {
  background: var(--clr-green-800);
  color: var(--clr-white);
  border-color: var(--clr-green-800);
}

.btn--green:hover {
  background: var(--clr-green-700);
  border-color: var(--clr-green-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* White outline (on dark bg) */
.btn--outline-white {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-1px);
}

/* Green outline (on light bg) */
.btn--outline-green {
  background: transparent;
  color: var(--clr-green-800);
  border-color: var(--clr-green-800);
}

.btn--outline-green:hover {
  background: var(--clr-green-50);
}

/* Sizes */
.btn--lg {
  font-size: var(--text-base);
  padding: 0.85rem 1.85rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ----------------------------------------------------------------
   7. NAVIGATION
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--t-med), box-shadow var(--t-med);
  background: transparent;
}

.nav.is-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  height: 68px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.nav__logo-mark {
  flex-shrink: 0;
}

/* Text lockup: inline row — ClearHaul · Junk Removal */
.nav__logo-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--sp-2);
}

/* "ClearHaul" wordmark */
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  transition: color var(--t-fast);
  line-height: 1;
  white-space: nowrap;
}
.nav.is-scrolled .logo-name {
  color: var(--clr-green-800);
}

/* "Haul" always amber */
.logo-word-haul {
  color: var(--clr-amber);
}

/* Vertical pipe divider between name and tagline */
.logo-divider {
  display: inline-block;
  width: 1px;
  height: 1rem;
  background: rgba(255,255,255,0.22);
  border-radius: 1px;
  transition: background var(--t-fast);
  flex-shrink: 0;
}
.nav.is-scrolled .logo-divider {
  background: var(--clr-green-200);
}

/* "Junk Removal" — prominent, readable, clearly a service label */
.logo-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-green-200);
  transition: color var(--t-fast);
  line-height: 1;
  white-space: nowrap;
}
.nav.is-scrolled .logo-tagline {
  color: var(--clr-green-700);
}

/* Desktop links */
.nav__links {
  display: none;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
}

.nav__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.85);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav__link:hover {
  color: var(--clr-white);
  background: rgba(255,255,255,0.1);
}

.nav.is-scrolled .nav__link {
  color: var(--clr-gray-700);
}

.nav.is-scrolled .nav__link:hover {
  color: var(--clr-green-800);
  background: var(--clr-green-50);
}

/* Desktop right-side actions */
.nav__actions {
  display: none;
  align-items: center;
  gap: var(--sp-4);
  margin-left: var(--sp-4);
}

@media (min-width: 900px) {
  .nav__actions { display: flex; }
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  transition: color var(--t-fast);
}

.nav__phone:hover { color: var(--clr-white); }

.nav.is-scrolled .nav__phone {
  color: var(--clr-green-800);
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--sp-2);
  margin-left: auto;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}

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

.nav__hamburger:hover {
  background: rgba(255,255,255,0.12);
}

.nav.is-scrolled .nav__hamburger:hover {
  background: var(--clr-gray-100);
}

.hamburger__line {
  display: block;
  height: 2px;
  background: var(--clr-white);
  border-radius: var(--r-full);
  transition: background var(--t-fast), transform var(--t-med), opacity var(--t-fast), width var(--t-med);
  width: 100%;
  transform-origin: center;
}

.nav.is-scrolled .hamburger__line {
  background: var(--clr-gray-800);
}

.nav__hamburger.is-open .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.is-open .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-gray-100);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  /* Hidden by default */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height var(--t-med), opacity var(--t-med), padding var(--t-med);
  padding-block: 0;
}

.mobile-menu.is-open {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
  padding-block: var(--sp-6);
}

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

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.mobile-menu__link {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--clr-gray-800);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  transition: background var(--t-fast), color var(--t-fast);
}

.mobile-menu__link:hover {
  background: var(--clr-green-50);
  color: var(--clr-green-800);
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  border-top: 1px solid var(--clr-gray-100);
  padding-top: var(--sp-6);
}

/* ----------------------------------------------------------------
   8. HERO
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 68px; /* nav height */
}

/* Rich dark-green background with radial highlight */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(45, 122, 79, 0.45) 0%, transparent 70%),
    linear-gradient(145deg, var(--clr-green-950) 0%, var(--clr-green-800) 100%);
  z-index: 0;
}

/* Subtle dot grid */
.hero__bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Soft ambient glow bottom-right */
.hero__bg-glow {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(232,146,59,0.08) 0%, transparent 65%);
  border-radius: 50%;
}

/* ── HERO HOUSE BACKGROUND ANIMATION ─────────────────────── */
.hero__house-anim {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hha-ext {
  position: absolute;
  inset: 0;
}
.hha-int {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: #06100a;
}
/* Junk items that fly away — power2.in (slow start, fast exit) feels like
   objects being yanked out rather than floating away. */
.hha-item {
  transition: opacity 0.55s cubic-bezier(0.55, 0, 1, 0.45),
              transform 0.6s cubic-bezier(0.55, 0, 1, 0.45);
}
.hha-item.gone {
  opacity: 0 !important;
  transform: translateY(-60px) scale(0.12) rotate(8deg) !important;
}
/* ── HERO PHRASE REVEALS ──────────────────────────────────── */
/* power3.out easing — the premium standard for text reveals per NNGroup/GSAP research.
   30px Y offset feels substantial without being theatrical. */
.hero__phrase {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s cubic-bezier(0.215, 0.61, 0.355, 1),
              transform 0.85s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hero__phrase.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero__deferred {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.85s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s,
              transform 0.85s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  pointer-events: none;
}
.hero__deferred.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero__deferred .hero__eyebrow { margin-bottom: 1.1rem; }

/* Top vignette keeps headline readable against any background state */
.hha-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(4,16,8,0.62) 0%,
    rgba(4,16,8,0.28) 55%,
    rgba(4,16,8,0.10) 100%
  );
  z-index: 3;
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-px);
  padding-block: var(--sp-16) var(--sp-10);
  width: 100%;
}

.hero__content {
  max-width: 720px;
  text-align: center;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: var(--sp-5);
}

.hero__title {
  font-size: var(--text-6xl);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
}

.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4) var(--sp-6);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.hero__trust-item svg {
  flex-shrink: 0;
  color: var(--clr-amber);
}

/* Pricing anchor — appears below CTAs */
.hero__price-anchor {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
  margin-top: var(--sp-3);
  margin-bottom: 0;
}
.hero__price-anchor strong,
.hero__price-anchor {
  /* $99 should feel like a green light, not an alarm */
}

/* Availability urgency signal */
.hero__avail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-2);
}
.hero__avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
  animation: pulse-avail 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-avail {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.25); }
  50%       { box-shadow: 0 0 0 7px rgba(74,222,128,0.07); }
}

/* Urgency note inside booking form */
.form__urgency {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: var(--sp-3);
  margin-bottom: 0;
}

/* Stats bar */
.hero__stats {
  position: relative;
  z-index: 1;
  background: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--clr-gray-100);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--sp-6) clamp(1.5rem, 4vw, 3rem);
  gap: var(--sp-1);
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--clr-green-800);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat__star {
  color: var(--clr-amber);
  font-size: 1.1em;
}

.stat__label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--clr-gray-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.stat__divider {
  display: none;
  width: 1px;
  height: 40px;
  background: var(--clr-gray-200, #e5e7eb);
  flex-shrink: 0;
}

@media (min-width: 600px) {
  .stat__divider { display: block; }
}

/* ----------------------------------------------------------------
   9. SERVICES
   ---------------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
}

.service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-100);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--clr-green-200);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--clr-green-50);
  border-radius: var(--r-md);
  color: var(--clr-green-700);
  margin-bottom: var(--sp-5);
  transition: background var(--t-fast), color var(--t-fast);
}

.service-card:hover .service-card__icon {
  background: var(--clr-green-800);
  color: var(--clr-white);
}

.service-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--sp-2);
  color: var(--clr-gray-900);
}

.service-card p {
  font-size: var(--text-sm);
  line-height: 1.65;
}

.services__note {
  text-align: center;
  font-size: var(--text-base);
  color: var(--clr-gray-600);
}

/* ----------------------------------------------------------------
   10. WHY CHOOSE US
   ---------------------------------------------------------------- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}

.why-card {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.9);
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--clr-green-50);
  border-radius: var(--r-md);
  color: var(--clr-green-700);
  margin-bottom: var(--sp-5);
}

.why-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--sp-2);
}

.why-card p {
  font-size: var(--text-sm);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   11. HOW IT WORKS
   ---------------------------------------------------------------- */
.how__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
}

@media (min-width: 768px) {
  .how__steps {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }
}

.how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 260px;
  position: relative;
}

.how__step-num {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--clr-green-200);
  margin-bottom: var(--sp-4);
}

.how__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--clr-green-50);
  border-radius: var(--r-xl);
  color: var(--clr-green-800);
  margin-bottom: var(--sp-5);
  box-shadow: var(--shadow-md);
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.how__step:hover .how__step-icon {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.how__step-content h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-3);
}

.how__step-content p {
  font-size: var(--text-sm);
  line-height: 1.65;
}

.how__connector {
  display: none;
  color: var(--clr-green-200);
  margin-top: 3rem;
  flex-shrink: 0;
  padding-inline: var(--sp-4);
}

@media (min-width: 768px) {
  .how__connector { display: flex; align-items: center; }
}

.how__cta {
  text-align: center;
}

/* ----------------------------------------------------------------
   12. BOOKING FORM
   ---------------------------------------------------------------- */
.booking {
  /* inherits section--green styles */
}

.booking__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .booking__layout {
    grid-template-columns: 1fr 1.1fr;
  }
}

/* Info side */
.booking__info h2 {
  color: var(--clr-white);
  margin-block: var(--sp-5) var(--sp-5);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

.booking__info > p {
  color: rgba(255,255,255,0.72);
  font-size: var(--text-base);
  margin-bottom: var(--sp-8);
  line-height: 1.7;
}

.booking__promises {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
}

.booking__promises li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.9);
}

.booking__promises li svg {
  flex-shrink: 0;
  color: var(--clr-amber);
}

.booking__hours {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-5);
  letter-spacing: 0.01em;
}

.booking__hours svg {
  flex-shrink: 0;
  stroke: var(--clr-amber);
}

.booking__contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.booking__contact-link {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg);
  transition: background var(--t-fast), border-color var(--t-fast);
}

.booking__contact-link:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
}

.booking__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  color: var(--clr-amber);
  flex-shrink: 0;
}

.booking__contact-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}

.booking__contact-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--clr-white);
}

/* Form card */
.booking__form-wrap {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-xl);
}

.booking__form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

@media (min-width: 480px) {
  .form__row { grid-template-columns: 1fr 1fr; }
}

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

.form__label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--clr-gray-800);
}

.form__required {
  color: var(--clr-amber-dark);
}

.form__optional {
  font-weight: 400;
  color: var(--clr-gray-400);
}

.form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--clr-gray-50);
  border: 1.5px solid var(--clr-gray-200);
  border-radius: var(--r-md);
  font-size: var(--text-base);
  color: var(--clr-gray-900);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form__input::placeholder {
  color: var(--clr-gray-400);
}

.form__input:hover {
  border-color: var(--clr-gray-300);
}

.form__input:focus {
  outline: none;
  border-color: var(--clr-green-600);
  background: var(--clr-white);
  box-shadow: 0 0 0 3px rgba(45,122,79,0.12);
}

.form__input.has-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
}

/* Select wrapper */
.form__select-wrap {
  position: relative;
}

.form__select {
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-gray-400);
  pointer-events: none;
}

.form__textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Field-level error */
.form__field-error {
  font-size: var(--text-xs);
  font-weight: 600;
  color: #dc2626;
  min-height: 1em;
}

.form__field-hint {
  font-size: var(--text-xs);
  color: var(--clr-gray-400);
  margin-top: 4px;
  display: block;
}

/* Form-level messages */
.form__success {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--r-md);
  padding: var(--sp-5);
  animation: fadeInUp 0.4s var(--ease-out);
}

.form__success-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.form__success strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: #15803d;
  margin-bottom: var(--sp-1);
}

.form__success p {
  font-size: var(--text-sm);
  color: #166534;
}

.form__error-banner {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--text-sm);
  color: #dc2626;
}

.form__error-banner strong { display: block; margin-bottom: var(--sp-1); }

.form__note {
  font-size: var(--text-xs);
  color: var(--clr-gray-400);
  text-align: center;
  line-height: 1.6;
}

/* Spinner on submit button */
.btn__loading {
  display: none;
  align-items: center;
  gap: var(--sp-2);
}

.btn.is-loading .btn__text { display: none; }
.btn.is-loading .btn__loading { display: flex; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.spin { animation: spin 0.8s linear infinite; }

/* Honeypot — visually hidden */
.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* ----------------------------------------------------------------
   13. REVIEWS
   ---------------------------------------------------------------- */
.reviews__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.reviews__stars {
  font-size: var(--text-xl);
  color: var(--clr-amber);
  letter-spacing: 0.05em;
}

.reviews__avg {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--clr-gray-900);
}

.reviews__count {
  font-size: var(--text-sm);
  color: var(--clr-gray-400);
  font-weight: 500;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: var(--sp-5);
  margin-bottom: var(--sp-12);
}

.review-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-100);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card__stars {
  font-size: var(--text-lg);
  color: var(--clr-amber);
  letter-spacing: 0.06em;
}

.review-card blockquote {
  flex: 1;
}

.review-card blockquote p {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--clr-gray-700);
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  border-top: 1px solid var(--clr-gray-100);
  padding-top: var(--sp-5);
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  background: var(--clr-green-800);
  color: var(--clr-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__name {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--clr-gray-900);
  font-style: normal;
}

.review-card__location {
  display: block;
  font-size: var(--text-xs);
  color: var(--clr-gray-400);
  font-weight: 500;
}

/* Reviews footer — disclaimer + Google CTA */
/* Google invite card */
.reviews__invite-wrap {
  max-width: 680px;
  margin: 0 auto var(--sp-10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}

.reviews__invite-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  background: #fff;
  border: 1px solid var(--clr-green-100);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-7);
  box-shadow: 0 4px 24px rgba(7,26,15,0.06);
}

.reviews__invite-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--clr-green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews__invite-text {
  flex: 1;
}

.reviews__invite-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-green-900);
  margin-bottom: var(--sp-1);
  line-height: 1.3;
}

.reviews__invite-body {
  font-size: 0.875rem;
  color: var(--clr-gray-600);
  line-height: 1.55;
  margin: 0;
}

.reviews__invite-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  white-space: nowrap;
}

.reviews__invite-sub {
  font-size: 0.78rem;
  color: var(--clr-gray-500);
  text-align: center;
  font-style: italic;
  margin: 0;
}

/* ----------------------------------------------------------------
   About / Meet the Owner
   ---------------------------------------------------------------- */
.about {
  background: var(--clr-green-950);
  overflow: hidden;
}

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

/* Photo column */
.about__photo-col {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}

.about__photo,
.about__photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  display: block;
  object-fit: cover;
}

.about__photo-placeholder {
  background: linear-gradient(160deg, var(--clr-green-800) 0%, var(--clr-green-900) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__photo-initials {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 7rem);
  color: rgba(255,255,255,0.08);
  letter-spacing: -0.04em;
  user-select: none;
}

/* Floating credential badges */
.about__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--clr-green-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 8px 16px 8px 12px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  white-space: nowrap;
}

.about__badge--top {
  top: -14px;
  left: -14px;
  color: var(--clr-amber);
}

.about__badge--top svg {
  color: var(--clr-amber);
  fill: var(--clr-amber);
}

.about__badge--bottom {
  bottom: 28px;
  right: -14px;
  color: var(--clr-green-200);
}

.about__badge--bottom svg {
  stroke: var(--clr-green-200);
}

/* Story column */
.about__headline {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--clr-white);
  margin: var(--sp-4) 0 var(--sp-6);
  line-height: 1.1;
}

.about__body {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}

.about__body em {
  color: var(--clr-green-200);
  font-style: normal;
  font-weight: 500;
}

/* Pull quote */
.about__quote {
  position: relative;
  margin: var(--sp-8) 0;
  padding: var(--sp-5) var(--sp-6);
  background: rgba(232,146,59,0.06);
  border-left: 3px solid var(--clr-amber);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}

.about__quote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: var(--sp-4);
  font-size: 4rem;
  line-height: 1;
  color: var(--clr-amber);
  opacity: 0.4;
  font-family: Georgia, serif;
}

.about__quote p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-green-100);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

/* Credential pills */
.about__creds {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.about__cred {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 6px 14px 6px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-green-200);
  letter-spacing: 0.01em;
}

.about__cred svg {
  flex-shrink: 0;
  color: var(--clr-amber);
  stroke: var(--clr-amber);
}

/* CTA */
.about__cta {
  display: inline-flex;
}

/* Desktop: single centered column */
@media (min-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }
}

/* Trust badges row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-8);
  background: var(--clr-green-50);
  border-radius: var(--r-xl);
  border: 1px solid var(--clr-green-100);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--clr-green-800);
  padding: var(--sp-2) var(--sp-4);
  background: var(--clr-white);
  border-radius: var(--r-full);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.trust-badge svg {
  color: var(--clr-green-700);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   14. FINAL CTA
   ---------------------------------------------------------------- */
.final-cta {
  background: linear-gradient(145deg, var(--clr-green-900) 0%, var(--clr-green-800) 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative blob */
.final-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(232,146,59,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta__inner {
  text-align: center;
  position: relative;
}

.final-cta__inner .section__tag {
  /* Shown on green bg, use light variant via inline override */
  color: var(--clr-amber);
  background: rgba(232,146,59,0.12);
  border-color: rgba(232,146,59,0.25);
}

.final-cta__inner h2 {
  color: var(--clr-white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-block: var(--sp-5) var(--sp-4);
}

.final-cta__inner > p {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-lg);
  margin-bottom: var(--sp-8);
}

.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  margin-bottom: var(--sp-6);
}

.final-cta__sub {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* ----------------------------------------------------------------
   15. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--clr-gray-900);
  padding-block: var(--sp-16) var(--sp-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

.footer .logo-name {
  color: var(--clr-white);
}
.footer .logo-tagline {
  color: rgba(255,255,255,0.45);
}

.footer__tagline {
  margin-top: var(--sp-4);
  font-size: var(--text-sm);
  color: var(--clr-gray-400);
  line-height: 1.7;
  max-width: 280px;
}

.footer__service-area {
  margin-top: var(--sp-3);
  font-size: var(--text-xs);
  color: var(--clr-gray-500);
  line-height: 1.6;
  max-width: 280px;
}

.footer__phone {
  display: inline-block;
  margin-top: var(--sp-5);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--clr-amber);
  transition: color var(--t-fast);
}

.footer__phone:hover { color: var(--clr-amber-hover); }

.footer__col h4 {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gray-400);
  margin-bottom: var(--sp-5);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__col li {
  font-size: var(--text-sm);
  color: var(--clr-gray-400);
}

.footer__col a {
  color: var(--clr-gray-400);
  transition: color var(--t-fast);
}

.footer__col a:hover {
  color: var(--clr-white);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-6);
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--sp-8);
}

.footer__bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}

/* ----------------------------------------------------------------
   16. MOBILE STICKY CTA BAR
   ---------------------------------------------------------------- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  height: 60px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
}

@media (min-width: 768px) {
  .mobile-cta-bar { display: none; }
}

.mobile-cta-bar__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  flex: 1;
  background: var(--clr-green-800);
  color: var(--clr-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  transition: background var(--t-fast);
}

.mobile-cta-bar__call:hover,
.mobile-cta-bar__call:active {
  background: var(--clr-green-700);
}

.mobile-cta-bar__book {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  background: var(--clr-amber);
  color: var(--clr-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  transition: background var(--t-fast);
}

.mobile-cta-bar__book:hover,
.mobile-cta-bar__book:active {
  background: var(--clr-amber-hover);
}

/* ----------------------------------------------------------------
   17. SCROLL-TRIGGERED REVEAL ANIMATION
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html { scroll-behavior: auto; }
  .spin { animation: none; }
}

/* ----------------------------------------------------------------
   18. SERVICES — WHAT WE DON'T TAKE
   ---------------------------------------------------------------- */
.services__wont-take {
  margin-top: var(--sp-12);
  background: #fff8f5;
  border: 1.5px solid #fcd9c4;
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  gap: var(--sp-5);
}

@media (min-width: 768px) {
  .services__wont-take {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: var(--sp-6) var(--sp-10);
  }
  .services__wont-title { grid-column: 1 / -1; }
}

.services__wont-title {
  font-size: var(--text-xl);
  color: var(--clr-gray-900);
  margin: 0;
}

.services__wont-sub {
  font-size: var(--text-sm);
  color: var(--clr-gray-600);
  margin-top: calc(var(--sp-2) * -1);
}

.services__wont-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.services__wont-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--clr-gray-700);
  font-weight: 500;
}

.services__wont-list li svg {
  flex-shrink: 0;
  color: #e55a2b;
  margin-top: 2px;
}

.services__wont-note {
  font-size: var(--text-sm);
  color: var(--clr-gray-600);
}

/* ----------------------------------------------------------------
   19. ECO SECTION
   ---------------------------------------------------------------- */
.eco {
  background: var(--clr-green-50);
}

.eco__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--clr-white);
  border: 1px solid var(--clr-green-100);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  box-shadow: var(--shadow-sm);
}

.eco__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-4) clamp(1.5rem, 5vw, 3.5rem);
  text-align: center;
}

.eco__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--clr-green-800);
  letter-spacing: -0.03em;
  line-height: 1;
}

.eco__stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--clr-gray-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eco__stat-divider {
  width: 1px;
  height: 48px;
  background: var(--clr-gray-200);
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .eco__stat-divider { display: none; }
  .eco__stat { width: 100%; border-top: 1px solid var(--clr-gray-100); }
  .eco__stat:first-child { border-top: none; }
}

.eco__paths {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--sp-5);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 768px) {
  .eco__paths {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}

.eco__path {
  flex: 1;
  background: var(--clr-white);
  border: 1px solid var(--clr-green-100);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.eco__path:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.eco__path-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  padding-inline: var(--sp-4);
  padding-top: 3.5rem;
  color: var(--clr-green-300, #86bfa0);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .eco__path-arrow { display: flex; }
}

.eco__path-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-5);
}

.eco__path-icon--donate {
  background: #fef3e8;
  color: var(--clr-amber);
}

.eco__path-icon--recycle {
  background: var(--clr-green-50);
  color: var(--clr-green-700);
}

.eco__path-icon--dispose {
  background: var(--clr-gray-100);
  color: var(--clr-gray-600);
}

.eco__path h3 {
  font-size: var(--text-xl);
  color: var(--clr-gray-900);
  margin-bottom: var(--sp-3);
}

.eco__path p {
  font-size: var(--text-sm);
  line-height: 1.7;
}

.eco__quote {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--clr-green-800);
  border-radius: var(--r-xl);
  color: rgba(255,255,255,0.9);
}

.eco__quote p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  margin-bottom: var(--sp-3);
}

.eco__quote footer {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ----------------------------------------------------------------
   20. PRICING SECTION
   ---------------------------------------------------------------- */
.pricing__tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 640px) {
  .pricing__tiers { grid-template-columns: repeat(3, 1fr); }
}

.pricing__tier {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-gray-200);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.pricing__tier:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-green-200);
}

.pricing__tier--featured {
  border-color: var(--clr-green-600);
  box-shadow: var(--shadow-md);
}

.pricing__tier--featured:hover {
  border-color: var(--clr-green-700);
}

.pricing__tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-green-800);
  color: var(--clr-white);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--r-full);
  white-space: nowrap;
}

.pricing__tier-label {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--clr-gray-700);
  letter-spacing: 0.01em;
}

/* Truck-fill bar */
.pricing__tier-bar {
  height: 10px;
  background: var(--clr-gray-200);
  border-radius: var(--r-full);
  overflow: hidden;
}

.pricing__tier-fill {
  height: 100%;
  width: var(--fill, 50%);
  background: var(--clr-green-600);
  border-radius: var(--r-full);
  transition: width 0.8s var(--ease-out);
}

.pricing__tier--featured .pricing__tier-fill {
  background: var(--clr-green-800);
}

.pricing__tier-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing__tier-from {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--clr-gray-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing__tier-price strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--clr-green-800);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing__tier p {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--clr-gray-600);
  flex: 1;
}

/* Concrete examples beneath each pricing tier */
.pricing__tier-eg {
  display: block;
  font-size: 0.78rem;
  color: var(--clr-green-400);
  margin-top: var(--sp-2);
  font-style: italic;
  opacity: 0.8;
}

.pricing__footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}

.pricing__footer > p {
  font-size: var(--text-base);
  color: var(--clr-gray-600);
  max-width: 560px;
}

.pricing__guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2) var(--sp-6);
}

.pricing__guarantees li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--clr-green-800);
}

.pricing__guarantees li svg { color: var(--clr-green-700); }

/* ----------------------------------------------------------------
   21. FAQ SECTION
   ---------------------------------------------------------------- */
.faq__list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--clr-gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--clr-white);
  box-shadow: var(--shadow-sm);
}

.faq__item {
  border-bottom: 1px solid var(--clr-gray-100);
}

.faq__item:last-child { border-bottom: none; }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-6) var(--sp-8);
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--clr-gray-900);
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}

.faq__question:hover {
  background: var(--clr-green-50);
  color: var(--clr-green-800);
}

.faq__question[aria-expanded="true"] {
  color: var(--clr-green-800);
  background: var(--clr-green-50);
}

.faq__chevron {
  flex-shrink: 0;
  color: var(--clr-gray-400);
  transition: transform var(--t-med), color var(--t-fast);
}

.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
  color: var(--clr-green-700);
}

.faq__answer {
  padding: 0 var(--sp-8) var(--sp-6);
  animation: fadeInUp 0.3s var(--ease-out);
}

.faq__answer p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--clr-gray-600);
}

.faq__answer a { font-weight: 600; }

/* Success steps */
.form__success-steps {
  margin-top: var(--sp-3);
  padding-left: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form__success-steps li {
  font-size: var(--text-sm);
  color: #166534;
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   23. HERO — PHOTO PANEL
   ---------------------------------------------------------------- */
.hero__photo {
  display: none;
  flex-shrink: 0;
  position: relative;
}

@media (min-width: 1100px) {
  .hero__container {
    justify-content: center;
  }

  .hero__content {
    max-width: 720px;
  }

  .hero__photo {
    display: block;
    width: clamp(300px, 28vw, 420px);
  }
}

.hero__photo-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.45),
    0 8px 24px rgba(0,0,0,0.2),
    inset 0 0 0 1px rgba(255,255,255,0.12);
}

.hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating glass card at bottom of photo */
.hero__photo-card {
  position: absolute;
  bottom: var(--sp-5);
  left: var(--sp-5);
  right: var(--sp-5);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.hero__photo-card-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--clr-green-800);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__photo-card-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--clr-gray-900);
  line-height: 1;
}

.hero__photo-card-sub {
  font-size: var(--text-xs);
  color: var(--clr-gray-400);
  margin-top: 3px;
}

/* Rating pill at top of photo */
.hero__photo-rating {
  position: absolute;
  top: var(--sp-5);
  left: var(--sp-5);
  background: rgba(7,26,15,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  padding: var(--sp-2) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--clr-white);
}

.hero__photo-rating-stars {
  color: var(--clr-amber);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

/* ----------------------------------------------------------------
   24. GALLERY SECTION
   ---------------------------------------------------------------- */
.gallery__grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 300px);
    grid-template-areas: none;
  }

  .gallery__item:nth-child(n) { grid-area: auto; }
}

.gallery__item {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--clr-gray-200);
}

.gallery__item--tall { grid-row: auto; }
.gallery__item--wide { grid-column: span 1; }

/* ── Split Before/After Gallery Card ── */
.gallery__split {
  position: absolute;
  inset: 0;
  display: flex;
}

.gallery__split-before,
.gallery__split-after {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.gallery__split-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s var(--ease-out);
}

/* Left side: no filter — both halves display as-is */
.gallery__split-before .gallery__split-bg {
  background-position: center;
}

/* After side: bright and clean */
.gallery__split-after .gallery__split-bg {
  background-position: center;
}

/* Hover: subtle zoom on both halves */
.gallery__item:hover .gallery__split-bg {
  transform: scale(1.05);
}

/* Warm grime gradient over the before side */
.gallery__split-grime {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(110,65,5,0.55) 0%, rgba(80,50,5,0.25) 45%, rgba(40,20,0,0.1) 70%, transparent 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 25%);
  z-index: 1;
  pointer-events: none;
}

/* Junk silhouettes sit above grime, at the bottom */
.gallery__split-junk {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2%;
  padding: 0 3% 0;
  z-index: 2;
  color: rgba(185,130,55,0.72);
  pointer-events: none;
}

/* Before / After pill labels */
.gallery__split-label {
  position: absolute;
  top: 14px;
  z-index: 5;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,0.52);
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
}

.gallery__split-label--before { left: 14px; }
.gallery__split-label--after  { right: 14px; }

/* Always-visible before/after badge on regular gallery items */
.gallery__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,0.52);
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
}
.gallery__badge--after {
  background: rgba(28,74,46,0.75);
}

/* Vertical divider line */
.gallery__split-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 3px;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 16px rgba(0,0,0,0.25);
  pointer-events: none;
}

/* Handle icon on the divider */
.gallery__split-handle {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 14px rgba(0,0,0,0.32);
  color: var(--clr-gray-600);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,26,15,0.82) 0%, rgba(7,26,15,0.1) 50%, transparent 80%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-5) var(--sp-6);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery__item:hover .gallery__overlay,
@media (hover: none) {
  .gallery__overlay { opacity: 1; }
}

/* Always visible on touch */
@media (hover: none) {
  .gallery__overlay { opacity: 1; }
}

.gallery__label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.02em;
  transform: translateY(4px);
  transition: transform 0.35s ease;
}

.gallery__item:hover .gallery__label {
  transform: translateY(0);
}

/* Gallery CTA strip — below the photo grid */
.gallery__cta {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.gallery__cta p {
  color: var(--clr-green-300);
  font-size: 1.05rem;
  margin-bottom: var(--sp-5);
}

/* ----------------------------------------------------------------
   25. WHY US — PHOTO SPLIT LAYOUT
   ---------------------------------------------------------------- */
.why__layout {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

@media (min-width: 1024px) {
  .why__layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: clamp(2rem, 3.5vw, 3.5rem);
    align-items: stretch;
    max-width: 1020px;
    margin-inline: auto;
  }
}

.why__photo-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-xl);
}

@media (min-width: 1024px) {
  .why__photo-wrap {
    position: relative;
    aspect-ratio: unset;
    height: 100%;
    min-height: 500px;
  }
}

.why__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why__photo-badge {
  position: absolute;
  bottom: var(--sp-6);
  left: var(--sp-6);
  background: var(--clr-amber);
  color: var(--clr-white);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  box-shadow: 0 4px 16px rgba(232,146,59,0.45);
}

.section__header--left {
  text-align: left;
  margin-inline: 0;
  max-width: none;
  margin-bottom: var(--sp-8);
}

.section__header--left .section__sub {
  margin-inline: 0;
}

/* ----------------------------------------------------------------
   26. REVIEW AVATAR — PHOTO VERSION
   ---------------------------------------------------------------- */
img.review-card__avatar {
  border-radius: 50%;
  object-fit: cover;
  background: var(--clr-gray-200);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   27. ECO QUOTE — PHOTO BACKGROUND
   ---------------------------------------------------------------- */
.eco__quote {
  background:
    linear-gradient(rgba(7,26,15,0.88), rgba(7,26,15,0.88)),
    url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1400&q=70&auto=format&fit=crop') center / cover;
}

/* ----------------------------------------------------------------
   28. MODERNIZATION POLISH
   ---------------------------------------------------------------- */

/* Bolder section header H2 at desktop */
@media (min-width: 1024px) {
  h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
}

/* Slightly stronger section tag pill */
.section__tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  padding: 0.3rem 0.9rem;
}

/* Service card — category-specific icon accent colors */
.service-card:nth-child(1) .service-card__icon { background: #eef7f1; color: #27623d; }
.service-card:nth-child(2) .service-card__icon { background: #fef3e8; color: #c97828; }
.service-card:nth-child(3) .service-card__icon { background: #f0f9ff; color: #0369a1; }
.service-card:nth-child(4) .service-card__icon { background: #fdf4ff; color: #7e22ce; }
.service-card:nth-child(5) .service-card__icon { background: #f0fdf4; color: #15803d; }
.service-card:nth-child(6) .service-card__icon { background: #fff7ed; color: #c2410c; }
.service-card:nth-child(7) .service-card__icon { background: #f8fafc; color: #475569; }
.service-card:nth-child(8) .service-card__icon { background: #fef2f2; color: #b91c1c; }

.service-card:hover .service-card__icon {
  filter: brightness(0) invert(1);
}

/* Stronger hero stats bar */
.hero__stats {
  border-top: none;
  box-shadow: 0 -1px 0 rgba(0,0,0,0.06), var(--shadow-sm);
}

.stat__number {
  background: linear-gradient(135deg, var(--clr-green-800) 0%, var(--clr-green-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Pricing tier fill bar animated on scroll */
.pricing__tier.is-visible .pricing__tier-fill {
  width: var(--fill, 50%);
}

/* ----------------------------------------------------------------
   22. RESPONSIVE OVERRIDES
   ---------------------------------------------------------------- */

/* Phones (< 480px) */
@media (max-width: 479px) {
  .reviews__invite-card {
    flex-direction: column;
    text-align: center;
    padding: var(--sp-5);
  }

  .reviews__invite-btn {
    width: 100%;
    justify-content: center;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    flex-direction: column;
  }

  .stat__divider { display: none; }

  .stat {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    border-top: 1px solid var(--clr-gray-100);
    padding: var(--sp-4) var(--sp-6);
  }

  .stat:first-child { border-top: none; }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================================================================
   PHASE 3 — SCROLL ANIMATIONS & CINEMATIC EFFECTS
   ================================================================ */

/* ----------------------------------------------------------------
   INTRO LOADER
   ---------------------------------------------------------------- */
.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--clr-green-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  transition: opacity 0.7s ease 0.1s, visibility 0.7s ease 0.1s;
}
.intro-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-loader__truck {
  transform: translateX(-60vw);
  animation: loader-truck-drive 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s forwards;
}
.intro-loader__brand {
  opacity: 0;
  transform: translateY(10px);
  animation: loader-fade-up 0.5s ease 1s forwards;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  letter-spacing: -0.02em;
  color: var(--clr-white);
}
.intro-loader__brand span { color: var(--clr-amber); }
.intro-loader__sub {
  opacity: 0;
  animation: loader-fade-up 0.5s ease 1.2s forwards;
  color: var(--clr-green-200);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@keyframes loader-truck-drive {
  from { transform: translateX(-60vw); }
  to   { transform: translateX(0); }
}
@keyframes loader-fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------------
   GRADIENT TEXT
   ---------------------------------------------------------------- */
.txt-gradient {
  background: linear-gradient(135deg, #e8923b 0%, #f5a94e 55%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ----------------------------------------------------------------
   HERO FLOATING JUNK SILHOUETTES
   ---------------------------------------------------------------- */
.hero__junk-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}


/* ----------------------------------------------------------------
   HERO DEBRIS PARTICLES
   ---------------------------------------------------------------- */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__particle {
  position: absolute;
  top: -10px;
  border-radius: 2px;
  animation: debris-fall linear infinite;
  opacity: 0;
}
@keyframes debris-fall {
  0%   { transform: translateY(0)     rotate(0deg);   opacity: 0;   }
  8%   { opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(105vh) rotate(540deg); opacity: 0;   }
}

/* ----------------------------------------------------------------
   SCROLL STORY — "CLEARING" SECTION
   ---------------------------------------------------------------- */
.clear-story {
  height: 280vh; /* extra scroll room for better pacing */
  position: relative;
  /* Reduced motion: collapse to normal section */
}
@media (prefers-reduced-motion: reduce) {
  .clear-story { height: auto; }
}

.clear-story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-green-950);
}
.clear-story__sticky::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 60%, transparent 40%, rgba(7,26,15,0.75) 100%);
  pointer-events: none;
  z-index: 2;
}
.clear-story__scene {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Tail light glow — bleeds down from truck corners as items are loaded */
.cs-taillight-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  background:
    radial-gradient(ellipse 32% 60% at 0%   0%, rgba(220,20,20,0.65) 0%, transparent 70%),
    radial-gradient(ellipse 32% 60% at 100% 0%, rgba(220,20,20,0.65) 0%, transparent 70%),
    radial-gradient(ellipse 75% 40% at 50%  0%, rgba(190,14,14,0.28) 0%, transparent 65%);
}

/* Truck docked at top of scene — always visible during scroll */
.cs-truck {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}
/* Mobile: truck is much shorter (~82px) so nudge down more
   to keep it clearly visible when animation settles */
@media (max-width: 768px) {
  .cs-truck {
    top: 32px;
  }
}
.cs-truck svg {
  width: 100%;
  display: block;
  height: auto;
  /* Tail-light spill + edge definition */
  filter: drop-shadow(0 6px 28px rgba(200, 22, 22, 0.40))
          drop-shadow(0 2px 6px rgba(255, 255, 255, 0.06));
}

/* Cargo silhouettes inside truck bed — hidden until item is loaded */
.cs-cargo {
  opacity: 0;
  transition: opacity 0.5s ease 0.6s; /* delay so item arrives before appearing */
}
.cs-cargo.is-loaded {
  opacity: 1;
}

/* Junk items */
.cs-item {
  position: absolute;
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.55, 0, 0.45, 1);
  will-change: transform, opacity;
  color: rgba(255,255,255,0.13);
}
.cs-item.is-gone {
  opacity: 0 !important;
  /* power4.in — items hesitate then accelerate violently into the truck */
  transform: translateY(-95vh) rotate(18deg) scale(0.07) !important;
  transition: opacity 0.55s ease-in, transform 0.75s cubic-bezier(0.7, 0, 1, 1) !important;
}
/* Mobile: truck renders ~82px tall at 390px wide (900×190 viewBox).
   Items at bottom:20% need only ~68vh to visually enter the truck bed
   rather than shooting past it off-screen. */
@media (max-width: 768px) {
  .cs-item.is-gone {
    transform: translateY(-68vh) rotate(18deg) scale(0.07) !important;
  }
}
/* Item placements — colors bright enough to read shape + damage marks */
.cs-item--sofa   { bottom: 20%; left: 5%;   color: rgba(218,138,58,0.72); }
.cs-item--boxes  { bottom: 24%; left: 24%;  color: rgba(210,190,165,0.62); }
.cs-item--lamp   { bottom: 20%; left: 48%;  color: rgba(215,208,195,0.58); }
.cs-item--tv     { bottom: 18%; right: 20%; color: rgba(195,200,218,0.68); }
.cs-item--chair  { bottom: 22%; right: 4%;  color: rgba(208,122,52,0.70); }
.cs-item--pile   { bottom: 12%; left: 60%;  color: rgba(200,198,210,0.58); }

/* Clean garage scene — ghosted behind junk from the start, brightens on full reveal */
.cs-clean {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 92vw);
  opacity: 0.18;                /* slightly dimmer start for better contrast vs junk */
  transition: opacity 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  /* No z-index — DOM order places this behind all .cs-item siblings */
}
.cs-clean svg {
  width: 100%;
  height: auto;
}
.cs-clean.is-visible {
  opacity: 0.92;                /* full reveal — snappier, avoids harsh 0.18 → 1 jump */
}

/* Floor line */
.clear-story__floor {
  position: absolute;
  bottom: 18%;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 20%, rgba(255,255,255,0.08) 80%, transparent 100%);
  transition: opacity 1s ease;
  z-index: 1;
}
.clear-story__floor.is-clear { opacity: 0; }

/* Text lines */
.clear-story__text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
  text-align: center;
  padding: 0 var(--sp-6);
}
.cs-line {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 1.05;
  color: var(--clr-white);
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.215, 0.61, 0.355, 1),
              transform 0.65s cubic-bezier(0.215, 0.61, 0.355, 1);
  margin: 0;
}
.cs-line.is-active {
  opacity: 1;
  transform: translateY(0);
}
.cs-line.is-out {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cs-line--amber { color: var(--clr-amber); }

/* "Gone." — the payoff moment. Huge, gradient, scales in. */
.cs-line--payoff {
  font-size: clamp(4.5rem, 15vw, 11rem);
  background: linear-gradient(135deg, var(--clr-amber) 0%, #f5c84a 55%, var(--clr-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(40px) scale(0.92);
  transition: opacity 0.55s cubic-bezier(0.215, 0.61, 0.355, 1),
              transform 0.55s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cs-line--payoff.is-active {
  transform: translateY(0) scale(1);
}

.cs-line--result {
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  color: rgba(255,255,255,0.80);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: var(--sp-4);
}

/* Progress dots */
.clear-story__dots {
  position: absolute;
  bottom: var(--sp-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--sp-2);
  z-index: 4;
}
.cs-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  transition: background 0.3s, transform 0.3s;
}
.cs-dot.is-active {
  background: var(--clr-amber);
  transform: scale(1.5);
}

/* Scroll hint */
.clear-story__hint {
  position: absolute;
  bottom: var(--sp-20);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 4;
  animation: hint-bob 2.2s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes hint-bob {
  0%, 100% { transform: translateX(-50%) translateY(0);  opacity: 0.35; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 0.7; }
}

/* Subtle ambient green glow when room is fully cleared */
.clear-story.is-complete .clear-story__sticky::after {
  background: radial-gradient(ellipse 70% 55% at 50% 60%, rgba(39,98,61,0.14) 0%, rgba(7,26,15,0.72) 100%);
  transition: background 1.5s ease;
}

/* ----------------------------------------------------------------
   JUNK → CLEARED SECTION
   ---------------------------------------------------------------- */
.junk-cleared {
  padding: var(--sp-14) 0;
  background: var(--clr-off-white);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.junk-cleared__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  overflow: hidden;
}
.junk-cleared__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-green-600);
  margin-bottom: var(--sp-6);
}
.junk-cleared__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--clr-gray-900);
  margin: 0 0 var(--sp-6);
  /* Grid: both jc-hauler and jc-cleared-word share the same cell, staying centered */
  display: grid;
  place-items: center;
}
/* The word "Junk" that gets struck through */
.jc-word {
  position: relative;
  display: inline-block;
  color: var(--clr-gray-400);
}
.jc-word::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; top: 50%;
  height: 5px;
  background: var(--clr-amber);
  border-radius: 3px;
  transition: right 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}
.junk-cleared.is-triggered .jc-word::after { right: 0; }
.jc-cleared-word {
  color: var(--clr-green-700);
  /* Shared grid cell — centers Cleared. exactly where Junk. was */
  grid-row: 1;
  grid-column: 1;
  text-align: center;
}
.jc-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.75em; height: 0.75em;
  background: var(--clr-amber);
  border-radius: 50%;
  font-size: 0.55em;
  color: white;
  font-weight: 900;
  opacity: 0;
  transform: scale(0) rotate(-45deg);
  transition: opacity 0.4s ease 0.85s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.85s;
  position: relative;
  top: -0.1em;
  margin-left: var(--sp-2);
}
.junk-cleared.is-triggered .jc-check {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.junk-cleared__sub {
  font-size: var(--text-lg);
  color: var(--clr-gray-600);
  max-width: 520px;
  margin: 0 auto var(--sp-10);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   NAV SCROLL PROGRESS
   ---------------------------------------------------------------- */
.nav__scroll-progress {
  display: none;
  align-items: center;
  gap: 6px;
  margin-left: var(--sp-3);
}
@media (min-width: 1100px) {
  .nav__scroll-progress { display: flex; }
}
.nav-progress__track {
  width: 52px; height: 6px;
  background: var(--clr-gray-200);
  border-radius: var(--r-full);
  overflow: hidden;
}
.nav.is-scrolled .nav-progress__track { background: rgba(255,255,255,0.15); }
.nav-progress__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--clr-green-600), var(--clr-amber));
  border-radius: var(--r-full);
  transition: width 0.08s linear;
}
.nav-progress__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--clr-gray-400);
  text-transform: uppercase;
}
.nav.is-scrolled .nav-progress__label { color: rgba(255,255,255,0.5); }

/* ----------------------------------------------------------------
   HOW IT WORKS — CONNECTOR DRAW
   ---------------------------------------------------------------- */
.how__connector svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  transition: stroke-dashoffset 0.8s ease 0.3s;
}
.how__connector.is-visible svg path { stroke-dashoffset: 0; }

/* Step number pop animation */
.how__step.is-visible .how__step-num {
  animation: step-num-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) var(--delay, 0s) both;
}
@keyframes step-num-in {
  0%   { transform: scale(0.4) rotate(-15deg); opacity: 0; }
  100% { transform: scale(1)   rotate(0deg);   opacity: 1; }
}

/* ----------------------------------------------------------------
   SERVICE CARDS — ALTERNATE DIRECTIONAL REVEAL
   ---------------------------------------------------------------- */
.services__grid .service-card.reveal:nth-child(odd) {
  transform: translateX(-20px) translateY(16px);
}
.services__grid .service-card.reveal:nth-child(even) {
  transform: translateX(20px) translateY(16px);
}
.services__grid .service-card.reveal.is-visible {
  transform: translateX(0) translateY(0);
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--delay, 0s),
              opacity 0.55s ease var(--delay, 0s);
}

/* ----------------------------------------------------------------
   FINAL CTA — GLOW + SILHOUETTES
   ---------------------------------------------------------------- */
.final-cta {
  position: relative;
  overflow: hidden;
}
.final-cta__silhouettes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.final-cta__sil {
  position: absolute;
  bottom: 0;
  color: rgba(255,255,255,0.05);
  transition: transform 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--delay, 0s),
              opacity 1.1s ease var(--delay, 0s);
}
.final-cta__sil--left  { left: 0; }
.final-cta__sil--right { right: 0; transform: scaleX(-1); transform-origin: right center; }

.final-cta.is-revealed .final-cta__sil--left  {
  transform: translateX(-120%);
  opacity: 0;
}
.final-cta.is-revealed .final-cta__sil--right {
  transform: translateX(120%) scaleX(-1);
  opacity: 0;
}

/* CTA button glow pulse */
.final-cta .btn--amber {
  animation: cta-glow 3s ease-in-out 1s infinite;
}
@keyframes cta-glow {
  0%, 100% { box-shadow: var(--shadow-md); }
  50%       { box-shadow: 0 0 0 10px rgba(232,146,59,0.15), 0 8px 30px rgba(232,146,59,0.35); }
}

/* ----------------------------------------------------------------
   JUNK HAULER — TRUCK DRIVES IN AND TAKES THE WORD OFF SCREEN
   ---------------------------------------------------------------- */
.jc-hauler {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  overflow: visible;
  /* Shared grid cell with jc-cleared-word so Cleared. lands in same spot */
  grid-row: 1;
  grid-column: 1;
}

.jc-mini-truck {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0;
  /* Starts off-screen to the LEFT — drives in rightward */
  transform: translateX(-160px);
  position: relative;
  top: 0.04em;
}

/* Disable the old CSS-only strikethrough — truck replaces it */
.jc-word::after {
  display: none;
}

/* ── Triggered sequence ── */

/* 1. Truck arrives from the LEFT (0–0.9s), driving rightward */
.junk-cleared.is-triggered .jc-mini-truck {
  animation: truck-arrive 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s forwards;
}

/* 2. Word bounces nervously as truck arrives (0.45–1.1s) */
.junk-cleared.is-triggered .jc-word {
  animation: junk-panic 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s both;
}

/* 3. Hauler (truck + word together) exits RIGHT (0.9s–2.5s) */
.junk-cleared.is-triggered .jc-hauler {
  animation: hauler-scram 1.6s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0.9s both;
}

@keyframes truck-arrive {
  0%   { opacity: 0; transform: translateX(-160px); }
  20%  { opacity: 1;                                }
  100% { opacity: 1; transform: translateX(0);      }
}

@keyframes junk-panic {
  0%   { transform: translateY(0);     }
  30%  { transform: translateY(-20px); }
  55%  { transform: translateY(3px);   }
  75%  { transform: translateY(-8px);  }
  100% { transform: translateY(0);     }
}

@keyframes hauler-scram {
  0%   { transform: translateX(0);     }
  100% { transform: translateX(150vw); /* fully off-screen RIGHT */ }
}

/* ── "Cleared." starts hidden — only appears after junk is gone ── */
.jc-cleared-word {
  opacity: 0;
  transform: translateY(12px) scale(0.92);
}

/* Reveal after hauler-scram finishes (0.9s delay + 1.6s duration = 2.5s) */
.junk-cleared.is-triggered .jc-cleared-word {
  animation: cleared-pop-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 2.55s forwards;
}

@keyframes cleared-pop-in {
  0%   { opacity: 0; transform: translateY(12px) scale(0.92); }
  60%  { opacity: 1;                                           }
  100% { opacity: 1; transform: translateY(0)    scale(1);    }
}

/* Checkmark pops in just after "Cleared." finishes appearing */
.junk-cleared.is-triggered .jc-check {
  transition: opacity 0.35s ease 3s,
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 3s;
}
