:root {
  --bg: #F7F5F0;
  --bg-alt: #EFEBE3;
  --fg: #1A1A18;
  --fg-muted: #5A5A53;
  --accent: #2D5016;
  --accent-light: #3D6B1E;
  --border: #D6D0C4;
  --card-bg: #FDFCF8;
}

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

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.2;
  font-weight: 600;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.nav-brand .brand-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-meta {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  padding: 96px 48px 80px;
  max-width: 900px;
  border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--fg);
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-optical-sizing: auto;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 40px;
}

/* FEATURES */
.features {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.features-header {
  margin-bottom: 56px;
}

.features-header h2 {
  font-size: 32px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.features-header p {
  font-size: 16px;
  color: var(--fg-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-card {
  background: var(--card-bg);
  padding: 40px 36px;
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.feature-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* DISTRICT SECTION */
.district-section {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.district-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.district-content h2 {
  font-size: 30px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.district-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.district-stats {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dstat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dstat-val {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.dstat-key {
  font-size: 13px;
  color: var(--fg-muted);
}

.district-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.district-map {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 28px;
}

.map-label {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.map-data {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* PROCESS */
.process {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.process h2 {
  font-size: 28px;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.step-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-body p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--fg);
}

.closing-inner {
  max-width: 700px;
}

.closing h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--bg);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.closing p {
  font-size: 16px;
  color: #A8A89F;
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: #5A8A3A;
  border-top: 1px solid #3A3A33;
  padding-top: 28px;
  letter-spacing: 0.01em;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.footer-links {
  font-size: 12px;
  color: var(--fg-muted);
}

.footer-sep {
  margin: 0 8px;
  opacity: 0.4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 64px 24px 56px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .features { padding: 56px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .district-section { grid-template-columns: 1fr; gap: 48px; padding: 56px 24px; }
  .district-visual { grid-template-columns: 1fr; }
  .process { padding: 56px 24px; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 72px 24px; }
  .footer { padding: 32px 24px; }
}