:root {
  --bg: #F7F4EF;
  --fg: #1A1714;
  --accent: #D95F1A;
  --accent-warm: #F2A25C;
  --muted: #8A847A;
  --surface: #FFFFFF;
  --surface-alt: #EDE9E0;
  --border: #DDD8CE;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 6rem;
  --radius: 6px;
  --max-w: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* SECTION LABEL */
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

/* HERO */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 16, 12, 0.82) 0%,
    rgba(20, 16, 12, 0.55) 60%,
    rgba(20, 16, 12, 0.30) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
  width: 100%;
}
.hero-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: var(--space-md);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: var(--space-lg);
}
.hero-headline em {
  color: var(--accent-warm);
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 44ch;
  line-height: 1.7;
}
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: 0 var(--space-lg) var(--space-xl);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  min-width: 130px;
}
.card-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.card-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.card-unit {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 2px;
}

/* SERVICES */
.services {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
  border-top: 1px solid var(--border);
}
.services-header {
  margin-bottom: var(--space-xl);
}
.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-xl) var(--space-lg);
}
.service-icon {
  color: var(--accent);
  margin-bottom: var(--space-md);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--fg);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* CTA BUTTON */
.cta-button {
  display: inline-block;
  margin-top: var(--space-lg);
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.02em;
}
.cta-button:hover {
  background: #b84d14;
  transform: translateY(-1px);
}

/* SERVICE AREA */
.service-area {
  background: var(--surface-alt);
  padding: var(--space-2xl) var(--space-lg);
  border-top: 1px solid var(--border);
}
.service-area-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.service-area-header {
  margin-bottom: var(--space-xl);
}
.service-area-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.county-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.county-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-xl) var(--space-lg);
}
.county-card.active .county-badge {
  background: var(--accent);
  color: #fff;
}
.county-card.expanding .county-badge {
  background: var(--accent-warm);
  color: var(--fg);
}
.county-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}
.county-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.county-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* DIFFERENCE */
.difference {
  background: var(--fg);
  color: var(--bg);
  padding: var(--space-2xl) var(--space-lg);
}
.diff-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.difference .section-label {
  color: var(--accent-warm);
}
.diff-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin-bottom: var(--space-lg);
}
.diff-body {
  font-size: 1rem;
  color: rgba(247,244,239,0.7);
  max-width: 58ch;
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.diff-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.pill {
  background: rgba(247,244,239,0.1);
  border: 1px solid rgba(247,244,239,0.2);
  color: rgba(247,244,239,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* PROCESS */
.process {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
  border-top: 1px solid var(--border);
}
.process-header {
  margin-bottom: var(--space-xl);
}
.process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.step {
  padding: var(--space-xl) var(--space-lg) var(--space-xl) 0;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }
.step:not(:first-child) { padding-left: var(--space-xl); }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--surface-alt);
  line-height: 1;
  margin-bottom: var(--space-md);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  background: var(--fg);
  padding: var(--space-2xl) var(--space-lg);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin-bottom: var(--space-md);
}
.closing p {
  font-size: 1rem;
  color: rgba(247,244,239,0.65);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.7;
}
.closing .cta-button {
  background: var(--accent-warm);
  color: var(--fg);
}
.closing .cta-button:hover {
  background: #e09040;
}

/* FOOTER */
.footer {
  background: var(--fg);
  color: rgba(247,244,239,0.5);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--bg);
  margin-bottom: var(--space-xs);
}
.footer-meta {
  font-size: 0.8rem;
  margin-bottom: 4px;
}
.footer-license {
  font-size: 0.72rem;
  color: rgba(247,244,239,0.35);
  letter-spacing: 0.05em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }
  .hero-inner {
    padding: var(--space-xl) var(--space-md);
  }
  .hero-visual {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 var(--space-md) var(--space-xl);
  }
  .hero-card {
    min-width: 100px;
    flex: 1;
  }
  .county-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .step {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 var(--space-lg) 0;
  }
  .step:not(:first-child) { padding-left: 0; }
  .step:last-child { border-bottom: none; }
  .nav-inner, .services, .process, .service-area {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
}