:root {
  --ink: #17372f;
  --ink-deep: #0d2923;
  --forest: #1d5a46;
  --moss: #6f8d63;
  --sage: #a9bda0;
  --cream: #f4f0e4;
  --paper: #fbfaf5;
  --white: #ffffff;
  --amber: #d4a44f;
  --line: rgba(23, 55, 47, 0.15);
  --muted: #64746d;
  --shadow: 0 24px 70px rgba(12, 43, 35, 0.14);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  text-wrap: balance;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  text-wrap: balance;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
}

p {
  margin-bottom: 22px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink-deep);
  font-weight: 700;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(780px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.section-compact {
  padding: 76px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #d9e7d8;
}

.lead {
  max-width: 760px;
  color: #42584f;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.45;
}

.muted {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--forest);
}

.button-light {
  background: var(--cream);
  color: var(--ink-deep);
}

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(15, 41, 34, 0.24);
  backdrop-filter: blur(12px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "↗";
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translate(3px, -3px);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-scrolled,
.page-inner .site-header {
  background: rgba(251, 250, 245, 0.96);
  box-shadow: 0 10px 34px rgba(14, 42, 35, 0.08);
  color: var(--ink-deep);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
}

.brand-mark::before {
  top: 7px;
  left: 15px;
  width: 11px;
  height: 20px;
  transform: rotate(34deg);
  border-radius: 100% 0 100% 0;
  background: var(--amber);
}

.brand-mark::after {
  top: 12px;
  left: 17px;
  width: 1px;
  height: 18px;
  transform: rotate(18deg);
  background: currentColor;
}

.brand span:last-child {
  display: grid;
  gap: 2px;
}

.brand small {
  color: currentColor;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0.72;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 720;
  text-decoration: none;
}

.nav-list a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 860px;
  align-items: end;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 31, 24, 0.87) 0%, rgba(6, 31, 24, 0.58) 44%, rgba(6, 31, 24, 0.12) 78%),
    linear-gradient(0deg, rgba(6, 31, 24, 0.76) 0%, transparent 42%),
    url("hero-agenda21-bgl.jpg") center / cover;
  content: "";
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  right: 7%;
  bottom: 9%;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  padding-top: 180px;
  padding-bottom: 72px;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 70px;
  align-items: end;
}

.hero-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.08rem;
}

.hero-aside {
  padding: 28px 0 4px 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-aside strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1;
}

.hero-aside span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.intro-grid,
.feature-split,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.intro-note {
  position: sticky;
  top: 130px;
  padding-top: 12px;
}

.intro-note p {
  max-width: 300px;
  color: var(--muted);
  font-size: 0.92rem;
}

.number {
  display: block;
  margin-bottom: 18px;
  color: var(--amber);
  font-family: var(--serif);
  font-size: 4.6rem;
  line-height: 1;
}

.principles {
  display: grid;
  margin-top: 50px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle b {
  display: block;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

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

.section-dark::before {
  position: absolute;
  top: -220px;
  right: -170px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.section-dark .lead,
.section-dark .muted {
  color: #c1d1ca;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.topic-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.topic-card {
  min-height: 390px;
  padding: 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: background 200ms ease;
}

.topic-card:hover,
.topic-card:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.topic-card .index {
  display: block;
  margin-bottom: 76px;
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.topic-card p {
  max-width: 470px;
  margin-bottom: 0;
  color: #b9cbc4;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}

.project-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: #e4eadc;
}

.project-card:nth-child(2) {
  background: #dce8e4;
}

.project-card:nth-child(3) {
  background: #eee3cc;
  grid-column: 1 / -1;
}

.project-card .tag {
  display: inline-flex;
  margin-bottom: 90px;
  padding: 7px 11px;
  border: 1px solid rgba(23, 55, 47, 0.24);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-card h3 {
  max-width: 540px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.project-card p {
  max-width: 610px;
  margin-bottom: 0;
  color: #53665e;
}

.project-card::after {
  position: absolute;
  top: -80px;
  right: -55px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(23, 55, 47, 0.16);
  border-radius: 50%;
  content: "";
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: steps;
}

.process-step {
  position: relative;
  min-height: 240px;
  padding: 30px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  counter-increment: steps;
}

.process-step:first-child {
  border-left: 1px solid var(--line);
}

.process-step::before {
  display: block;
  margin-bottom: 48px;
  color: var(--amber);
  content: "0" counter(steps);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.process-step h3 {
  font-size: 1.6rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.partners-section {
  background: var(--cream);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.partner-card:hover,
.partner-card:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.partner-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-card:hover span,
.partner-card:focus-visible span {
  color: #c4d5ce;
}

.partner-card strong {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.partner-card strong::after {
  color: var(--amber);
  content: "↗";
  font-family: var(--sans);
}

.source-strip {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.source-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
}

.source-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.source-links a {
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 750;
}

.cta-band {
  padding: 90px 0;
  background: var(--forest);
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-inner h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.site-footer {
  padding: 70px 0 28px;
  background: #09241e;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 70px;
  padding-bottom: 64px;
}

.footer-brand p {
  max-width: 470px;
  margin-top: 24px;
  color: #aabdb5;
  font-size: 0.92rem;
}

.footer-title {
  display: block;
  margin-bottom: 18px;
  color: #80978e;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #d7e0dc;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #81978e;
  font-size: 0.75rem;
}

.page-inner {
  background: var(--paper);
}

.page-hero {
  position: relative;
  padding: 190px 0 90px;
  overflow: hidden;
  background: var(--cream);
}

.page-hero::after {
  position: absolute;
  top: 90px;
  right: 8%;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(23, 55, 47, 0.14);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  max-width: 1060px;
  margin-bottom: 30px;
  color: var(--ink-deep);
  font-size: clamp(3.3rem, 7vw, 6.9rem);
}

.page-hero .lead {
  max-width: 790px;
}

.page-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-nav-inner {
  display: flex;
  gap: 12px 32px;
  padding: 18px 0;
  overflow-x: auto;
}

.page-nav a {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.page-nav a:hover,
.page-nav a:focus-visible {
  color: var(--forest);
}

.content-block {
  scroll-margin-top: 105px;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

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

.content-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(50px, 9vw, 130px);
}

.content-index {
  color: var(--amber);
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
}

.content-body {
  max-width: 780px;
}

.content-body ul {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.content-body li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--line);
}

.content-body li::before {
  position: absolute;
  top: 24px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.quote {
  margin: 48px 0 0;
  padding: 30px 34px;
  border-left: 3px solid var(--amber);
  background: var(--cream);
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.45;
}

.archive-note {
  display: flex;
  gap: 18px;
  margin: 40px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.archive-note strong {
  color: var(--amber);
}

.archive-note p {
  margin: 0;
  font-size: 0.9rem;
}

.initiative-list {
  display: grid;
  gap: 18px;
}

.initiative {
  display: grid;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  grid-template-columns: 130px 1fr;
  gap: 28px;
}

.initiative time,
.initiative .label {
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.initiative h3 {
  font-size: 1.85rem;
}

.initiative p:last-child {
  margin-bottom: 0;
}

.workshop-box {
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--ink-deep);
  color: var(--white);
}

.workshop-box p {
  color: #bed0c8;
}

.workshop-grid {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.workshop-grid div {
  min-height: 170px;
  padding: 26px;
  background: var(--ink-deep);
}

.workshop-grid strong {
  display: block;
  margin-bottom: 11px;
  color: var(--amber);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.workshop-grid span {
  color: #c1d1ca;
  font-size: 0.9rem;
}

.contact-card {
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--ink-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card p {
  color: #bfd0c9;
}

.contact-list {
  display: grid;
  gap: 0;
  margin-top: 30px;
}

.contact-list a,
.contact-list div {
  display: grid;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  grid-template-columns: 95px 1fr;
  gap: 20px;
}

.contact-list span {
  color: #87a299;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal {
  display: grid;
  gap: 60px;
}

.legal-section {
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.legal-section h3 {
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.legal-section p {
  max-width: 850px;
  color: #4f635b;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 84px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    visibility: hidden;
    padding: 36px 24px;
    transform: translateY(-14px);
    background: var(--paper);
    color: var(--ink-deep);
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .menu-open .site-nav {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--line);
  }

  .nav-list a {
    display: block;
    padding: 20px 0;
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 500;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-aside {
    max-width: 320px;
  }

  .intro-grid,
  .feature-split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .intro-note {
    position: static;
  }

  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step:nth-child(3) {
    border-left: 1px solid var(--line);
  }

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

  .source-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .content-grid {
    grid-template-columns: 90px 1fr;
    gap: 40px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container,
  .narrow {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 84px 0;
  }

  .section-compact {
    padding: 58px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .site-nav {
    top: 74px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(6, 31, 24, 0.87) 0%, rgba(6, 31, 24, 0.45) 85%),
      linear-gradient(0deg, rgba(6, 31, 24, 0.82) 0%, transparent 55%),
      url("hero-agenda21-bgl.jpg") 60% center / cover;
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    padding-top: 150px;
    padding-bottom: 44px;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .principles,
  .topic-grid,
  .project-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .topic-card {
    min-height: 320px;
    padding: 30px;
  }

  .topic-card .index {
    margin-bottom: 52px;
  }

  .project-card {
    min-height: 360px;
    padding: 30px;
  }

  .project-card:nth-child(3) {
    grid-column: auto;
  }

  .project-card .tag {
    margin-bottom: 65px;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 210px;
    border-left: 1px solid var(--line);
  }

  .section-heading,
  .cta-inner {
    align-items: start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .partner-card {
    min-height: 160px;
  }

  .cta-band {
    padding: 70px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero {
    padding: 150px 0 66px;
  }

  .page-hero::after {
    display: none;
  }

  .content-block {
    padding: 76px 0;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .content-index {
    font-size: 3.2rem;
  }

  .initiative {
    padding: 26px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .workshop-box,
  .contact-card {
    padding: 30px;
  }

  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .contact-list a,
  .contact-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.horizon-notes {
  padding: 20px 0 72px;
  background: var(--paper);
}

.horizon-notes__inner {
  display: grid;
  grid-template-columns: minmax(180px, .28fr) 1fr;
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-left: 6px solid var(--amber);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: linear-gradient(125deg, rgba(169, 189, 160, .2), rgba(255, 255, 255, .66));
  box-shadow: 0 18px 55px rgba(12, 43, 35, .08);
}

.horizon-notes__label {
  color: var(--forest);
  font: 700 12px/1.45 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.horizon-notes p {
  margin: 0;
  color: var(--ink);
  font: 500 clamp(16px, 1.45vw, 19px)/1.85 var(--sans);
}

.horizon-notes a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(29, 90, 70, .32);
  transition: color .2s ease, border-color .2s ease;
}

.horizon-notes a:hover,
.horizon-notes a:focus-visible {
  color: var(--forest);
  border-color: var(--amber);
}

@media (max-width: 720px) {
  .horizon-notes__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 25px 22px;
  }
}
