@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   Mobile Land Clearing — Classic Modern Design
   Forest green primary, warm amber accent
   ============================================ */
:root {
  --forest: #1a3d2e;
  --forest-light: #2d5a3d;
  --forest-dark: #0f2a1e;
  --amber: #c17817;
  --amber-light: #d9912e;
  --amber-dark: #9a5e12;
  --cream: #faf9f7;
  --cream-dark: #f3f1ed;
  --white: #ffffff;
  --black: #1c1c1e;
  --charcoal: #2d2d30;
  --text: #1c1c1e;
  --text-secondary: #6b6b6e;
  --text-muted: #9a9a9e;
  --border: rgba(0,0,0,0.08);
  --border-light: rgba(0,0,0,0.04);
  --glass: rgba(255,255,255,0.78);
  --glass-border: rgba(255,255,255,0.5);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --radius-pill: 9999px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: all 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--cream); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest-light); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--amber); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   DESKTOP HEADER — Floating logo (left) + pill nav (right)
   ============================================ */

.brand-bar {
  display: flex;
  position: fixed;
  top: 1rem;
  left: 1.5rem;
  z-index: 1002;
  pointer-events: auto;
}
.brand-bar .logo-float {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.brand-bar .logo-float:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.brand-bar .logo-float img {
  height: 110px;
  width: auto;
  display: block;
}

.nav-pill-bar {
  display: flex;
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 1001;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  padding: 0.4rem 0.5rem;
  gap: 0.05rem;
  align-items: center;
}
.nav-pill-bar a {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-pill-bar a:hover {
  background: rgba(26,61,46,0.08);
  color: var(--forest);
}
.nav-pill-bar a.phone-pill {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--forest);
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  margin-left: 0.2rem;
  box-shadow: 0 2px 8px rgba(26,61,46,0.25);
}
.nav-pill-bar a.phone-pill:hover {
  background: var(--forest-dark);
  color: #fff;
}
.nav-pill-bar a.phone-pill svg {
  width: 13px;
  height: 13px;
}

/* Hide unified desktop header (replaced by separated components) */
.site-header-desktop { display: none; }

/* Legacy mobile header */
.site-header { display: none; }

/* ============================================
   MOBILE HEADER — Floating logo only
   ============================================ */
@media (max-width: 768px) {
  .site-header-desktop { display: none; }
  .brand-bar { display: none; }
  .nav-pill-bar { display: none; }

  .site-header {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border: none;
    pointer-events: none;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 0.75rem 1rem;
    pointer-events: auto;
  }

  /* Logo in white glass square — BIG, shrinks on scroll */
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  .logo.scrolled { padding: 0.4rem 0.7rem; }
  .logo:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
  .logo img { height: 115px; width: auto; transition: var(--transition); }
  .logo.scrolled img { height: 60px; }

  /* Push content below floating logo */
  .hero { padding-top: 9rem; }
}

/* ============================================
   FLOATING CALL CTA (Desktop only)
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.floating-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(193,120,23,0.4), 0 0 0 4px rgba(193,120,23,0.1);
  transition: var(--transition);
  animation: pulse-cta 2.5s ease-in-out infinite;
}
.floating-cta-btn:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 32px rgba(193,120,23,0.5), 0 0 0 6px rgba(193,120,23,0.15);
}
.floating-cta-btn svg { width: 28px; height: 28px; }
.floating-cta-label {
  background: var(--forest);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  letter-spacing: 0.02em;
}
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 6px 24px rgba(193,120,23,0.4), 0 0 0 4px rgba(193,120,23,0.1); }
  50% { box-shadow: 0 8px 32px rgba(193,120,23,0.5), 0 0 0 10px rgba(193,120,23,0); }
}

@media (max-width: 768px) {
  .floating-cta { display: none; }
}

/* ============================================
   BOTTOM NAV (Mobile) — 7 items, compact
   ============================================ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.02);
  padding: 0.35rem 0.4rem;
  gap: 0.05rem;
  max-width: calc(100vw - 1rem);
}
.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  min-width: 42px;
  padding: 0.25rem 0.3rem;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  font-weight: 500;
  transition: var(--transition-fast);
  letter-spacing: 0.01em;
  line-height: 1;
}
.bottom-nav a svg { width: 18px; height: 18px; stroke-width: 1.8; }
.bottom-nav a.active,
.bottom-nav a:hover {
  color: var(--forest);
  background: rgba(26,61,46,0.08);
}
.bottom-nav a.active { font-weight: 600; }

@media (max-width: 768px) {
  .bottom-nav { display: flex; }
  body { padding-bottom: 78px; }
}
@media (max-width: 400px) {
  .bottom-nav { padding: 0.3rem 0.25rem; }
  .bottom-nav a { min-width: 38px; padding: 0.2rem 0.2rem; font-size: 0.47rem; }
  .bottom-nav a svg { width: 16px; height: 16px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  background: linear-gradient(180deg, rgba(15,42,30,0.35) 0%, rgba(15,42,30,0.75) 100%), url('../images/hero.jpg') center/cover no-repeat;
  color: white;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(15,42,30,0.8) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero .logo-hero {
  height: 72px;
  width: 260px;
  display: block;
  object-fit: contain;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
  font-style: italic;
}
.hero h1 span { font-style: normal; font-weight: 800; }
.hero p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.6;
  font-weight: 300;
}

/* ============================================
   HERO WITH FORM — Desktop grid
   ============================================ */
.hero-with-form {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-with-form > div:first-child {
  max-width: 600px;
}
.hero-form-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  max-width: 440px;
  margin-left: auto;
}
.hero-form-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-form-card .form-input {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.hero-form-card .form-input::placeholder { color: rgba(255,255,255,0.5); }
.hero-form-card .form-input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(193,120,23,0.2);
  background: rgba(255,255,255,0.2);
}
.hero-form-card .btn-primary { width: 100%; }
.hero-form-card .form-label { color: rgba(255,255,255,0.85); }
.hero-form-card .checkbox-group { color: rgba(255,255,255,0.6); font-size: 0.75rem; }
.hero-form-card .checkbox-group a { color: var(--amber-light); }

@media (max-width: 1024px) {
  .hero-with-form { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-with-form > div:first-child { max-width: 100%; }
  .hero-form-card { max-width: 100%; margin-left: 0; }
  .hero p { max-width: 100%; }
}
@media (max-width: 768px) {
  .hero { min-height: 85vh; padding: 7rem 0 4rem; text-align: center; }
  .hero h1 { font-size: 1.8rem; }
  .hero .logo-hero { height: 70px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-form-card { padding: 1.5rem; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,61,46,0.3);
}
.btn-primary:hover {
  background: var(--forest-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(26,61,46,0.4);
  color: #fff;
}
.btn-secondary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 4px 16px rgba(193,120,23,0.3);
}
.btn-secondary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  color: #fff;
}
.btn-outline {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  box-shadow: none;
}
.btn-outline:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); color: #fff; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 5rem 0; }
.section-alt { background: var(--cream-dark); }
.section-dark { background: var(--black); color: #fff; }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--text);
  line-height: 1.2;
}
.section-dark .section-header h2 { color: #fff; }
.section-header p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.55; font-weight: 300; }

/* ============================================
   CARDS
   ============================================ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover { transform: translateY(-5px) scale(1.01); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 190px; object-fit: cover; border-bottom: 1px solid var(--border-light); }
.card-body { padding: 1.4rem; }
.card-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.card-body h3 a { color: var(--text); }
.card-body h3 a:hover { color: var(--forest); opacity: 1; }
.card-body p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.5; font-weight: 300; }

/* ============================================
   CALCULATOR
   ============================================ */
.calculator-section {
  background: linear-gradient(160deg, var(--black) 0%, var(--charcoal) 50%, var(--black) 100%);
  color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.calculator-section::before {
  content: '';
  position: absolute;
  top: -60%; left: -40%;
  width: 180%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(26,61,46,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.calculator-container { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.calculator-header { text-align: center; margin-bottom: 2rem; }
.calculator-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.calculator-header p { opacity: 0.65; font-size: 0.95rem; font-weight: 300; }

/* Prevent height jumping between steps */
#cost-calculator { min-height: 520px; }

.step-indicator { display: flex; justify-content: center; gap: 0.6rem; margin-bottom: 2rem; }
.step-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: var(--transition);
}
.step-dot.active { background: var(--amber); transform: scale(1.3); box-shadow: 0 0 12px rgba(193,120,23,0.4); }
.step-dot.completed { background: rgba(193,120,23,0.5); }

.calculator-step { display: none; animation: fadeInUp 0.45s ease; }
.calculator-step.active { display: block; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.map-container {
  width: 100%;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.map-container #calc-map { width: 100%; height: 100%; border: none; border-radius: var(--radius); }

/* Density Cards */
.density-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.density-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.density-card:hover, .density-card.selected {
  border-color: var(--amber);
  background: rgba(193,120,23,0.08);
  transform: translateY(-3px);
}
.density-card.selected { box-shadow: 0 0 0 3px rgba(193,120,23,0.2), 0 8px 24px rgba(0,0,0,0.2); }
.density-card img { width: 100%; height: 120px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 0.5rem; }
.density-card h4 { font-size: 0.9rem; margin-bottom: 0.15rem; font-weight: 600; }
.density-card p { font-size: 0.72rem; opacity: 0.65; font-weight: 300; }

/* Inputs */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--forest-light);
  box-shadow: 0 0 0 3px rgba(26,61,46,0.1);
}
.calculator-step .form-input,
.calculator-step .form-select,
.calculator-step .form-textarea {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.calculator-step .form-input:focus,
.calculator-step .form-select:focus,
.calculator-step .form-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(193,120,23,0.15);
  background: rgba(255,255,255,0.14);
}
.calculator-step .form-input::placeholder { color: rgba(255,255,255,0.4); }

/* Range Slider */
.range-wrap { margin: 1rem 0; }
.range-wrap input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
  outline: none;
  -webkit-appearance: none;
}
.range-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--amber);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(193,120,23,0.4);
}
.range-value {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 0.5rem;
  color: var(--amber);
  letter-spacing: -0.02em;
  font-family: 'Playfair Display', Georgia, serif;
}

/* Number Stepper */
.number-stepper { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.number-stepper button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  background: transparent;
  color: var(--amber);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.number-stepper button:hover { background: var(--amber); color: #fff; }
.number-stepper input {
  width: 80px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.calc-buttons { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; }
.calc-buttons.center { justify-content: center; }

/* Result Box */
.result-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.result-box.blurred .result-value { filter: blur(10px); user-select: none; opacity: 0.5; }
.result-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.02em;
  transition: filter 0.5s ease;
}
.result-label { font-size: 0.8rem; opacity: 0.6; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }

/* ============================================
   FORMS
   ============================================ */
.contact-form { max-width: 580px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
}
.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 1px;
  accent-color: var(--forest);
  flex-shrink: 0;
}
.checkbox-group a { color: var(--forest-light); text-decoration: underline; }

/* ============================================
   FEATURES
   ============================================ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.feature-item { text-align: center; }
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(26,61,46,0.25);
}
.feature-item h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.feature-item p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.5; font-weight: 300; }

/* ============================================
   TABLES
   ============================================ */
.table-wrap { overflow-x: auto; margin: 2rem 0; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; font-size: 0.88rem; background: var(--white); border-radius: var(--radius); overflow: hidden; }
th, td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--border-light); }
th {
  background: linear-gradient(135deg, var(--forest-dark), var(--forest));
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
tr:hover { background: var(--cream); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--black); color: rgba(255,255,255,0.5); padding: 3rem 0 1.5rem; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2.5rem; }
.footer-brand { flex: 1 1 220px; min-width: 220px; }
.footer-col { flex: 1 1 130px; min-width: 130px; }
.footer-brand img { height: 48px; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.55; margin-bottom: 0.5rem; font-weight: 300; }
.footer-col h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 0.84rem; margin-bottom: 0.5rem; font-weight: 300; }
.footer-col a:hover { color: var(--amber); opacity: 1; }

/* Site credit */
.site-credit {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  padding-top: 0.5rem;
}
.site-credit a { color: rgba(255,255,255,0.4); text-decoration: none; }
.site-credit a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 300;
}
.footer-legal { text-align: right; line-height: 1.5; }

/* ============================================
   TWO COLUMN
   ============================================ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--black), var(--charcoal));
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%; left: -40%;
  width: 180%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(193,120,23,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.cta-banner p { position: relative; z-index: 1; opacity: 0.75; font-weight: 300; }
.cta-banner .btn { margin-top: 1.25rem; position: relative; z-index: 1; }

/* ============================================
   SEO CONTENT
   ============================================ */
.seo-content { max-width: 740px; margin: 0 auto; }
.seo-content h2, .seo-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}
.seo-content h2 { font-size: 1.5rem; }
.seo-content h3 { font-size: 1.2rem; }
.seo-content p { margin-bottom: 1rem; color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem; font-weight: 300; }
.seo-content ul { margin: 1rem 0 1rem 1.5rem; color: var(--text-secondary); }
.seo-content ul li { margin-bottom: 0.6rem; line-height: 1.6; font-weight: 300; }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; font-family: 'Inter', sans-serif; }
.breadcrumb a { color: var(--forest-light); }

/* ============================================
   SERVICE DETAIL
   ============================================ */
.service-detail h2 { color: var(--text); margin-bottom: 1rem; font-weight: 700; letter-spacing: -0.01em; }
.service-detail ul { list-style: none; margin: 1rem 0; }
.service-detail ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; color: var(--text-secondary); font-weight: 300; }
.service-detail ul li::before { content: ""; position: absolute; left: 0; top: 0.8rem; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.disclaimer { font-size: 0.75rem; color: var(--text-muted); font-style: italic; margin-top: 1rem; line-height: 1.5; font-weight: 300; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero { padding: 6rem 0 4rem; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hero { min-height: 85vh; padding: 7rem 0 4rem; align-items: center; text-align: center; }
  .hero .container { text-align: center; }
  .hero h1 { font-size: 1.8rem; }
  .hero .logo-hero { height: 70px; }
  .density-options { grid-template-columns: 1fr; }
  .footer-grid { gap: 1.25rem; }
  .footer-brand { flex: 1 1 100%; }
  .footer-col { flex: 1 1 140px; }
  .form-row { grid-template-columns: 1fr; }
  .calc-buttons { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { text-align: center; }
  .section { padding: 3rem 0; }
  .map-container { height: 220px; }
  #cost-calculator { min-height: 480px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
  .btn-lg { padding: 0.85rem 1.6rem; font-size: 0.9rem; }
  .hero-form-card { padding: 1.5rem; }
  .floating-cta { display: none; }
}

/* ============================================
   LOCAL HERO (sub-pages)
   ============================================ */
.local-hero {
  min-height: 60vh;
  padding: 10rem 0 4rem;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .local-hero { padding: 10rem 0 4rem; align-items: center; text-align: center; }
}
@media (max-width: 768px) {
  .local-hero { min-height: 50vh; padding: 10rem 0 3rem; align-items: center; text-align: center; }
}

/* ============================================
   HONEYPOT ANTI-SPAM (hidden from real users)
   ============================================ */
.honey-field {
  display: none !important;
}
