:root {
  --ink: #17211c;
  --muted-ink: #5a675f;
  --leaf: #2c6b43;
  --field: #d8e58f;
  --grain: #f4c95d;
  --water: #2f8396;
  --clay: #b86b3b;
  --paper: #fbfaf3;
  --panel: #ffffff;
  --line: #d8ddcf;
  --shadow: 0 24px 80px rgba(23, 33, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(44, 107, 67, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(44, 107, 67, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(23, 33, 28, 0.1);
  background: rgba(251, 250, 243, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--grain);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Verdana, Geneva, sans-serif;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted-ink);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
}

.site-nav a {
  text-decoration: none;
}

.nav-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.primary-button {
  background: var(--leaf);
  color: white;
  box-shadow: 5px 5px 0 var(--ink);
}

.secondary-button {
  background: var(--paper);
  color: var(--ink);
}

.nav-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.nav-toggle {
  display: none;
  min-height: 42px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px) 44px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--leaf);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(46px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.12;
}

.lead {
  max-width: 740px;
  color: var(--muted-ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.facility-visual {
  position: relative;
  padding: clamp(22px, 4vw, 34px);
  border: 2px solid var(--ink);
  background:
    radial-gradient(circle at 20% 15%, rgba(244, 201, 93, 0.45), transparent 28%),
    linear-gradient(145deg, #f7f1d9, #e9f2df 54%, #d7e6e5);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.facility-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(23, 33, 28, 0.38);
  pointer-events: none;
}

.visual-title {
  position: relative;
  margin-bottom: 24px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.path-grid {
  position: relative;
  display: grid;
  gap: 12px;
}

.path-grid span {
  display: block;
  padding: 16px 18px;
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font-family: Verdana, Geneva, sans-serif;
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 800;
}

.path-grid span:nth-child(2) {
  margin-left: 22px;
}

.path-grid span:nth-child(3) {
  margin-left: 44px;
  background: var(--field);
}

.path-grid span:nth-child(4) {
  margin-left: 22px;
}

.facility-line {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 28px 0;
}

.facility-line span {
  width: 100%;
  height: 10px;
  border: 2px solid var(--ink);
  background: var(--clay);
}

.facility-line span:nth-child(2n) {
  background: var(--water);
}

.visual-metric {
  position: relative;
  display: grid;
  gap: 6px;
  max-width: 280px;
  padding: 18px;
  border: 2px solid var(--ink);
  background: var(--panel);
}

.visual-metric strong {
  font-size: 34px;
  line-height: 1;
}

.visual-metric span {
  color: var(--muted-ink);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  line-height: 1.4;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: white;
}

.stats-band div {
  padding: 28px clamp(16px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-band strong {
  display: block;
  margin-bottom: 6px;
  color: var(--grain);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.stats-band span {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
}

.content-section,
.cta-section {
  padding: clamp(54px, 8vw, 106px) clamp(18px, 5vw, 72px);
}

.muted {
  background: rgba(255, 255, 255, 0.54);
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 36px;
  align-items: start;
}

.content-section p,
.section-intro,
.cta-section p {
  max-width: 820px;
  color: var(--muted-ink);
  font-size: 18px;
  line-height: 1.65;
}

.info-panel {
  border: 2px solid var(--ink);
  background: var(--panel);
  box-shadow: 8px 8px 0 rgba(23, 33, 28, 0.16);
}

.info-panel dl {
  margin: 0;
}

.info-panel div {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.info-panel div:last-child {
  border-bottom: 0;
}

.info-panel dt {
  color: var(--leaf);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.info-panel dd {
  margin: 6px 0 0;
  font-size: 18px;
}

.feature-grid,
.budget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.feature-grid article,
.budget-grid article {
  min-height: 230px;
  padding: 24px;
  border: 2px solid var(--ink);
  background: var(--panel);
}

.feature-number {
  display: inline-block;
  margin-bottom: 28px;
  padding: 8px 10px;
  background: var(--grain);
  border: 2px solid var(--ink);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.partner-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-top: 28px;
}

.partner-list div {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-left: 8px solid var(--leaf);
  background: var(--panel);
  box-shadow: 0 1px 0 var(--line);
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 700;
}

.partner-list span {
  color: var(--leaf);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.budget-section {
  background: var(--ink);
  color: white;
}

.budget-section .section-kicker,
.budget-section p {
  color: #dce7d4;
}

.budget-grid {
  grid-template-columns: repeat(4, 1fr);
}

.budget-grid article {
  min-height: 190px;
  background: #223128;
  border-color: #e1ead3;
}

.budget-grid span {
  color: var(--field);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.budget-grid strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--grain);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.cta-section {
  text-align: center;
}

.cta-section h2,
.cta-section p {
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted-ink);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 2px solid var(--ink);
    background: var(--paper);
    box-shadow: 8px 8px 0 var(--ink);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .stats-band,
  .feature-grid,
  .budget-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(42px, 15vw, 66px);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .stats-band,
  .feature-grid,
  .budget-grid {
    grid-template-columns: 1fr;
  }

  .stats-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .path-grid span,
  .path-grid span:nth-child(2),
  .path-grid span:nth-child(3),
  .path-grid span:nth-child(4) {
    margin-left: 0;
  }
}
