:root {
  --bg-white: #ffffff;
  --bg-beige: #f0ead2;
  --text: #000000;
  --text-muted: rgba(0, 0, 0, 0.72);
  --border: rgba(0, 0, 0, 0.12);
  --border-strong: rgba(0, 0, 0, 0.9);
  --green-accent: #a6c48a;
  --surface-white: rgba(255, 255, 255, 0.8);
  --surface-soft: rgba(255, 255, 255, 0.5);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 18px 40px rgba(0, 0, 0, 0.08);
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 24px;
  --max-width: 1180px;
  --text-width: 760px;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -56px;
  left: 16px;
  z-index: 999;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.brand {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-header nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.22s ease;
}

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

.hero {
  padding: 92px 32px 54px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 auto 14px;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.hero h1 {
  margin: 0 auto 16px;
  max-width: 11ch;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.96;
  font-weight: 780;
  letter-spacing: -0.05em;
  color: var(--green-accent);
  text-align: center;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
  line-height: 1.45;
  text-align: center;
  color: var(--text-muted);
}

.content-block {
  border-top: 1px solid var(--border-strong);
}

.block-white {
  background: var(--bg-white);
}

.block-beige {
  background: var(--bg-beige);
}

.section {
  padding: 44px 32px;
}

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

.kicker {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section h2 {
  margin: 0 0 16px;
  max-width: 19ch;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.04;
  font-weight: 720;
  letter-spacing: -0.04em;
  color: var(--text);
}

.section h3 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.1;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.section p {
  max-width: var(--text-width);
  margin: 0 0 16px;
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--text-muted);
}

.lead {
  font-size: 1.08rem;
  color: var(--text);
}

.caption-text {
  margin-bottom: 20px;
}

figcaption {
  max-width: 760px;
  margin-top: 12px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.context-stack {
  max-width: none;
  text-align: left;
}

.context-left {
  text-align: left;
}

.context-left h2,
.context-left p,
.context-left figure,
.context-left figcaption {
  text-align: left;
}

.context-media-below {
  margin: 22px 0 0;
  max-width: 760px;
}

.context-media-below img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
}

.chart-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
  margin-top: 24px;
}

.chart {
  width: 100%;
  height: auto;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
}

.legend-box {
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: var(--surface-white);
  box-shadow: var(--shadow-soft);
}

.block-beige .legend-box {
  background: var(--surface-soft);
}

.legend-box h4 {
  margin: 0 0 8px;
  font-size: 0.96rem;
  line-height: 1.42;
  font-weight: 650;
  color: var(--text);
}

.legend-sub {
  margin: 0 0 14px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.legend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legend-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.93rem;
  line-height: 1.42;
  color: var(--text);
}

.swatch,
.legend-swatch {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex: 0 0 auto;
}

.legend-spaced {
  margin-top: 24px;
}

.map-frame-wrap {
  margin-top: 18px;
  overflow: hidden;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-medium);
  background: rgba(255, 255, 255, 0.45);
}

.map-frame,
.umap-frame {
  width: 100%;
  border: 0;
}

.map-frame {
  height: 560px;
  min-height: 420px;
}

.umap-frame {
  height: 420px;
  min-height: 320px;
}

.map-legend {
  max-width: 420px;
  margin-top: 18px;
}

.legend-title {
  margin: 0 0 8px;
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--text);
}

.legend-divider {
  width: 64px;
  height: 2px;
  margin: 0 0 14px;
  border: 0;
  background: #000000;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 16px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 550;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--green-accent);
  border-color: var(--green-accent);
  transform: translateY(-1px);
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
  justify-items: start;
}

.image-grid figure {
  width: min(100%, 520px);
  margin: 0;
  justify-self: start;
  text-align: left;
}

.image-grid img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.two-col.reverse .text-col {
  order: 2;
}

.two-col.reverse .image-col {
  order: 1;
}

.image-col {
  margin: 0;
  justify-self: start;
  text-align: left;
}

.image-col img {
  width: min(100%, 520px);
  height: auto;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
}

.team-section {
  background: var(--bg-white);
  text-align: center;
  border-top: 1px solid var(--border-strong);
  padding-top: 42px;
  padding-bottom: 32px;
}

.team-section .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-names {
  margin-top: 6px;
  color: var(--text-muted);
}

.site-footer {
  padding: 24px 32px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg-white);
}

.logo {
  margin: 0 auto 12px;
}

.site-footer p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

@media (max-width: 980px) {
  .chart-stack,
  .image-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .two-col.reverse .text-col,
  .two-col.reverse .image-col {
    order: initial;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
  }

  .site-header nav {
    gap: 14px;
  }

  .hero {
    padding: 76px 20px 42px;
  }

  .section {
    padding: 36px 20px;
  }

  .map-frame {
    height: 420px;
    min-height: 320px;
  }

  .umap-frame {
    height: 320px;
    min-height: 250px;
  }

  .context-media-below {
    max-width: 100%;
  }
}