@font-face {
  font-family: "Now";
  src: url("/css/fonts/Now/Now-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --oldwood-green: #0f2a1d;
  --canopy-green: #1f5a3a;
  --moss-green: #6f8f5f;
  --parchment: #f4efe4;
  --mist-grey: #d9ded8;
  --charcoal: #1c1f1b;
  --white: #ffffff;
  --copper: #b5793a;
  --sky-blue-grey: #8fa8a5;
  --ink-soft: #455047;
  --shadow: 0 22px 70px rgba(15, 42, 29, 0.18);
  --shadow-soft: 0 12px 40px rgba(15, 42, 29, 0.12);
  --radius: 8px;
  --max-width: 1180px;
  --header-height: 74px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.oldwood-site {
  margin: 0;
  background: var(--parchment);
  color: var(--charcoal);
  font-family: "Inter", "Now", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.oldwood-site.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--oldwood-green);
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid var(--mist-grey);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled,
.site-header.header-light {
  background: rgba(15, 42, 29, 0.96);
  border-bottom-color: rgba(217, 222, 216, 0.16);
  box-shadow: 0 14px 32px rgba(15, 42, 29, 0.22);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1;
  white-space: nowrap;
}

.wordmark-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(244, 239, 228, 0.7);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.wordmark-mark::before,
.wordmark-mark::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.wordmark-mark::before {
  width: 2px;
  height: 22px;
  bottom: 4px;
}

.wordmark-mark::after {
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 45% 45%;
  top: 6px;
  background:
    radial-gradient(circle at 50% 58%, transparent 0 4px, currentColor 4.5px),
    currentColor;
  clip-path: polygon(50% 0, 84% 28%, 78% 74%, 50% 100%, 22% 74%, 16% 28%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.site-nav a,
.header-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-link:hover,
.header-link:focus-visible {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 8px;
}

.button,
.text-link,
.mobile-sticky-cta {
  min-height: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.text-link:focus-visible,
.menu-toggle:focus-visible,
.tab-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(181, 121, 58, 0.55);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--canopy-green);
  box-shadow: 0 10px 26px rgba(31, 90, 58, 0.22);
}

.button-primary:hover {
  background: #287047;
}

.button-light {
  color: var(--oldwood-green);
  background: var(--parchment);
  border-color: rgba(244, 239, 228, 0.7);
}

.button-light:hover {
  background: var(--white);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.button-dark-outline {
  color: var(--oldwood-green);
  border-color: rgba(15, 42, 29, 0.22);
  background: transparent;
}

.button-dark-outline:hover {
  border-color: var(--oldwood-green);
  background: rgba(15, 42, 29, 0.05);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 800;
}

.text-link:hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.hero {
  min-height: 86svh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 42px) 0 60px;
  color: var(--white);
  background: var(--oldwood-green);
  overflow: hidden;
}

.hero-media,
.image-band-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img,
.image-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before,
.image-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15, 42, 29, 0.94) 0%, rgba(15, 42, 29, 0.72) 44%, rgba(15, 42, 29, 0.32) 100%),
    linear-gradient(0deg, rgba(15, 42, 29, 0.72), rgba(15, 42, 29, 0.05) 45%, rgba(15, 42, 29, 0.38));
}

.hero::after,
.topo-layer {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    repeating-radial-gradient(ellipse at 22% 44%, transparent 0 24px, rgba(244, 239, 228, 0.42) 25px 26px, transparent 27px 56px),
    linear-gradient(rgba(244, 239, 228, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 228, 0.08) 1px, transparent 1px);
  background-size: 720px 480px, 72px 72px, 72px 72px;
}

.section-inner,
.hero-inner {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 900;
}

.hero .eyebrow {
  color: #d5a770;
}

h1,
h2,
h3,
.display-heading {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: 4.8rem;
  max-width: 980px;
}

.hero h1 {
  font-size: 4.3rem;
  max-width: 760px;
}

h2 {
  font-size: 4rem;
}

h3 {
  font-size: 1.48rem;
}

p {
  margin: 0;
}

.lead {
  font-size: 1.18rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 780px;
  margin-top: 20px;
}

.body-large {
  font-size: 1.18rem;
  line-height: 1.72;
  color: var(--ink-soft);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.trust-note {
  margin-top: 22px;
  color: rgba(244, 239, 228, 0.78);
  font-size: 0.95rem;
}

.hero-card {
  background: rgba(244, 239, 228, 0.92);
  color: var(--charcoal);
  border: 1px solid rgba(244, 239, 228, 0.5);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
  font-weight: 900;
  color: var(--oldwood-green);
}

.status-pill,
.phase-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(31, 90, 58, 0.1);
  color: var(--canopy-green);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.map-preview {
  min-height: 210px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 42, 29, 0.16);
  background:
    radial-gradient(circle at 68% 44%, rgba(181, 121, 58, 0.28) 0 8%, transparent 8.5%),
    radial-gradient(circle at 54% 60%, rgba(31, 90, 58, 0.36) 0 14%, transparent 14.5%),
    linear-gradient(140deg, rgba(143, 168, 165, 0.58), rgba(244, 239, 228, 0.8) 42%, rgba(111, 143, 95, 0.6)),
    repeating-linear-gradient(28deg, transparent 0 22px, rgba(15, 42, 29, 0.1) 23px 24px);
  position: relative;
  overflow: hidden;
}

.map-preview::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(181, 121, 58, 0.82);
  clip-path: polygon(12% 22%, 48% 8%, 84% 24%, 92% 64%, 66% 88%, 24% 78%, 4% 48%);
  background: rgba(181, 121, 58, 0.12);
}

.map-preview::after {
  content: "Illustrative restoration zone";
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 6px 9px;
  border-radius: 5px;
  background: rgba(15, 42, 29, 0.88);
  color: var(--parchment);
  font-size: 0.76rem;
  font-weight: 800;
}

.metric-chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.metric-chip {
  border: 1px solid rgba(15, 42, 29, 0.12);
  border-radius: 6px;
  padding: 10px;
  background: var(--white);
}

.metric-chip span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.metric-chip strong {
  display: block;
  color: var(--oldwood-green);
  font-size: 0.94rem;
  line-height: 1.25;
  margin-top: 4px;
}

.small-caption,
.fine-print {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.small-caption {
  margin-top: 12px;
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.section-light {
  background: var(--white);
}

.section-parchment {
  background: var(--parchment);
}

.section-mist {
  background: linear-gradient(180deg, #eef2ec, var(--mist-grey));
}

.section-dark {
  background: var(--oldwood-green);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    repeating-radial-gradient(ellipse at 68% 18%, transparent 0 20px, rgba(244, 239, 228, 0.5) 21px 22px, transparent 23px 54px),
    linear-gradient(rgba(244, 239, 228, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 228, 0.12) 1px, transparent 1px);
  background-size: 700px 460px, 80px 80px, 80px 80px;
}

.section-dark .section-inner {
  position: relative;
}

.section-dark .body-large,
.section-dark .section-subtitle,
.section-dark .fine-print {
  color: rgba(244, 239, 228, 0.78);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.68fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  margin-bottom: 42px;
}

.section-header.centered {
  display: block;
  text-align: center;
  max-width: 880px;
  margin: 0 auto 42px;
}

.section-subtitle {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.card-stack {
  display: grid;
  gap: 14px;
}

.info-card,
.metric-card,
.partner-card,
.tier-card,
.package-card,
.report-card,
.allocation-card {
  border-radius: var(--radius);
  border: 1px solid rgba(15, 42, 29, 0.12);
  background: var(--white);
  padding: clamp(18px, 2.5vw, 26px);
}

.info-card h3,
.metric-card h3,
.partner-card h3,
.tier-card h3,
.package-card h3,
.report-card h3,
.allocation-card h3 {
  color: var(--oldwood-green);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.info-card p,
.metric-card p,
.partner-card p,
.tier-card p,
.package-card p,
.report-card p,
.allocation-card p {
  color: var(--ink-soft);
}

.progress-card {
  border-radius: var(--radius);
  background: var(--oldwood-green);
  color: var(--white);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-soft);
}

.progress-card h3 {
  color: var(--white);
}

.progress-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(244, 239, 228, 0.16);
}

.progress-row span {
  color: rgba(244, 239, 228, 0.72);
}

.progress-row strong {
  text-align: right;
}

.progress-track {
  height: 12px;
  margin: 24px 0 18px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(244, 239, 228, 0.18);
}

.progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--canopy-green), #63a46b);
  transition: width 1100ms ease;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.timeline-step {
  border-radius: var(--radius);
  border: 1px solid rgba(244, 239, 228, 0.16);
  background: rgba(244, 239, 228, 0.07);
  padding: 24px;
  min-height: 260px;
}

.timeline-step h3 {
  color: var(--parchment);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.timeline-step p {
  color: rgba(244, 239, 228, 0.76);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 28px;
  align-items: start;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 188px 1fr;
  min-height: 610px;
  border: 1px solid rgba(15, 42, 29, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.dashboard-sidebar {
  background: var(--oldwood-green);
  color: var(--parchment);
  padding: 18px;
}

.dashboard-sidebar strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.dashboard-sidebar nav {
  display: grid;
  gap: 8px;
}

.dashboard-sidebar a {
  color: rgba(244, 239, 228, 0.78);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 0;
}

.dashboard-sidebar a[aria-current="page"],
.dashboard-sidebar a:hover {
  color: var(--white);
}

.dashboard-main {
  padding: 18px;
  background: #fbfaf6;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.dashboard-topbar h3 {
  font-size: 1.42rem;
  color: var(--oldwood-green);
}

.dashboard-topbar p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.tab-button {
  border: 1px solid rgba(15, 42, 29, 0.14);
  background: var(--white);
  color: var(--oldwood-green);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 850;
  cursor: pointer;
}

.tab-button[aria-selected="true"] {
  color: var(--white);
  background: var(--canopy-green);
  border-color: var(--canopy-green);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.dashboard-map-large {
  height: 294px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 42, 29, 0.12);
  background:
    radial-gradient(circle at 34% 42%, rgba(31, 90, 58, 0.38) 0 13%, transparent 13.4%),
    radial-gradient(circle at 60% 56%, rgba(181, 121, 58, 0.35) 0 9%, transparent 9.4%),
    radial-gradient(circle at 74% 32%, rgba(143, 168, 165, 0.6) 0 18%, transparent 18.4%),
    repeating-linear-gradient(18deg, rgba(15, 42, 29, 0.09) 0 1px, transparent 1px 24px),
    linear-gradient(140deg, #edf0e5, #cbd8c6 54%, #aec3bf);
}

.dashboard-map-large .zone-label,
.map-preview-page .zone-label {
  position: absolute;
  left: 26px;
  top: 26px;
  padding: 8px 11px;
  border-radius: 5px;
  color: var(--parchment);
  background: rgba(15, 42, 29, 0.9);
  font-weight: 900;
  font-size: 0.86rem;
}

.dashboard-map-large .zone-outline,
.map-preview-page .zone-outline {
  position: absolute;
  inset: 48px 70px 34px 96px;
  border: 3px solid var(--copper);
  background: rgba(181, 121, 58, 0.16);
  clip-path: polygon(0 28%, 34% 0, 78% 15%, 100% 56%, 70% 100%, 18% 88%);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.dashboard-widget {
  border: 1px solid rgba(15, 42, 29, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  padding: 14px;
  min-height: 104px;
}

.dashboard-widget span {
  display: block;
  color: var(--moss-green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dashboard-widget strong {
  display: block;
  color: var(--oldwood-green);
  margin-top: 4px;
}

.dashboard-widget p,
.dash-list li {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.dash-list {
  margin: 0;
  padding-left: 18px;
}

.terrain-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.62fr);
  height: clamp(680px, 82vh, 820px);
  min-height: 680px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--oldwood-green);
  border: 1px solid rgba(15, 42, 29, 0.16);
  box-shadow: var(--shadow);
}

.terrain-dashboard--wide {
  height: clamp(720px, 86vh, 880px);
  min-height: 740px;
}

.terrain-stage {
  position: relative;
  min-height: 680px;
  background:
    linear-gradient(130deg, rgba(15, 42, 29, 0.92), rgba(31, 90, 58, 0.72)),
    var(--oldwood-green);
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}

.terrain-stage:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: -3px;
}

.terrain-stage:active {
  cursor: grabbing;
}

.terrain-dashboard--wide .terrain-stage {
  min-height: 740px;
}

.terrain-stage.is-hovering-cell {
  cursor: pointer;
}

.terrain-canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.terrain-map-overlay,
.terrain-hover-label {
  position: absolute;
  left: 18px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(244, 239, 228, 0.18);
  background: rgba(15, 42, 29, 0.78);
  color: var(--parchment);
  backdrop-filter: blur(12px);
}

.terrain-map-overlay {
  top: 18px;
  display: grid;
  gap: 2px;
  border-radius: 7px;
  padding: 11px 13px;
}

.terrain-map-overlay span,
.terrain-hover-label {
  font-size: 0.78rem;
  font-weight: 850;
  color: rgba(244, 239, 228, 0.76);
}

.terrain-map-overlay strong {
  font-size: 0.98rem;
  color: var(--white);
}

.terrain-hover-label {
  bottom: 18px;
  right: 18px;
  border-radius: 6px;
  padding: 9px 12px;
}

.terrain-reset {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  cursor: pointer;
  border: 1px solid rgba(244, 239, 228, 0.22);
  background: rgba(15, 42, 29, 0.78);
  color: var(--parchment);
  border-radius: 7px;
  padding: 9px 13px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.terrain-reset:hover {
  background: rgba(31, 90, 58, 0.92);
  border-color: rgba(244, 239, 228, 0.4);
}

.terrain-reset:active {
  transform: translateY(1px);
}

.terrain-reset:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

.terrain-legend {
  position: absolute;
  right: 18px;
  top: 62px;
  z-index: 2;
  pointer-events: none;
  display: grid;
  gap: 6px;
  width: 150px;
  border: 1px solid rgba(244, 239, 228, 0.18);
  background: rgba(15, 42, 29, 0.78);
  border-radius: 7px;
  padding: 10px 12px;
  backdrop-filter: blur(12px);
}

.terrain-legend-title {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.82);
}

.terrain-legend-scale {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6f8f5f, #b5793a, #1f5a3a);
}

.terrain-legend-ends {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  font-weight: 800;
  color: rgba(244, 239, 228, 0.7);
}

.terrain-controls-hint {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  pointer-events: none;
  border: 1px solid rgba(244, 239, 228, 0.18);
  background: rgba(15, 42, 29, 0.7);
  color: rgba(244, 239, 228, 0.86);
  border-radius: 6px;
  padding: 8px 11px;
  font-size: 0.74rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

@media (pointer: coarse) {
  .terrain-hover-label {
    display: none;
  }
}

.terrain-panel {
  background: #fbfaf6;
  color: var(--charcoal);
  padding: clamp(20px, 2.8vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1px solid rgba(15, 42, 29, 0.16);
  overflow-y: auto;
}

.terrain-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.terrain-panel .eyebrow {
  margin: 0;
}

.terrain-panel h3 {
  color: var(--oldwood-green);
  font-size: 2.2rem;
}

.terrain-status {
  color: var(--canopy-green);
  font-weight: 900;
  margin-top: -8px;
}

.terrain-funded {
  display: grid;
  gap: 9px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 42, 29, 0.12);
  padding: 14px;
  background: var(--white);
}

.terrain-funded > div:first-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.terrain-funded span,
.terrain-stat-grid dt,
.terrain-detail span {
  color: var(--moss-green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.terrain-funded strong {
  color: var(--oldwood-green);
  font-size: 1.85rem;
  line-height: 1;
}

.terrain-funded-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 42, 29, 0.12);
  overflow: hidden;
}

.terrain-funded-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--copper), var(--canopy-green));
  transition: width 260ms ease;
}

.terrain-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
}

.terrain-stat-grid div {
  border: 1px solid rgba(15, 42, 29, 0.1);
  border-radius: 6px;
  padding: 12px;
  background: var(--white);
}

.terrain-stat-grid dd {
  margin: 4px 0 0;
  color: var(--oldwood-green);
  font-weight: 900;
  line-height: 1.25;
}

.terrain-detail {
  border-top: 1px solid rgba(15, 42, 29, 0.12);
  padding-top: 14px;
}

.terrain-detail p,
.terrain-detail strong {
  display: block;
  color: var(--charcoal);
  margin-top: 4px;
  line-height: 1.45;
}

.terrain-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.terrain-detail li {
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(31, 90, 58, 0.1);
  color: var(--canopy-green);
  font-size: 0.85rem;
  font-weight: 850;
}

.terrain-detail-inline {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 12px;
  align-items: start;
}

.terrain-detail-inline strong {
  margin-top: 0;
  color: var(--oldwood-green);
}

.terrain-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 2px;
}

.terrain-actions .button {
  padding-inline: 12px;
  min-width: 0;
}

.dashboard-context-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.terrain-dashboard--fallback .terrain-stage::before {
  content: "Interactive terrain could not be loaded in this browser.";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--parchment);
  padding: 24px;
  text-align: center;
}

.side-notes {
  display: grid;
  gap: 14px;
}

.image-band {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--oldwood-green);
}

.image-band-content {
  max-width: 730px;
  position: relative;
}

.image-band .body-large {
  color: rgba(244, 239, 228, 0.82);
  margin-top: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(244, 239, 228, 0.86);
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--copper);
  flex: 0 0 auto;
}

.package-grid,
.partner-grid,
.metric-grid,
.tier-grid,
.report-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

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

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

.package-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.package-card:hover,
.package-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(181, 121, 58, 0.5);
  box-shadow: var(--shadow-soft);
}

.partner-card {
  background: rgba(255, 255, 255, 0.74);
}

.partner-card .placeholder-logo {
  width: 100%;
  height: 74px;
  border-radius: 6px;
  border: 1px dashed rgba(15, 42, 29, 0.24);
  display: grid;
  place-items: center;
  color: var(--moss-green);
  font-weight: 900;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.48);
}

.partner-directory {
  margin-top: 34px;
}

.partner-directory .section-header {
  margin-bottom: 22px;
}

.partner-directory-title {
  color: var(--oldwood-green);
}

a.partner-card--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.partner-card--link:hover,
a.partner-card--link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(181, 121, 58, 0.5);
  box-shadow: var(--shadow-soft);
}

a.partner-card--link:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

.partner-wordmark {
  width: 100%;
  min-height: 74px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px 12px;
  margin-bottom: 16px;
  background: var(--oldwood-green);
  color: var(--parchment);
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.partner-visit {
  margin-top: auto;
  padding-top: 14px;
  color: var(--copper);
  font-weight: 850;
  font-size: 0.85rem;
}

.metric-card {
  min-height: 205px;
}

.metric-card .number {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(181, 121, 58, 0.12);
  color: var(--copper);
  font-weight: 900;
  margin-bottom: 12px;
}

.receipt-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.82fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.receipt-card {
  border-radius: var(--radius);
  background: var(--parchment);
  color: var(--oldwood-green);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-soft);
}

.receipt-card h3 {
  color: var(--oldwood-green);
  margin-bottom: 18px;
}

.allocation-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(15, 42, 29, 0.12);
}

.allocation-item:first-of-type {
  border-top: 0;
}

.allocation-meter {
  grid-column: 1 / -1;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 42, 29, 0.12);
  overflow: hidden;
}

.allocation-meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--copper), var(--canopy-green));
}

.closing-cta {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.closing-cta .body-large {
  margin-top: 22px;
}

.site-footer {
  background: var(--charcoal);
  color: var(--parchment);
  padding: 56px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr minmax(250px, 1.15fr);
  gap: 28px;
}

.footer-column h3,
.footer-column h2 {
  font-family: "Inter", "Now", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 13px;
  color: var(--sky-blue-grey);
}

.footer-column a {
  display: block;
  color: rgba(244, 239, 228, 0.78);
  text-decoration: none;
  margin: 8px 0;
  font-size: 0.94rem;
}

.footer-column a:hover {
  color: var(--white);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.newsletter-form input {
  min-width: 0;
  flex: 1 1 160px;
  width: auto;
  min-height: 44px;
  border: 1px solid rgba(244, 239, 228, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0 12px;
}

.newsletter-form input::placeholder {
  color: rgba(244, 239, 228, 0.6);
}

.newsletter-form button {
  white-space: nowrap;
}

.newsletter-form [data-form-status] {
  flex-basis: 100%;
  margin: 0;
}

.footer-note {
  color: rgba(244, 239, 228, 0.62);
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 239, 228, 0.14);
  font-size: 0.9rem;
}

.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--canopy-green);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(15, 42, 29, 0.24);
}

.page-hero {
  padding: calc(var(--header-height) + 72px) 0 78px;
  background: var(--oldwood-green);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    repeating-radial-gradient(ellipse at 74% 20%, transparent 0 22px, rgba(244, 239, 228, 0.56) 23px 24px, transparent 25px 58px),
    linear-gradient(rgba(244, 239, 228, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 228, 0.08) 1px, transparent 1px);
  background-size: 760px 500px, 82px 82px, 82px 82px;
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(244, 239, 228, 0.82);
  max-width: 780px;
  margin-top: 22px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.28fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.article-stack {
  display: grid;
  gap: 34px;
}

.article-block {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(15, 42, 29, 0.12);
}

.article-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.article-block h2,
.article-block h3 {
  color: var(--oldwood-green);
  margin-bottom: 14px;
}

.article-block p + p {
  margin-top: 14px;
}

.sidebar-panel {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  border: 1px solid rgba(15, 42, 29, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.sidebar-panel h3 {
  color: var(--oldwood-green);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.phase-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.phase-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
}

.phase-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--canopy-green);
}

.map-preview-page {
  height: min(70vh, 680px);
  min-height: 420px;
  position: relative;
  border: 1px solid rgba(15, 42, 29, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 40%, rgba(31, 90, 58, 0.36) 0 12%, transparent 12.4%),
    radial-gradient(circle at 72% 30%, rgba(143, 168, 165, 0.6) 0 18%, transparent 18.4%),
    radial-gradient(circle at 62% 68%, rgba(181, 121, 58, 0.28) 0 10%, transparent 10.4%),
    repeating-linear-gradient(26deg, rgba(15, 42, 29, 0.08) 0 1px, transparent 1px 26px),
    linear-gradient(135deg, #f2f0e5, #ccd9c8 52%, #9bb6b1);
}

.map-legend {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--oldwood-green);
  border-radius: var(--radius);
  padding: 14px;
  border: 1px solid rgba(15, 42, 29, 0.12);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 800;
}

.legend-swatch {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: var(--canopy-green);
}

.legend-swatch.copper {
  background: var(--copper);
}

.legend-swatch.sky {
  background: var(--sky-blue-grey);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 850;
  color: var(--oldwood-green);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(15, 42, 29, 0.18);
  border-radius: 6px;
  min-height: 46px;
  padding: 10px 12px;
  background: var(--white);
  color: var(--charcoal);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.claim-box {
  border-left: 4px solid var(--copper);
  background: rgba(181, 121, 58, 0.08);
  padding: 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--oldwood-green);
  font-weight: 750;
}

.card-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.card-list li + li {
  margin-top: 8px;
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-top: 12px;
}

.dashboard-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.prototype-shell {
  border: 1px solid rgba(15, 42, 29, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.prototype-header {
  background: var(--oldwood-green);
  color: var(--parchment);
  padding: 16px 18px;
}

.prototype-body {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.prototype-kpi {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  background: #f7f4ec;
  border: 1px solid rgba(15, 42, 29, 0.1);
}

.prototype-kpi span {
  color: var(--ink-soft);
}

.prototype-kpi strong {
  color: var(--oldwood-green);
  text-align: right;
}

@media (max-width: 1080px) {
  .site-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-actions {
    position: fixed;
    left: 0;
    right: 0;
    display: grid;
    background: var(--oldwood-green);
    padding: 18px 24px;
    z-index: 99;
  }

  .site-header.nav-open .site-nav {
    top: var(--header-height);
    gap: 4px;
    border-top: 1px solid rgba(244, 239, 228, 0.14);
  }

  .site-header.nav-open .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(244, 239, 228, 0.12);
  }

  .site-header.nav-open .header-actions {
    top: calc(var(--header-height) + 284px);
    gap: 12px;
    border-bottom: 1px solid rgba(244, 239, 228, 0.14);
  }

  .hero-inner,
  .split-grid,
  .section-header,
  .dashboard-layout,
  .terrain-dashboard,
  .receipt-layout,
  .content-grid,
  .dashboard-page-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .timeline,
  .package-grid,
  .partner-grid,
  .metric-grid,
  .tier-grid,
  .report-grid,
  .dashboard-context-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .terrain-panel {
    border-left: 0;
    border-top: 1px solid rgba(15, 42, 29, 0.16);
  }

  .sidebar-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 66px;
  }

  body.oldwood-site {
    padding-bottom: 72px;
  }

  .header-inner,
  .section-inner,
  .hero-inner {
    width: min(100% - 24px, var(--max-width));
  }

  .wordmark {
    font-size: 1.18rem;
  }

  .wordmark-mark {
    width: 30px;
    height: 30px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 44px);
    padding-bottom: 44px;
  }

  .hero-card {
    display: none;
  }

  .hero h1 {
    font-size: 2.85rem;
    line-height: 1.02;
  }

  .hero .lead {
    font-size: 1rem;
    line-height: 1.48;
    margin-top: 16px;
  }

  .hero .hero-actions {
    margin-top: 20px;
  }

  .hero .trust-note {
    margin-top: 16px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .lead {
    font-size: 1.05rem;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link {
    width: 100%;
    text-align: center;
  }

  .metric-chip-grid,
  .dashboard-grid,
  .form-grid,
  .timeline,
  .package-grid,
  .partner-grid,
  .metric-grid,
  .tier-grid,
  .report-grid,
  .terrain-stat-grid,
  .terrain-actions,
  .dashboard-context-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .terrain-dashboard,
  .terrain-dashboard--wide {
    height: auto;
    min-height: 0;
  }

  .terrain-stage,
  .terrain-dashboard--wide .terrain-stage {
    min-height: 460px;
  }

  .terrain-map-overlay {
    top: 12px;
    left: 12px;
    right: auto;
    max-width: calc(100% - 130px);
  }

  .terrain-hover-label {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .terrain-reset {
    top: 12px;
    right: 12px;
    padding: 7px 10px;
  }

  .terrain-legend {
    display: none;
  }

  .terrain-controls-hint {
    left: 12px;
    right: 12px;
    bottom: 12px;
    text-align: center;
  }

  .terrain-detail-inline {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-topbar {
    display: grid;
  }

  .dashboard-map-large {
    height: 260px;
  }

  .image-band {
    min-height: 610px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  body.terrain-in-view .mobile-sticky-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
