/* ============================================================
   REVIVE SERVICES OF CENTRAL FLORIDA — Main Stylesheet
   Art Direction: Industrial-grade authority meets Florida warmth
   Palette: Deep charcoal + safety orange accent + warm white
   Fonts: Clash Display (headings) + Satoshi (body)
   ============================================================ */

/* ── GOOGLE + FONTSHARE FONTS loaded in HTML <head> ── */

:root,
[data-theme='light'] {
  /* Surfaces */
  --color-bg: #f4f7f4;
  --color-surface: #ffffff;
  --color-surface-2: #eef4ee;
  --color-surface-offset: #e2ede2;
  --color-divider: #c8d9c8;
  --color-border: #b5cab5;

  /* Text */
  --color-text: #0d1a0d;
  --color-text-muted: #4a6349;
  --color-text-faint: #8aaa89;
  --color-text-inverse: #ffffff;

  /* Brand: Forest Green */
  --color-primary: #1e6b2e;
  --color-primary-hover: #165222;
  --color-primary-active: #0e3a18;
  --color-primary-highlight: #d2e8d4;

  /* Accent: True Black */
  --color-dark: #0d0d0d;
  --color-dark-2: #1a1a1a;
  --color-dark-3: #2a2a2a;

  /* 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);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26,24,20,0.08);
  --shadow-md: 0 4px 16px rgba(26,24,20,0.10);
  --shadow-lg: 0 12px 40px rgba(26,24,20,0.14);

  /* 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, 1rem + 5.5vw, 6.5rem);

  /* 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;

  /* Widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts */
  --font-display: 'Clash Display', 'Arial Black', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;

  /* Brand identity overrides */
  --color-brand-white: #ffffff;
  --color-brand-black: #0d0d0d;
  --color-brand-green: #1e6b2e;
}

[data-theme='dark'] {
  --color-bg: #0a110a;
  --color-surface: #111811;
  --color-surface-2: #172017;
  --color-surface-offset: #111811;
  --color-divider: #1f2e1f;
  --color-border: #2c3f2c;
  --color-text: #e0ede0;
  --color-text-muted: #7a9c78;
  --color-text-faint: #4a6549;
  --color-text-inverse: #0d0d0d;
  --color-primary: #4caf62;
  --color-primary-hover: #3d9651;
  --color-primary-active: #2e7d3f;
  --color-primary-highlight: #162a18;
  --color-dark: #e8f5e9;
  --color-dark-2: #c8dfc9;
  --color-dark-3: #a0c4a2;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.25);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.35);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.45);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0a110a;
    --color-surface: #111811;
    --color-surface-2: #172017;
    --color-surface-offset: #111811;
    --color-divider: #1f2e1f;
    --color-border: #2c3f2c;
    --color-text: #e0ede0;
    --color-text-muted: #7a9c78;
    --color-text-faint: #4a6549;
    --color-text-inverse: #0d0d0d;
    --color-primary: #4caf62;
    --color-primary-hover: #3d9651;
    --color-primary-active: #2e7d3f;
    --color-primary-highlight: #162a18;
    --color-dark: #e8f5e9;
    --color-dark-2: #c8dfc9;
    --color-dark-3: #a0c4a2;
  }
}

/* ── BASE RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.15; }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
::selection { background: oklch(from var(--color-primary) l c h / 0.25); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
button { cursor: pointer; background: none; border: none; }
a, button, [role='button'], input, textarea, select {
  transition: color var(--transition-interactive), background var(--transition-interactive), border-color var(--transition-interactive), box-shadow var(--transition-interactive), opacity var(--transition-interactive);
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ── LAYOUT UTILITIES ── */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
}
.container--narrow { max-width: var(--content-narrow); }
.container--default { max-width: var(--content-default); }

/* ── NAVIGATION ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition-interactive);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo__icon { width: 40px; height: 40px; flex-shrink: 0; }
.nav-logo__text { display: flex; flex-direction: column; }
.nav-logo__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.nav-logo__tagline { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}
.nav-links 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);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current='page'] { color: var(--color-text); background: var(--color-surface-offset); }

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

.nav-phone {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--color-primary); }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  border-radius: var(--radius-md);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-interactive), opacity var(--transition-interactive);
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: var(--space-4) 0 var(--space-6);
  border-top: 1px solid var(--color-divider);
  background: var(--color-bg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-3) clamp(var(--space-5), 5vw, var(--space-16));
  border-bottom: 1px solid var(--color-divider);
}
.mobile-menu a:hover { color: var(--color-primary); background: var(--color-surface-offset); }
.mobile-menu .mobile-cta {
  margin: var(--space-4) clamp(var(--space-5), 5vw, var(--space-16)) 0;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  padding: 0.75em 1.5em;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); }
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-outline:hover { background: var(--color-surface-offset); border-color: var(--color-text-muted); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-lg { padding: 0.9em 2em; font-size: var(--text-base); }
.btn-sm { padding: 0.5em 1em; font-size: var(--text-xs); }

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d0d0d;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.55) 45%, rgba(13,13,13,0.15) 75%, rgba(30,107,46,0.20) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-20);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-primary);
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: var(--space-6);
  max-width: 14ch;
}
.hero__title span { color: var(--color-primary); }
.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  margin-bottom: var(--space-10);
  line-height: 1.55;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-12);
  padding-top: var(--space-12);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
}
.hero__trust-item strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
  line-height: 1;
}
.hero__trust-item span {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ── SECTION STYLES ── */
section { padding-block: clamp(var(--space-12), 8vw, var(--space-24)); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-5);
}
.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
  line-height: 1.65;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: none;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: auto;
}

/* ── WHY CHOOSE US ── */
.why-section { background: #0d0d0d; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.why-content .section-title { color: #fff; }
.why-content .section-subtitle { color: rgba(255,255,255,0.65); }
.why-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.why-feature {
  display: flex;
  gap: var(--space-4);
}
.why-feature__icon {
  width: 44px;
  height: 44px;
  background: rgba(30,107,46,0.18);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.why-feature__text h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-1);
}
.why-feature__text p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  max-width: none;
}
.why-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-image__badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-weight: 700;
}
.why-image__badge strong { display: block; font-size: var(--text-xl); line-height: 1; }
.why-image__badge span { font-size: var(--text-xs); opacity: 0.85; text-transform: uppercase; letter-spacing: 0.08em; }

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

/* ── SERVICE AREAS ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-10);
}
.area-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  text-decoration: none;
  color: inherit;
}
.area-card:hover { border-color: var(--color-primary); background: var(--color-surface-offset); }
.area-card__county {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.area-card__cities {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--color-surface-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { display: flex; gap: 3px; color: #f59e0b; }
.testimonial-quote {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.65;
  font-style: italic;
  max-width: none;
}
.testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.testimonial-author strong { font-size: var(--text-sm); font-weight: 700; color: var(--color-text); }
.testimonial-author span { font-size: var(--text-xs); color: var(--color-text-muted); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--color-brand-black, #0d0d0d);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-brand-white, #fff);
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 20ch;
}
.cta-band__sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  margin-top: var(--space-3);
  max-width: none;
}
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.btn-cta-dark {
  background: var(--color-brand-green, #1e6b2e);
  color: #fff;
  border: 2px solid var(--color-brand-green, #1e6b2e);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 0.85em 1.75em;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.btn-cta-dark:hover { background: #165222; border-color: #165222; }
.btn-cta-white {
  background: #fff;
  color: var(--color-brand-green, #1e6b2e);
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 0.85em 1.75em;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.btn-cta-white:hover { background: rgba(255,255,255,0.9); }

/* ── CONTACT FORM ── */
.contact-section { background: var(--color-surface-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: var(--space-8); }
.contact-detail {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.contact-detail__text strong { display: block; font-size: var(--text-sm); font-weight: 700; color: var(--color-text); }
.contact-detail__text span { font-size: var(--text-sm); color: var(--color-text-muted); }
.contact-detail__text a { color: var(--color-primary); text-decoration: none; }
.contact-detail__text a:hover { text-decoration: underline; }

.quote-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 500px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.65em 0.9em;
  font-size: var(--text-sm);
  color: var(--color-text);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 0;
  border-color: var(--color-primary);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: var(--space-2); width: 100%; justify-content: center; }

/* ── PAGE HERO (interior) ── */
.page-hero {
  background: #0d0d0d;
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,107,46,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: var(--space-5);
}
.page-hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  max-width: 56ch;
  margin-bottom: var(--space-8);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-5);
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ── SERVICE DETAIL PAGE ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
@media (max-width: 768px) { .service-detail { grid-template-columns: 1fr; } }
.service-detail img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-block: var(--space-6);
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text);
  max-width: none;
}
.service-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-top: 0.45em;
  flex-shrink: 0;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-10);
  counter-reset: step;
}
.process-step {
  display: flex;
  gap: var(--space-5);
  counter-increment: step;
}
.process-step__num {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  flex-shrink: 0;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.process-step p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: none; }

/* ── AREAS PAGE ── */
.county-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}
.county-block__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--color-primary);
}
.cities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-2) var(--space-4);
}
.cities-list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  max-width: none;
}
.cities-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* ── FOOTER ── */
.site-footer {
  background: #0d0d0d;
  color: rgba(255,255,255,0.7);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin-top: var(--space-4);
  max-width: 36ch;
  line-height: 1.65;
}
.footer-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: var(--space-4);
}
.footer-phone:hover { color: #fff; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col ul li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--color-primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--color-primary); }

/* ── STATS BAR ── */
.stats-bar { background: var(--color-brand-green, #1e6b2e); padding-block: var(--space-10); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat span {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-1);
  display: block;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-10); }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  user-select: none;
}
.faq-question:hover { color: var(--color-primary); }
.faq-icon { color: var(--color-primary); flex-shrink: 0; transition: transform var(--transition-interactive); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}
.faq-item.open .faq-answer { display: block; }

/* ── THEME TOGGLE ── */
.theme-toggle {
  background: var(--color-surface-offset);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  cursor: pointer;
}
.theme-toggle:hover { color: var(--color-primary); background: var(--color-primary-highlight); }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }
.text-center .section-label { justify-content: center; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }
.gap-top { margin-top: clamp(var(--space-12), 6vw, var(--space-24)); }
.two-col-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
@media (max-width: 768px) { .two-col-content { grid-template-columns: 1fr; } }

/* ===== Junk Removal Estimator ===== */
.estimator-section { padding: 80px 0; }
.estimator { max-width: 880px; margin: 32px auto 0; background: #fff; border-radius: 16px; border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 8px 32px rgba(0,0,0,0.04); padding: 32px; }
[data-theme="dark"] .estimator { background: #0f1a10; border-color: rgba(255,255,255,0.08); }

.est-steps { list-style: none; padding: 0; margin: 0 0 28px; display: flex; gap: 6px; flex-wrap: wrap; font-size: 12px; letter-spacing: 0.3px; }
.est-steps li { padding: 6px 10px; border-radius: 999px; background: rgba(0,0,0,0.04); color: #6b7280; font-weight: 500; }
[data-theme="dark"] .est-steps li { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); }
.est-steps li.is-active { background: #1e6b2e; color: #fff; }
.est-steps li.is-done { background: rgba(30,107,46,0.15); color: #1e6b2e; }
[data-theme="dark"] .est-steps li.is-done { background: rgba(167,215,180,0.15); color: #a7d7b4; }

.est-panel { animation: estFade 0.25s ease; }
.est-panel--success { text-align: center; padding: 24px 0; }
@keyframes estFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.est-panel__title { font-family: "Clash Display", sans-serif; font-size: 26px; color: #1e6b2e; margin: 0 0 8px; font-weight: 600; }
[data-theme="dark"] .est-panel__title { color: #a7d7b4; }
.est-panel__hint { color: #6b7280; margin: 0 0 24px; font-size: 15px; line-height: 1.6; }
[data-theme="dark"] .est-panel__hint { color: rgba(255,255,255,0.6); }

.loadsize-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
@media (max-width: 768px) { .loadsize-grid { grid-template-columns: repeat(2, 1fr); } }
.loadsize-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 18px 12px; border: 2px solid rgba(0,0,0,0.08); border-radius: 12px; cursor: pointer; transition: all 0.18s ease; background: #fafafa; }
[data-theme="dark"] .loadsize-card { background: rgba(255,255,255,0.02); border-color: rgba(255,255,255,0.08); }
.loadsize-card:hover { border-color: #1e6b2e; transform: translateY(-2px); }
.loadsize-card input { position: absolute; opacity: 0; }
.loadsize-card:has(input:checked) { border-color: #1e6b2e; background: rgba(30,107,46,0.05); box-shadow: 0 4px 12px rgba(30,107,46,0.15); }
.loadsize-card__bar { display: flex; align-items: flex-end; justify-content: center; width: 60px; height: 70px; background: rgba(0,0,0,0.05); border-radius: 6px; margin-bottom: 12px; padding: 4px; }
[data-theme="dark"] .loadsize-card__bar { background: rgba(255,255,255,0.05); }
.loadsize-card__bar > span { display: block; width: 100%; background: linear-gradient(180deg, #1e6b2e, #2d8a3f); border-radius: 4px; transition: height 0.2s ease; }
.loadsize-card__label { font-weight: 700; font-size: 14px; color: #1f2937; }
[data-theme="dark"] .loadsize-card__label { color: #fff; }
.loadsize-card__desc { font-size: 12px; color: #6b7280; margin-top: 2px; }
.loadsize-card__price { font-size: 13px; font-weight: 600; color: #1e6b2e; margin-top: 8px; }
[data-theme="dark"] .loadsize-card__price { color: #a7d7b4; }

.surcharge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px) { .surcharge-grid { grid-template-columns: 1fr; } }
.surcharge-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border: 1px solid rgba(0,0,0,0.08); border-radius: 10px; background: #fafafa; }
[data-theme="dark"] .surcharge-row { background: rgba(255,255,255,0.02); border-color: rgba(255,255,255,0.08); }
.surcharge-row__info { flex: 1; }
.surcharge-row__label { font-weight: 600; font-size: 14px; color: #1f2937; }
[data-theme="dark"] .surcharge-row__label { color: #fff; }
.surcharge-row__price { font-size: 12px; color: #6b7280; }
.qty-control { display: flex; align-items: center; gap: 6px; }
.qty-btn { width: 30px; height: 30px; border-radius: 6px; border: 1px solid rgba(0,0,0,0.15); background: #fff; cursor: pointer; font-size: 18px; line-height: 1; color: #1e6b2e; font-weight: 700; }
[data-theme="dark"] .qty-btn { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: #a7d7b4; }
.qty-val { min-width: 24px; text-align: center; font-weight: 600; font-variant-numeric: tabular-nums; }

.upload-dropzone { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 36px 20px; border: 2px dashed rgba(30,107,46,0.3); border-radius: 12px; text-align: center; cursor: pointer; background: rgba(30,107,46,0.02); transition: background 0.15s ease, border-color 0.15s ease; }
.upload-dropzone:hover, .upload-dropzone.is-drag { background: rgba(30,107,46,0.06); border-color: #1e6b2e; }
.upload-dropzone span { font-weight: 600; color: #1e6b2e; font-size: 16px; }
.upload-dropzone small { color: #6b7280; font-size: 13px; }
.upload-preview { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.upload-preview img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; border: 1px solid rgba(0,0,0,0.1); }
.upload-preview .upload-thumb { position: relative; }
.upload-preview .upload-remove { position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; border-radius: 50%; border: none; background: #1f2937; color: #fff; font-size: 14px; line-height: 1; cursor: pointer; }

.est-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .est-fields { grid-template-columns: 1fr; } }
.est-field { display: flex; flex-direction: column; gap: 6px; }
.est-field--full { grid-column: 1 / -1; }
.est-field__label { font-size: 13px; font-weight: 600; color: #374151; }
[data-theme="dark"] .est-field__label { color: rgba(255,255,255,0.8); }
.est-field input, .est-field select, .est-field textarea { padding: 12px 14px; border: 1px solid rgba(0,0,0,0.15); border-radius: 8px; font-family: "Satoshi", sans-serif; font-size: 15px; background: #fff; color: #1f2937; transition: border-color 0.15s ease; }
[data-theme="dark"] .est-field input, [data-theme="dark"] .est-field select, [data-theme="dark"] .est-field textarea { background: rgba(255,255,255,0.05); color: #fff; border-color: rgba(255,255,255,0.15); }
.est-field input:focus, .est-field select:focus, .est-field textarea:focus { outline: none; border-color: #1e6b2e; box-shadow: 0 0 0 3px rgba(30,107,46,0.15); }

.est-error { color: #991b1b; font-size: 14px; min-height: 20px; margin: 12px 0 0; }
.est-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 28px; flex-wrap: wrap; }
.est-actions--stack { flex-direction: column; align-items: stretch; }
.est-actions--stack .btn { width: 100%; justify-content: center; }
.btn-ghost { background: transparent; color: #1e6b2e; border: 1px solid rgba(30,107,46,0.25); padding: 12px 20px; border-radius: 8px; font-weight: 600; text-decoration: none; cursor: pointer; font-family: inherit; font-size: 15px; }
.btn-ghost:hover { background: rgba(30,107,46,0.05); }

.est-result { background: linear-gradient(135deg, #1e6b2e, #164d20); color: #fff; border-radius: 14px; padding: 28px; margin: 20px 0 16px; }
.est-result__row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 15px; }
.est-result__row + .est-result__row { border-top: 1px solid rgba(255,255,255,0.15); }
.est-result__total { font-size: 24px; font-weight: 700; padding-top: 14px; margin-top: 6px; border-top: 2px solid rgba(255,255,255,0.4); }
.est-fineprint { font-size: 13px; color: #6b7280; margin: 0 0 16px; line-height: 1.6; }

.date-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px; margin: 0 0 18px; }
.date-card { padding: 14px 8px; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; background: #fff; cursor: pointer; text-align: center; font-family: inherit; transition: all 0.15s ease; }
[data-theme="dark"] .date-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.date-card:hover { border-color: #1e6b2e; }
.date-card.is-selected { background: #1e6b2e; color: #fff; border-color: #1e6b2e; }
.date-card__day { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.7; }
.date-card__num { font-size: 22px; font-weight: 700; line-height: 1.1; margin: 4px 0; }
.date-card__mo { font-size: 11px; opacity: 0.7; }
.window-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.window-btn { padding: 16px; border: 1px solid rgba(0,0,0,0.1); border-radius: 10px; background: #fff; cursor: pointer; font-family: inherit; font-weight: 600; font-size: 15px; display: flex; flex-direction: column; gap: 4px; align-items: center; }
[data-theme="dark"] .window-btn { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); color: #fff; }
.window-btn span { font-size: 13px; font-weight: 500; color: #6b7280; }
.window-btn.is-selected { background: #1e6b2e; color: #fff; border-color: #1e6b2e; }
.window-btn.is-selected span { color: rgba(255,255,255,0.85); }
.window-btn:disabled, .window-btn.is-full { background: rgba(0,0,0,0.04); color: #9ca3af; border-color: rgba(0,0,0,0.06); cursor: not-allowed; }
[data-theme="dark"] .window-btn:disabled, [data-theme="dark"] .window-btn.is-full { background: rgba(255,255,255,0.02); color: #6b7280; }
.window-btn:disabled span, .window-btn.is-full span { color: #9ca3af; }
.window-btn__hint { display: inline-block; margin-top: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #b91c1c; }

.date-card:disabled, .date-card.is-closed, .date-card.is-full { background: rgba(0,0,0,0.03); color: #9ca3af; cursor: not-allowed; border-color: rgba(0,0,0,0.05); }
[data-theme="dark"] .date-card:disabled, [data-theme="dark"] .date-card.is-closed, [data-theme="dark"] .date-card.is-full { background: rgba(255,255,255,0.02); color: #6b7280; }
.date-card:disabled:hover, .date-card.is-closed:hover, .date-card.is-full:hover { border-color: rgba(0,0,0,0.05); }
.date-card__status { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #b91c1c; margin-top: 4px; }
.date-card__status--low { color: #b45309; }

.est-success-icon { width: 64px; height: 64px; border-radius: 50%; background: #1e6b2e; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 700; margin-bottom: 16px; }

/* ===== Recent Work Gallery (landing page) ===== */
.gallery-section { padding: 80px 0; background: rgba(0,0,0,0.02); }
[data-theme="dark"] .gallery-section { background: rgba(255,255,255,0.02); }
.gallery-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  grid-column: span 2;
  grid-row: span 1;
  background: #1a1a1a;
  isolation: isolate;
}
.gallery-tile--lg { grid-column: span 3; grid-row: span 2; }
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.gallery-tile:hover img { transform: scale(1.05); }
.gallery-tile__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gallery-tile__tag {
  display: inline-block;
  width: max-content;
  background: #1e6b2e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.gallery-tile__title {
  font-family: "Clash Display", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }
  .gallery-tile { grid-column: span 2; }
  .gallery-tile--lg { grid-column: span 4; grid-row: span 1; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-tile, .gallery-tile--lg { grid-column: span 1; grid-row: span 1; }
}

/* ===== Service card image headers (landing page) ===== */
.service-card { overflow: hidden; }
.service-card__media {
  display: block;
  width: calc(100% + 48px);
  height: 180px;
  margin: -28px -24px 22px;
  object-fit: cover;
  background: #f3f4f6;
}
@media (max-width: 768px) { .service-card__media { height: 160px; } }
