/* ============================================
   SUPERIOR TREE WIZARDS — Design Tokens
   Art Direction: Rugged outdoors, Pocono nature
   Palette: Deep forest green + warm amber/gold
   ============================================ */

:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

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

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'Arial Black', sans-serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
}

/* ============================================
   LIGHT MODE — Forest & Earth Palette
   ============================================ */
:root, [data-theme="light"] {
  --color-bg:             #F5F3EE;
  --color-surface:        #FAFAF7;
  --color-surface-2:      #FFFFFF;
  --color-surface-offset: #EDE9E0;
  --color-border:         #D1CCC2;
  --color-divider:        #DDD9D0;

  --color-text:           #1A2E1A;
  --color-text-muted:     #5A6B5A;
  --color-text-faint:     #9AA59A;
  --color-text-inverse:   #FAFAF7;

  /* Primary — Deep Forest Green */
  --color-primary:        #1B5E20;
  --color-primary-hover:  #144D19;
  --color-primary-active: #0D3B12;
  --color-primary-light:  #E8F5E9;

  /* Accent — Warm Amber/Gold */
  --color-accent:         #C17B1A;
  --color-accent-hover:   #A66914;
  --color-accent-light:   #FFF3E0;

  /* Semantic */
  --color-error:          #A12C2C;
  --color-success:        #2E7D32;
  --color-warning:        #E65100;

  --shadow-sm: 0 1px 2px oklch(0.2 0.02 120 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.02 120 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.02 120 / 0.12);
}

/* ============================================
   DARK MODE
   ============================================ */
[data-theme="dark"] {
  --color-bg:             #0F1A0F;
  --color-surface:        #152015;
  --color-surface-2:      #1B271B;
  --color-surface-offset: #1A251A;
  --color-border:         #2E3E2E;
  --color-divider:        #243424;

  --color-text:           #D4DCD4;
  --color-text-muted:     #8A9A8A;
  --color-text-faint:     #5A6B5A;
  --color-text-inverse:   #0F1A0F;

  --color-primary:        #66BB6A;
  --color-primary-hover:  #4CAF50;
  --color-primary-active: #388E3C;
  --color-primary-light:  #1B3A1B;

  --color-accent:         #FFB74D;
  --color-accent-hover:   #FFA726;
  --color-accent-light:   #2A2010;

  --color-error:          #EF5350;
  --color-success:        #66BB6A;
  --color-warning:        #FF9800;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #0F1A0F;
    --color-surface:        #152015;
    --color-surface-2:      #1B271B;
    --color-surface-offset: #1A251A;
    --color-border:         #2E3E2E;
    --color-divider:        #243424;
    --color-text:           #D4DCD4;
    --color-text-muted:     #8A9A8A;
    --color-text-faint:     #5A6B5A;
    --color-text-inverse:   #0F1A0F;
    --color-primary:        #66BB6A;
    --color-primary-hover:  #4CAF50;
    --color-primary-active: #388E3C;
    --color-primary-light:  #1B3A1B;
    --color-accent:         #FFB74D;
    --color-accent-hover:   #FFA726;
    --color-accent-light:   #2A2010;
    --color-error:          #EF5350;
    --color-success:        #66BB6A;
    --color-warning:        #FF9800;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
    --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
  }
}

/* ============================================
   COMPONENTS
   ============================================ */

/* Skip link */
.skip-link {
  position: fixed;
  top: -100%;
  left: var(--space-4);
  z-index: 999;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  text-decoration: none;
}
.skip-link:focus {
  top: var(--space-4);
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.logo-group {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.logo-group:hover { opacity: 0.85; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.logo-text span {
  color: var(--color-primary);
}
.logo-tagline {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.main-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: all var(--transition-interactive);
}
.main-nav a:hover {
  color: var(--color-text);
  background: oklch(from var(--color-primary) l c h / 0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-primary) !important;
  color: var(--color-text-inverse) !important;
  padding: var(--space-2) var(--space-5) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: var(--text-sm) !important;
}
.nav-cta:hover {
  background: var(--color-primary-hover) !important;
}

/* Theme toggle */
.theme-toggle {
  padding: var(--space-2);
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
}
.theme-toggle:hover {
  color: var(--color-text);
  background: oklch(from var(--color-primary) l c h / 0.08);
}

/* Hamburger */
.mobile-menu-toggle {
  display: none;
  padding: var(--space-2);
  color: var(--color-text);
}
.hamburger {
  width: 24px; height: 18px;
  position: relative;
}
.hamburger span {
  display: block; position: absolute;
  width: 100%; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: rotate(45deg); top: 8px;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: rotate(-45deg); top: 8px;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-4);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.active { display: flex; flex-direction: column; gap: var(--space-2); }
.mobile-nav a {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-md);
}
.mobile-nav a:hover { background: var(--color-surface); }

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .header-inner { padding: var(--space-3) var(--space-4); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    oklch(0.12 0.03 145 / 0.92) 0%,
    oklch(0.12 0.03 145 / 0.75) 40%,
    oklch(0.12 0.03 145 / 0.4) 70%,
    oklch(0.12 0.03 145 / 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-16) var(--space-4);
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: oklch(1 0 0 / 0.12);
  backdrop-filter: blur(8px);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: #E8F5E9;
  margin-bottom: var(--space-6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid oklch(1 0 0 / 0.15);
}
.hero-badge svg {
  width: 14px; height: 14px;
  color: #FFB74D;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: var(--space-6);
  max-width: 14ch;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: normal;
  color: #81C784;
}
.hero-description {
  font-size: var(--text-lg);
  color: #C8E6C9;
  max-width: 48ch;
  margin-bottom: var(--space-8);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}
.hero-stats {
  display: flex;
  gap: var(--space-10);
  flex-wrap: wrap;
}
.hero-stat {
  text-align: left;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: #FFB74D;
}
.hero-stat-label {
  font-size: var(--text-xs);
  color: #A5D6A7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero { min-height: 85vh; }
  .hero h1 { max-width: 100%; }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      oklch(0.12 0.03 145 / 0.88) 0%,
      oklch(0.12 0.03 145 / 0.75) 50%,
      oklch(0.12 0.03 145 / 0.5) 100%
    );
  }
  .hero-stats { gap: var(--space-6); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-8);
  transition: all var(--transition-interactive);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary:active { transform: translateY(0); }

.btn-accent {
  background: var(--color-accent);
  color: #1A2E1A;
}
.btn-accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border: 2px solid oklch(1 0 0 / 0.3);
  color: #FFFFFF;
}
.btn-outline:hover {
  background: oklch(1 0 0 / 0.1);
  border-color: oklch(1 0 0 / 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-ghost:hover {
  background: var(--color-primary-light);
}

.btn-lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-4);
}
.section-alt {
  background: var(--color-surface);
}
.section-dark {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
}
.section-header {
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-16));
}
.section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}
.section-dark .section-label { color: #A5D6A7; }

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
}
.section-dark .section-subtitle { color: #C8E6C9; }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: var(--space-6);
}
.service-card {
  background: var(--color-surface-2);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   WHY CHOOSE US — Split Layout
   ============================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: center;
}
.split-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.reason-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.reason-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.reason-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reason-icon svg { width: 20px; height: 20px; }
.reason-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
}
.reason-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .split-layout {
    grid-template-columns: 1fr;
  }
  .split-image { aspect-ratio: 16/9; }
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  background: oklch(from var(--color-text-inverse) l c h / 0.2);
}
.process-step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 56px; height: 56px;
  border-radius: var(--radius-full);
  background: oklch(1 0 0 / 0.15);
  border: 2px solid oklch(1 0 0 / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: #FFB74D;
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.process-step p {
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.7);
  max-width: 24ch;
  margin-inline: auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .process-steps::before { display: none; }
  .process-step { text-align: left; display: flex; gap: var(--space-4); align-items: flex-start; }
  .step-number { margin: 0; flex-shrink: 0; width: 48px; height: 48px; }
  .process-step p { max-width: none; }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, oklch(0 0 0 / 0.7));
  padding: var(--space-6) var(--space-4) var(--space-4);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:first-child {
    grid-row: span 1;
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
  .gallery-caption { opacity: 1; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--color-surface-2);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
  color: var(--color-accent);
}
.testimonial-stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial-text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
}
.testimonial-name {
  font-weight: 600;
  font-size: var(--text-sm);
}
.testimonial-location {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================
   SERVICE AREA MAP / CTA Banner
   ============================================ */
.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.cta-banner-bg {
  position: absolute; inset: 0;
}
.cta-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    oklch(0.15 0.05 145 / 0.92) 0%,
    oklch(0.15 0.05 145 / 0.7) 100%
  );
}
.cta-banner-content {
  position: relative; z-index: 2;
  padding: var(--space-12) var(--space-8);
  max-width: 50ch;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-4);
}
.cta-banner p {
  color: #C8E6C9;
  font-size: var(--text-base);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

/* ============================================
   QUOTE FORM
   ============================================ */
.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: start;
}
.quote-form {
  background: var(--color-surface-2);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  box-shadow: var(--shadow-md);
}
.form-group {
  margin-bottom: var(--space-5);
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  transition: all var(--transition-interactive);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8);
}
.form-success.active { display: block; }
.form-success svg {
  width: 64px; height: 64px;
  color: var(--color-success);
  margin: 0 auto var(--space-4);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.form-success p {
  color: var(--color-text-muted);
}

.contact-info-side h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-6);
}
.contact-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  margin-bottom: var(--space-6);
}
.contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item h4 {
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: 2px;
}
.contact-item p, .contact-item a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
.contact-item a:hover { color: var(--color-primary); }

.emergency-box {
  background: linear-gradient(135deg, var(--color-accent-light), oklch(from var(--color-accent) l c h / 0.08));
  border: 1px solid oklch(from var(--color-accent) l c h / 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-top: var(--space-8);
}
.emergency-box h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.emergency-box p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.emergency-phone {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-text);
}
.emergency-phone a {
  color: inherit;
  text-decoration: none;
}
.emergency-phone a:hover { color: var(--color-primary); }

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding: var(--space-16) var(--space-4) var(--space-8);
}
.footer-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: var(--space-4);
  max-width: 36ch;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.footer-col a:hover { color: var(--color-primary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-bottom a {
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--color-primary); }

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  .footer-brand {
    grid-column: span 2;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: clamp(var(--space-6), 4vw, var(--space-12));
  flex-wrap: wrap;
  padding: var(--space-8) var(--space-4);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
}
.trust-item svg {
  width: 24px; height: 24px;
  color: var(--color-primary);
}
