:root {
  --bg: #f4f1e8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fffdf7;
  --text: #18352b;
  --muted: #4c665e;
  --line: rgba(24, 53, 43, 0.12);
  --primary: #1e6a52;
  --primary-dark: #154b3a;
  --accent: #a5c96d;
  --sand: #dcc9a2;
  --shadow: 0 24px 60px rgba(27, 53, 43, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(165, 201, 109, 0.32), transparent 28%),
    linear-gradient(180deg, #eef4eb 0%, var(--bg) 38%, #f7f2e9 100%);
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.sr-only {
  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: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(244, 241, 232, 0.78);
  border-bottom: 1px solid rgba(24, 53, 43, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 82px;
}

.brand img {
  height: 54px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.96rem;
  color: var(--muted);
}

.site-nav a {
  padding: 0.4rem 0;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.66);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding: 1rem 0 0;
}

.hero-media {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.9fr);
  gap: 2rem;
  margin-top: -2.2rem;
  position: relative;
}

.hero-copy,
.hero-panel,
.stats-card,
.info-card,
.bullet-panel,
.team-card,
.gallery-stage {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-copy {
  padding: 2.2rem;
  border-radius: var(--radius-lg);
}

.hero-panel {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  align-self: end;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--primary);
}

h1,
h2,
h3,
.panel-title,
.footer-title {
  font-family: "Manrope", sans-serif;
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  max-width: 14ch;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.lead,
.section-heading p,
.feature-copy p,
.gallery-copy p,
.footer-inner p,
.info-card p,
.team-card p,
.bullet-panel li,
.stats-card,
.hero-panel,
.intro p {
  color: var(--muted);
}

.lead {
  max-width: 62ch;
  font-size: 1.06rem;
  margin: 1.2rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--primary);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-dark);
}

.button-secondary {
  border-color: rgba(24, 53, 43, 0.16);
  background: rgba(255, 255, 255, 0.55);
}

.panel-title {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.focus-list,
.bullet-panel ul {
  padding-left: 1.1rem;
  margin: 0;
}

.focus-list li,
.bullet-panel li {
  margin-bottom: 0.6rem;
}

.funding {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.funding span {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.funding img {
  max-width: 190px;
}

.section {
  padding: 5.5rem 0;
}

.split,
.feature-layout,
.footer-inner,
.gallery-stage {
  display: grid;
  gap: 2rem;
}

.split {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.9fr);
  align-items: start;
}

.stats-card {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
}

.stat + .stat {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.stat-value {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.stat-label {
  font-size: 0.96rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 48ch;
  margin: 0;
}

.card-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.info-card,
.team-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  min-height: 220px;
}

.work {
  position: relative;
}

.work::before {
  content: "";
  position: absolute;
  inset: 12% auto auto -6%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(165, 201, 109, 0.22), transparent 65%);
  pointer-events: none;
}

.feature-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  align-items: center;
}

.feature-media img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
  min-height: 420px;
  object-fit: cover;
}

.text-toggle {
  margin-top: 1rem;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--primary-dark);
  font-weight: 700;
  cursor: pointer;
}

.expandable {
  margin-top: 1rem;
}

.emphasis-panel {
  padding: 2rem;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 252, 244, 0.8)),
    linear-gradient(120deg, rgba(165, 201, 109, 0.12), transparent 45%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.bullet-panel {
  padding: 1.6rem;
  border-radius: var(--radius-md);
}

.gallery-stage {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr);
  padding: 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.gallery-main img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 22px;
}

.gallery-copy {
  display: flex;
  align-items: center;
  padding: 1rem;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.thumb {
  padding: 0.35rem;
  border-radius: 20px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

.thumb:hover,
.thumb:focus-visible {
  transform: translateY(-2px);
}

.thumb.is-active {
  border-color: rgba(30, 106, 82, 0.45);
}

.thumb img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  border-radius: 14px;
}


.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.map-card,
.table-card,
.map-sidecard {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.map-card,
.table-card {
  border-radius: 28px;
  overflow: hidden;
}

.map-sidecard {
  border-radius: 28px;
  padding: 1.5rem;
}

#project-map {
  width: 100%;
  height: 520px;
}

.map-note,
#map-status {
  color: var(--muted);
}

.map-legend {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
  color: var(--muted);
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot-green {
  background: #2f855a;
}

.legend-dot-orange {
  background: #dd8b20;
}

.legend-dot-gray {
  background: #7b8794;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table thead {
  background: rgba(30, 106, 82, 0.08);
}

.info-table th,
.info-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(24, 53, 43, 0.08);
  text-align: left;
  vertical-align: top;
  font-size: 0.95rem;
}

.info-table th {
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dark);
}
.site-footer {
  padding: 2rem 0 3rem;
}

.footer-inner {
  grid-template-columns: 1.2fr 0.8fr auto;
  align-items: center;
  padding: 1.6rem 2rem;
  border-top: 1px solid var(--line);
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

.footer-logo img {
  max-width: 180px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-content,
  .split,
  .feature-layout,
  .gallery-stage,
  .footer-inner,
  .section-heading,
  .card-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .card-grid,
  .team-grid {
    gap: 1rem;
  }

  .info-card,
  .team-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 253, 247, 0.94);
    border: 1px solid rgba(24, 53, 43, 0.08);
    box-shadow: var(--shadow);
  }

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

  .hero-copy,
  .hero-panel,
  .stats-card,
  .emphasis-panel {
    padding: 1.4rem;
  }

  .hero-content {
    margin-top: -1.4rem;
  }

  .hero-media,
  .hero-copy,
  .hero-panel,
  .stats-card,
  .feature-media img,
  .emphasis-panel,
  .gallery-stage {
    border-radius: 24px;
  }

  .gallery-main img {
    min-height: 240px;
  }
}




