﻿:root {
  --green: #09a64f;
  --green-deep: #078a42;
  --green-dark: #0b3d26;
  --blue: #2e358f;
  --blue-deep: #1c2268;
  --ink: #161c33;
  --ink-soft: #3d4663;
  --paper: #f5f8f6;
  --mist: #e4eee8;
  --line: #c9d6ce;
  --white: #ffffff;
  --harvest: #c98512;
  --max: 1180px;
  --header-h: 84px;
  --font-display: 'About Inter', Arial, sans-serif;
  --font-body: 'About Inter', Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 400;
}

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

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

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  background: var(--blue);
  color: var(--white);
  padding: 0.6rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(1500px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  color: #526f61;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
}

.section-title {
  margin: 0;
  color: #173b30;
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1.2px;
}

.section-head {
  margin-bottom: 2rem;
}

.lede {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.125rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border: 1.5px solid transparent;
  border-radius: 2px;
  font-weight: 600;
  line-height: 1;
  transition: background 160ms var(--ease), color 160ms var(--ease),
    border-color 160ms var(--ease), transform 160ms var(--ease);
}

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

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-harvest {
  background: var(--harvest);
  color: #1a1406;
}

.btn-harvest:hover {
  background: #b3750d;
}

/* Header */

.utility {
  position: relative;
  z-index: 50;
  background: #2e3590;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 44px;
}

.utility p {
  margin: 0;
}

.utility a {
  color: #fff;
}

.utility a:hover {
  color: #23cb6e;
}

.utility .wrap,
.site-header .wrap,
.hero .wrap,
.proof .wrap {
  width: min(1500px, calc(100% - 80px));
  max-width: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e6eee9;
  font-family: var(--font-body);
  box-shadow: 0 1px 0 rgba(16, 22, 42, 0.04);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
  will-change: transform;
}

.site-header,
.site-header .header-inner,
.site-header .brand {
  background: #fff;
}

.site-header.is-stuck {
  box-shadow: 0 10px 28px rgba(16, 40, 32, 0.08);
}

.site-header.is-hidden {
  transform: translateY(-110%);
  box-shadow: none;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 6px 4px;
}

.brand img {
  display: block;
  width: auto;
  height: 76px;
  max-width: 280px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  align-self: stretch;
  gap: 4px;
  margin-left: auto;
  margin-right: auto;
}

.nav>a,
.nav-item>a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  font-size: 0.94rem;
  font-weight: 600;
  color: #1c2268;
  padding: 0 0.85rem;
  border-radius: 0;
  border-bottom: 3px solid transparent;
}

.nav>a:hover,
.nav-item>a:hover,
.nav-item:hover>a,
.nav-item:focus-within>a,
.nav a[aria-current="page"] {
  color: #078a42;
  /* background: #f2f5f3; */
  /* border-bottom-color: #09a64f; */
}

/* Drawer-only CTA; the header keeps its own button on desktop */
.nav>a.nav-cta {
  display: none;
}

.nav-chevron {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 160ms var(--ease);
}

.nav-item:hover>a .nav-chevron,
.nav-item:focus-within>a .nav-chevron {
  transform: rotate(225deg);
  margin-top: 2px;
}

.nav-item {
  display: flex;
  align-items: stretch;
  align-self: stretch;
}

.nav-item.has-mega>a {
  position: relative;
  z-index: 2;
}

/* Invisible bridge + panel so hover never drops between link and mega */
.nav-mega {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 60;
  width: auto;
  margin-left: 0;
  padding-top: 0;
  transform: translateY(6px);
  transition: opacity 160ms var(--ease), transform 160ms var(--ease), visibility 160ms var(--ease);
}

.nav-item:hover>.nav-mega,
.nav-item:focus-within>.nav-mega {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-mega-inner {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 0;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e4ebe6;
  /* border-top: 3px solid #09a64f; */
  border-radius: 0 0 14px 14px;
  box-shadow: 0 22px 48px rgba(16, 40, 32, 0.14);
  overflow: hidden;
}

.nav-mega-feature {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.4rem 1.3rem 1.55rem;
  background: #0f5c52;
  color: #fff;
}

.nav-mega-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.nav-mega-feature p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}

.nav-mega-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem 1.75rem;
  padding: 1.65rem 1.9rem 1.9rem;
  background: #fff;
}

.nav-mega-cols--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 680px;
}

.nav-mega-col h3 {
  margin: 0 0 0.95rem;
  color: #0f5c52;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.nav-mega-col a {
  display: block;
  padding: 0.42rem 0;
  color: #2a3340;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 4px;
  transition: color 140ms var(--ease), padding-left 140ms var(--ease);
}

.nav-mega-col a:hover {
  color: #078a42;
  padding-left: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-actions .reference-button {
  background: var(--green);
  color: #fff;
}

.header-actions .reference-button span {
  color: #fff;
}

.header-actions .reference-button:hover {
  background: var(--green-deep);
}

.reference-button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 54px;
  padding: 15px 26px;
  border-radius: 100px;
  background: #fff;
  color: #000;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}

.reference-button span {
  display: inline-block;
  color: #232c24;
  transition: transform 200ms var(--ease);
}

.reference-button:hover {
  background: #dadaf0;
  transform: translateY(-1px);
}

.reference-button:hover span {
  transform: translate(2px, -2px);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

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

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

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 91dvh;
  display: block;
  color: var(--white);
  overflow: hidden;
  font-family: var(--font-body);
  background: #0b120f;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 800ms var(--ease), visibility 800ms var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
}

.hero-slide.is-active .hero-media img {
  animation: heroZoom 7.5s ease-out forwards;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 10, 0.72) 0%, rgba(6, 12, 10, 0.28) 46%, rgba(6, 12, 10, 0.45) 100%),
    linear-gradient(180deg, rgba(6, 12, 10, 0.4) 0%, rgba(6, 12, 10, 0.08) 36%, rgba(6, 12, 10, 0.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 72px 0 148px;
  max-width: 640px;
}

.hero-kicker {
  margin-bottom: 0.85rem;
  color: #b7e3c4;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero .hero-title {
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-inner>p:not(.hero-kicker) {
  margin: 16px 0 28px;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
  color: #f3f7f4;
}

.hero-slide.is-active .hero-kicker,
.hero-slide.is-active .hero-title,
.hero-slide.is-active .hero-inner>p:not(.hero-kicker),
.hero-slide.is-active .hero-actions {
  animation: heroCopy 700ms var(--ease) both;
}

.hero-slide.is-active .hero-title {
  animation-delay: 80ms;
}

.hero-slide.is-active .hero-inner>p:not(.hero-kicker) {
  animation-delay: 140ms;
}

.hero-slide.is-active .hero-actions {
  animation-delay: 200ms;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions .final-cta-primary {
  width: auto;
  min-width: 180px;
}

.hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 54px;
  padding: 0 8px;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-ghost:hover {
  border-bottom-color: #fff;
}

.hero-index {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3.5rem);
  top: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: translateY(-50%);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-index b {
  font-size: 1.15rem;
}

.hero-index span {
  width: 1px;
  height: 72px;
  background: linear-gradient(#8fe0ad, rgba(255, 255, 255, 0.15));
}

.hero-index i {
  font-style: normal;
  opacity: 0.55;
  font-size: 0.85rem;
}

.hero-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  z-index: 3;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: end;
  gap: 18px;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.hero-arrow:hover {
  background: #fff;
  color: #111;
}

.hero-pager {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.hero-pager button {
  display: grid;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  text-align: left;
  min-height: 0;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

.hero-pager button[aria-selected="true"] {
  color: #fff;
}

.hero-pager-bar {
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
}

.hero-pager-bar i {
  display: block;
  width: 0;
  height: 100%;
  background: #8fe0ad;
}

.hero-pager button[aria-selected="true"] .hero-pager-bar i {
  animation: heroFill 5s linear forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

@keyframes heroCopy {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroFill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* Who */

.who {
  padding: 6rem 0;
  background: var(--paper);
}

.who-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.who h2 {
  max-width: 14ch;
}

.who .lede {
  margin: 1.25rem 0 1.5rem;
}

.who-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin: 1.75rem 0 2rem;
}

.who-facts dt {
  font-weight: 700;
  color: var(--blue);
}

.who-facts dd {
  margin: 0.15rem 0 0;
  color: var(--ink-soft);
}

.who-photo {
  position: relative;
}

.who-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  clip-path: polygon(6% 0, 100% 0, 100% 94%, 0 100%);
}

.who-stamp {
  position: absolute;
  left: -1.25rem;
  bottom: 1.5rem;
  width: min(260px, 80%);
  padding: 1rem 1.1rem;
  background: var(--blue);
  color: var(--white);
  font-size: 0.92rem;
}

.who-stamp strong {
  display: block;
  margin-bottom: 0.25rem;
}

.proof {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: var(--font-body);
}

.proof-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.proof-media img {
  width: 58%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 18% center;
}

.proof-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.12) 22%,
      rgba(0, 0, 0, 0.55) 42%,
      #000 54%,
      #000 100%);
}

.proof-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: clamp(392px, 38vw, 560px);
  padding: 72px 0;
}

.proof-copy {
  width: min(560px, 52%);
}

.proof-lead {
  margin: 0;
  max-width: 22.5em;
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 1.75rem;
  margin: 2.6rem 0 2.4rem;
}

.proof-stats b {
  display: block;
  font-size: clamp(2.5rem, 4vw, 3.35rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.proof-stats span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.proof-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.55rem;
  border-radius: 100px;
  background: #fff;
  color: #000;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-btn:hover {
  background: #e8e8e8;
}

/* Focus */

.focus {
  padding: 6rem 0 4.5rem;
}

.focus-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.focus-plots {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 320px 240px;
  gap: 0.85rem;
}

.plot {
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: 220px;
}

.plot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 800ms var(--ease);
}

.plot:hover img {
  transform: scale(1.08);
}

.plot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 24, 36, 0.1) 20%, rgba(18, 24, 36, 0.78) 100%);
}

.plot-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.25rem 1.35rem 1.35rem;
}

.plot h3 {
  font-family: var(--font-body);
  font-size: 1.55rem;
  font-weight: 560;
}

.plot p {
  margin-top: 0.35rem;
  color: #dce6df;
  font-size: 0.95rem;
}

.plot-wide {
  grid-row: 1 / 3;
}

.plot-wide h3 {
  font-size: 2rem;
}

.focus-plots.short {
  grid-template-rows: 240px;
  margin-top: 0.85rem;
}

.crosscut {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.chip {
  padding: 0.4rem 0.75rem;
  background: var(--mist);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Projects */

.projects {
  padding: 2rem 0 6rem;
}

.projects-head {
  margin-bottom: 2rem;
}

.project-list {
  display: grid;
  gap: 1.5rem;
}

.project {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--paper);
  min-height: 340px;
}

.project:nth-child(even) {
  grid-template-columns: 1fr 1.05fr;
}

.project:nth-child(even) .project-media {
  order: 2;
}

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

.project-body {
  padding: 2rem 2.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-loc {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.92rem;
}

.project h3 {
  margin: 0.45rem 0 0.75rem;
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 560;
  line-height: 1.2;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1rem 0 1.25rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Projects: green split panels with a wide editorial photograph. */
.projects {
  padding: 70px 0 70px;
  background: #fff;
  color: #173b30;
  font-family: var(--font-body);
}

.projects>.wrap {
  width: min(1500px, calc(100% - 64px));
  max-width: 1500px;
}

.projects .projects-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.projects-heading-copy {
  min-width: 0;
}

.projects .project-list {
  gap: 32px;
}

.projects .project,
.projects .project:nth-child(even) {
  grid-template-columns: minmax(0, 500fr) minmax(0, 890fr);
  gap: 20px;
  min-height: 500px;
  background: transparent;
}

.projects .project-body {
  grid-column: 1;
  grid-row: 1;
  padding: 30px;
  background: #173b30;
  justify-content: flex-start;
}

.projects .project-media,
.projects .project:nth-child(even) .project-media {
  grid-column: 2;
  grid-row: 1;
  order: 0;
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.projects .project-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.projects .project-loc {
  color: #bdd1c8;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.projects .project h3 {
  margin: 56px 0 20px;
  color: #fff;
  font-family: inherit;
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -1px;
}

.projects .project-body>p:not(.project-loc) {
  color: #b8c6c0;
  font-size: 16px;
  line-height: 1.65;
}

.projects .project-meta {
  gap: 8px 18px;
  margin: 24px 0;
  padding-top: 18px;
  border-top: 1px solid #ffffff26;
  color: #d1ded7;
  font-size: 12px;
  line-height: 1.6;
}

.projects .project-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.55rem;
  margin-top: auto;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition: border-color 160ms var(--ease);
}

.projects .project-link span {
  display: inline-block;
  font-size: 1em;
  line-height: 1;
  transition: transform 160ms var(--ease);
}

.projects .project-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.projects .project-link:hover span {
  transform: translate(2px, -2px);
}

@media (max-width: 980px) {

  .projects .project,
  .projects .project:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  }

  .projects .project-body {
    padding: 26px;
  }

  .projects .project h3 {
    margin-top: 32px;
  }
}

@media (max-width: 700px) {
  .projects {
    padding: 50px 0;
  }

  .projects>.wrap {
    width: calc(100% - 40px);
  }

  .projects .project,
  .projects .project:nth-child(even) {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .projects .project-body {
    grid-column: 1;
    grid-row: 1;
    padding: 26px 24px;
  }

  .projects .project-media,
  .projects .project:nth-child(even) .project-media {
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .projects .project h3 {
    font-size: 28px;
  }
}

/* Map */
.projects .project-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  gap: 18px;
  margin: 0;
}

@media (max-width: 600px) {
  .projects .projects-head {
      gap: 12px;
      align-items: baseline;
      flex-direction: column;
  }

  .projects .projects-head .section-title {
    font-size: 25px;
  }

  .projects .project-controls {
    gap: 8px;
  }

  .projects .project-arrow {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .projects .project-position {
    font-size: 12px;
  }
}

.projects .project-controls[hidden] {
  display: none;
}

.project-arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid #547166;
  border-radius: 50%;
  background: #173b30;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.project-arrow:hover {
  background: #2a5644;
  border-color: #bce1cc;
}

.project-arrow:focus-visible {
  outline: 3px solid #bce1cc;
  outline-offset: 4px;
}

.project-position {
  color: #526f61;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.projects .project-list.is-slider {
  overflow: hidden;
}

.projects .project-list.is-slider .project[hidden] {
  display: none;
}

.projects .project-list.is-slider .project:not([hidden]) {
  animation: projectSlideIn .35s ease-out;
}

@keyframes projectSlideIn {
  from {
    opacity: .35;
    translate: var(--project-entry, 32px) 0;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .projects .project-list.is-slider .project:not([hidden]) {
    animation: none;
  }
}


.where {
  padding: 6rem 0;
  background: var(--green-dark);
  color: var(--white);
}

.where-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.where .lede {
  color: #d5e6db;
  margin: 1rem 0 1.75rem;
}

.province-list {
  display: grid;
  gap: 0.85rem;
}

.province {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.province strong {
  font-size: 1.05rem;
}

.province span {
  color: #c5d8cc;
  font-size: 0.92rem;
}

.province b {
  font-family: var(--font-body);
  color: #8fe0ad;
}

.nepal-map {
  width: 100%;
  height: auto;
}

.nepal-map path {
  fill: #1a5a3a;
  stroke: #8fe0ad;
  stroke-width: 1.2;
}

.nepal-map .active {
  fill: var(--green);
}

.nepal-map .hq {
  fill: #f0c14b;
}

.map-note {
  margin-top: 1rem;
  color: #c5d8cc;
  font-size: 0.92rem;
}

/* Impact */

.impact {
  padding: 5.5rem 0;
  background: var(--blue-deep);
  color: var(--white);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat b {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  color: #9be7b6;
}

.stat span {
  display: block;
  margin-top: 0.55rem;
  color: #d5dbf5;
}

/* Approach */

.approach {
  padding: 6rem 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
}

.steps {
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step-num {
  font-family: var(--font-body);
  font-size: 1.7rem;
  color: var(--green);
  font-weight: 600;
}

.step h3 {
  font-size: 1.25rem;
}

.step p {
  margin-top: 0.35rem;
  color: var(--ink-soft);
}

/* Story */

.story {
  padding: 0 0 6rem;
}

.story-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: var(--paper);
}

.story-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.story-copy {
  padding: 2.75rem 2.5rem;
}

.story-copy blockquote {
  margin: 1rem 0 1.5rem;
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  font-weight: 500;
  line-height: 1.3;
}

.story-copy cite {
  display: block;
  font-style: normal;
  font-weight: 700;
}

.story-copy cite span {
  display: block;
  font-weight: 500;
  color: var(--ink-soft);
}

/* Campaign */

.campaign {
  padding: 0 0 6rem;
}

.campaign-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--blue);
  color: var(--white);
}

.campaign-copy {
  padding: 2.75rem 2.5rem;
}

.campaign-copy p {
  margin: 1rem 0 1.5rem;
  color: #d9def6;
  max-width: 38rem;
}

.campaign-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

/* Involve */

.involve {
  padding: 0 0 6rem;
}

.involve-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.involve-card {
  padding: 1.35rem 1.15rem 1.4rem;
  background: var(--paper);
  border-top: 3px solid var(--green);
  min-height: 180px;
}

.involve-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.involve-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* News */

.news {
  padding: 0 0 6rem;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
}

.news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-card:first-child img {
  height: 280px;
}

.news-card div {
  padding: 1.15rem 1.2rem 1.35rem;
}

.news-card time {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
}

.news-card h3 {
  margin: 0.4rem 0 0.5rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.news-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.news-grid-follow {
  margin-top: 1rem;
}

/* A consistent three-column journal of community updates. */
.news {
  padding: 70px 0 70px;
  background: #f5f5f1;
  font-family: var(--font-body);
}

.news>.wrap {
  width: min(1500px, calc(100% - 64px));
  max-width: 1500px;
}

.news .eyebrow {
  margin-bottom: 16px;
}

.news .news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.news .news-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e0e8df;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 26px #173b3006;
}

.news .news-card img,
.news .news-card:first-child img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news .news-card>div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 26px 28px 30px;
}

.news .news-card time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
  padding: 5px 12px;
  background: #edf3e9;
  color: #40644f;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

/* .news .news-card time::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #6c9468; } */
.news .news-card h3 {
  margin: 18px 0 14px;
  color: #173b30;
  font-family: inherit;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.55px;
  text-wrap: pretty;
}

.news .news-card p {
  /* margin-top: auto; */
  padding-top: 2px;
  color: #667169;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .news .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 600px) {
  .news {
    padding: 50px 0;
  }

  .news>.wrap {
    width: calc(100% - 40px);
  }

  .news .news-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .news .news-card>div {
    padding: 24px;
  }
}

/* Partners */

.partners {
  padding: 4.5rem 0;
  background: var(--paper);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.partner-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 0.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.partners {
  padding: 70px 0 70px;
  background: #f5f5f1;
  font-family: var(--font-body);
}

.partners>.wrap {
  width: min(1500px, calc(100% - 64px));
  max-width: 1500px;
}

.partners-intro {
  /* max-width: 660px; */
  margin: 0 auto 40px;
  /* text-align: center; */
}

.partners .eyebrow {
  margin-bottom: 14px;
}

.partners .section-title {
  /* margin: 0 0 20px; */
}

.partners-description {
  color: #66736a;
  font-size: 16px;
  line-height: 1.75;
}

.partners .partner-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

/* Show 12 partners until "View all partners" expands the grid */
.partners .partner-grid:not(.is-expanded)> :nth-child(n + 13) {
  display: none;
}

/* "View all" sits to the right of the section heading, like .projects-head */
.news .section-head,
.partners .partners-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-head-copy {
  min-width: 0;
}

.section-actions {
  display: flex;
  flex-shrink: 0;
}

@media (max-width: 720px) {

  .news .section-head,
  .partners .partners-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 180px;
  padding: 24px 16px 20px;
  border: 1px solid #e1e8dd;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 14px #173b3004;
}

.partner-card img {
  width: 120px;
  height: 82px;
  object-fit: contain;
}

.partners .partner-card span {
  display: block;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3f594b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

a.partner-card {
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

a.partner-card:hover {
  transform: translateY(-4px);
  border-color: #aac4b0;
  box-shadow: 0 12px 25px #173b3010;
}

a.partner-card:focus-visible {
  outline: 3px solid #078a42;
  outline-offset: 3px;
}

.partners-note {
  text-align: center;
  margin: 30px 0 0;
  color: #728173;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .partners .partner-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .partners {
    padding: 50px 0;
  }

  .partners>.wrap {
    width: calc(100% - 40px);
  }

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

  .partner-card {
    min-height: 160px;
    padding: 20px 12px 16px;
  }

  .partner-card img {
    max-width: 100%;
    height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  a.partner-card {
    transition: none;
  }

  a.partner-card:hover {
    transform: none;
  }
}

/* Trust */

.trust {
  padding: 5.5rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}

.doc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.doc-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1rem;
  background: var(--paper);
  font-weight: 600;
}

.doc-list a:hover {
  background: var(--mist);
}

/* Newsletter */

.newsletter {
  padding: 0 0 6rem;
}

.newsletter-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.25rem 2.25rem;
  background: var(--mist);
}

.newsletter-box form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  align-content: center;
}

.newsletter-box input {
  min-height: 48px;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* Final CTA */

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 42vw, 520px);
  display: flex;
  align-items: center;
  color: #fff;
  background: #0b1612;
  font-family: var(--font-body);
}

.final-cta-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 50%;
}

.final-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 12, 0.82) 0%, rgba(8, 14, 12, 0.55) 45%, rgba(8, 14, 12, 0.35) 100%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 64px));
  max-width: 1500px;
  margin-inline: auto;
  padding: clamp(64px, 8vw, 96px) 0;
}

.final-cta h2 {
  margin: 0;
  max-width: 14ch;
  color: #fff;
  font-family: inherit;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.final-cta-inner > p {
  margin: 1.15rem 0 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 1.75rem;
}

.final-cta-primary,
.final-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 1.45rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease), transform 160ms var(--ease);
}

.final-cta-primary span,
.final-cta-secondary span {
  display: inline-block;
  font-size: 1em;
  line-height: 1;
  transition: transform 160ms var(--ease);
}

.final-cta-primary:hover span,
.final-cta-secondary:hover span {
  transform: translate(2px, -2px);
}

.final-cta-primary {
  background: var(--green);
  color: #fff;
  border: 1.5px solid var(--green);
}

.final-cta-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
  transform: translateY(-1px);
}

.final-cta-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
}

.final-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-1px);
}

/* Secondary boxed button on light sections */
.final-cta-secondary.on-light {
  color: var(--green-deep);
  border-color: var(--green);
}

.final-cta-secondary.on-light:hover {
  background: rgba(9, 166, 79, 0.08);
  color: var(--green-deep);
}

.hero-actions .final-cta-primary {
  width: auto;
  min-width: 180px;
}

.thematic-intro .final-cta-primary {
  margin-top: 32px;
}

.final-cta-actions a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .final-cta {
    min-height: 0;
  }

  .final-cta-inner {
    width: calc(100% - 40px);
    padding: 50px 0;
  }

  .final-cta h2 {
    max-width: none;
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .final-cta-media img {
    object-position: 65% center;
  }

  .final-cta-media::after {
    background:
      linear-gradient(180deg, rgba(8, 16, 12, 0.55) 0%, rgba(8, 16, 12, 0.78) 45%, rgba(8, 16, 12, 0.88) 100%),
      linear-gradient(90deg, rgba(8, 16, 12, 0.55) 0%, rgba(8, 16, 12, 0.35) 100%);
  }

  .final-cta-actions {
    gap: 12px;
  }

  .final-cta-primary,
  .final-cta-secondary {
    flex: 1 1 auto;
    min-width: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-cta-primary,
  .final-cta-secondary,
  .final-cta-primary span,
  .final-cta-secondary span {
    transition: none;
  }

  .final-cta-primary:hover,
  .final-cta-secondary:hover {
    transform: none;
  }

  .final-cta-primary:hover span,
  .final-cta-secondary:hover span {
    transform: none;
  }
}

/* Footer */

.site-footer {
  --footer-bg: #f5f5f1;
  --footer-ink: #173b30;
  --footer-body: #526f61;
  --footer-soft: #6b7a72;
  --footer-line: #d9e2da;
  --footer-accent: var(--green-deep);
  position: relative;
  color: var(--footer-body);
  background: var(--footer-bg);
}

.site-footer > .wrap {
  width: min(1500px, calc(100% - 80px));
}

/* Brand + link columns in one row */

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 0.8fr)) minmax(0, 1.3fr);
  gap: 2.5rem clamp(20px, 2.6vw, 40px);
  align-items: start;
  padding: clamp(50px, 5.5vw, 80px) 0 clamp(50px, 5vw, 72px);
}

.footer-brand {
  min-width: 0;
  padding-right: clamp(16px, 3vw, 48px);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 65px;
  max-width: 200px;
  object-fit: contain;
}

.footer-brand-copy {
  margin: 0 0 1.75rem;
  max-width: 50ch;
  color: var(--footer-body);
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--footer-line);
  background: transparent;
  color: #078a42;
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.footer-social i {
  font-size: 0.92rem;
  line-height: 1;
}

.footer-col {
  min-width: 0;
}

.footer-col h2,
.footer-col h3 {
  margin: 0 0 1.5rem;
  color: var(--footer-ink);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

.footer-col h2::after {
  display: none;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li + li {
  margin-top: 0.55rem;
}

.footer-col a {
  display: inline-block;
  padding: 0.2rem 0;
  color: var(--footer-body);
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  transition: color 160ms var(--ease);
}

.footer-col a:hover {
  color: var(--footer-accent);
}

/* Contact Information column */

.footer-contact-list {
  display: grid;
  gap: 1.15rem;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.footer-contact-list li + li {
  margin-top: 0;
}

.footer-contact-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--footer-line);
  background: rgba(9, 166, 79, 0.08);
  color: var(--green-deep);
  font-size: 0.8rem;
  line-height: 1;
}

.footer-contact-list p {
  margin: 0;
  padding-top: 0.28rem;
  color: var(--footer-body);
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.6;
}

.footer-contact-list a {
  display: inline;
  padding: 0;
}

/* Bottom bar */

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

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 2rem;
  flex-wrap: wrap;
  padding: 1.4rem 0;
  color: var(--footer-soft);
  font-family: var(--font-body);
  font-size: 0.86rem;
  text-align: center;
}

.footer-legal-sep {
  margin: 0 0.35rem;
  color: #b9c7bc;
}

.footer-legal p {
  margin: 0;
}

.footer-legal #year {
  opacity: 1;
}

.footer-legal a {
  color: var(--footer-soft);
  transition: color 160ms var(--ease);
}

.footer-legal a:hover {
  color: var(--footer-accent);
}

.footer-credit a {
  color: var(--footer-ink);
  font-weight: 600;
}

.footer-credit a:hover {
  color: var(--footer-accent);
}

.site-footer a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 5px;
}

@media (max-width: 1180px) {
  .footer-main {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.75rem clamp(20px, 3vw, 40px);
  }

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

@media (max-width: 820px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 2rem;
  }
}

@media (max-width: 720px) {
  .site-footer > .wrap {
    width: calc(100% - 40px);
  }

  .footer-brand-copy {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .footer-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.25rem;
  }

  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer a,
  .footer-social a {
    transition: none;
  }

  .site-footer a:hover,
  .footer-social a:hover {
    transform: none;
  }
}

/* Dialog */

.donate-dialog {
  position: relative;
  width: min(460px, 92vw);
  padding: 0;
  border: 0;
  border-radius: 2px;
}

.donate-dialog::backdrop {
  background: rgba(10, 14, 28, 0.62);
}

.donate-dialog-inner {
  padding: 1.6rem 1.6rem 1.75rem;
}

.donate-dialog h2 {
  font-family: var(--font-body);
  font-size: 1.8rem;
}

.donate-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 1.1rem 0;
}

.donate-amounts button {
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.donate-amounts button[aria-pressed="true"] {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.dialog-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
}

/* Old-site sections carried into the new homepage */

.ticker {
  background: var(--green-dark);
  color: #d7eadc;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 42px;
  font-size: 0.92rem;
}

.ticker-label {
  flex-shrink: 0;
  color: #8fe0ad;
  font-weight: 700;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track a {
  display: inline-block;
  padding-right: 2.5rem;
  animation: ticker 42s linear infinite;
}

.ticker-track a:hover {
  color: var(--white);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.intro-more[hidden] {
  display: none;
}

.vmg {
  padding: 5.5rem 0;
  background: var(--white);
}

.vmg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.vmg-card {
  padding: 1.6rem 1.45rem 1.7rem;
  background: var(--paper);
  border-top: 3px solid var(--green);
  transition: transform 220ms var(--ease), background 220ms var(--ease);
}

.vmg-card:hover {
  transform: translateY(-4px);
  background: #eef6f1;
}

.vmg-card:nth-child(2) {
  border-top-color: var(--blue);
}

.vmg-card:nth-child(3) {
  border-top-color: var(--harvest);
}

.vmg-card h3 {
  font-family: var(--font-body);
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}

.vmg-card p {
  color: var(--ink-soft);
}

.plot-list {
  margin: 0.55rem 0 0;
  padding-left: 1.1rem;
  color: #dce6df;
  font-size: 0.9rem;
}

.highlights {
  padding: 70px 0;
  background: #fff;
}

.highlights>.wrap {
  position: relative;
  width: min(1500px, calc(100% - 64px));
  max-width: 1500px;
}

.highlight-stage {
  position: relative;
  display: grid;
  min-height: 560px;
  border-radius: 28px;
  box-shadow: 0 20px 50px #173b3018;
  overflow: hidden;
  background: #122018;
  color: var(--white);
}

.highlight-slide {
  position: relative;
  grid-area: 1 / 1;
  display: flex;
  align-items: flex-end;
  min-width: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 400ms var(--ease);
}

.highlight-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.highlight-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0b241de6 0%, #0b241d85 50%, #0b241d08 100%), linear-gradient(0deg, #0b241dd9 0%, transparent 65%);
}

.highlight-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 110px 56px 108px;
  font-family: var(--font-body);
}

/* .highlight-copy::before { content: ''; display: block; width: 48px; height: 3px; background: #c5dfa3; margin-bottom: 26px; border-radius: 2px; } */
.highlight-copy h3 {
  font-family: inherit;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -1.4px;
  text-wrap: balance;
}

.highlight-copy p {
  margin: 22px 0 0;
  max-width: 550px;
  font-size: 17px;
  line-height: 1.7;
  color: #e0e9e3;
}

.highlight-nav {
  position: absolute;
  bottom: 32px;
  left: 56px;
  right: 56px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 0;
}

.highlight-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.highlight-dots button,
.highlight-nav .btn {
  min-height: 40px;
}

.highlight-dots button {
  position: relative;
  width: 36px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.highlight-dots button::after {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 4px;
  background: #ffffff59;
  transition: background .2s;
}

.highlight-dots button:hover::after {
  background: #fff;
}

.highlight-dots button:focus-visible {
  outline: 2px solid #c5dfa3;
  outline-offset: 2px;
  border-radius: 4px;
}

.highlight-dots button[aria-current="true"] {
  background: transparent;
  width: 56px;
  border-radius: 0;
}

.highlight-dots button[aria-current="true"]::after {
  background: #c5dfa3;
}

@media (max-width: 700px) {
  .highlights {
    padding: 50px 0;
  }

  .highlights>.wrap {
    width: calc(100% - 40px);
  }

  .highlight-stage {
    min-height: 540px;
    border-radius: 20px;
  }

  .highlight-copy {
    padding: 100px 26px 100px;
  }

  .highlight-copy h3 {
    font-size: 30px;
    letter-spacing: -.8px;
  }

  .highlight-copy p {
    font-size: 15px;
    line-height: 1.65;
  }

  .highlight-nav {
    left: 26px;
    right: 26px;
    bottom: 24px;
  }

  .highlight-dots {
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
  }

  .highlight-dots button {
    flex: 1;
    width: auto;
  }

  .highlight-dots button[aria-current="true"] {
    flex: 1.7;
    width: auto;
  }
}

.gallery {
  padding: 5.5rem 0;
  background: var(--paper);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 1.25rem;
}

.gallery-filters button {
  min-height: 40px;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.gallery-filters button[aria-pressed="true"] {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.7rem 0.8rem;
  background: linear-gradient(transparent, rgba(10, 16, 20, 0.8));
  color: var(--white);
  font-size: 0.85rem;
}

.facebook {
  padding: 5.5rem 0;
}

.facebook-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.fb-feed {
  display: grid;
  gap: 0.75rem;
}

.fb-item {
  padding: 1.1rem 1.15rem;
  background: var(--paper);
  border-left: 3px solid #1877f2;
}

.fb-item time {
  display: block;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.offices {
  padding: 5.5rem 0;
  background: var(--paper);
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 2rem;
}

.office-card {
  padding: 1.25rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.office-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.office-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.alumni {
  padding: 5.5rem 0;
}

.alumni-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.location {
  padding: 5.5rem 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
}

.location iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.feedback-form,
.login-form {
  display: grid;
  gap: 0.65rem;
}

.feedback-form input,
.feedback-form textarea,
.login-form input {
  min-height: 46px;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.feedback-form textarea {
  min-height: 120px;
  resize: vertical;
}

.login-panel {
  padding: 5.5rem 0 0;
}

.login-box {
  max-width: 420px;
  padding: 1.6rem;
  background: var(--paper);
}

/* Header nav switches to the drawer before the desktop row runs out of room */
@media (max-width: 1150px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    order: 3;
    border-radius: 10px;
    transition: background 160ms var(--ease);
  }

  .menu-toggle:hover {
    background: var(--mist);
  }

  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    transition: transform 200ms var(--ease), opacity 120ms linear;
  }

  /* Hamburger folds into a close icon while the drawer is open */
  .menu-toggle[aria-expanded="true"] span {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] span::before {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span::after {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-actions {
    display: none;
  }

  /* Anchor the drawer to the header, not the centred wrap, so it spans full width */
  .site-header .header-inner {
    position: static;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    /* Must reset the desktop row's centring: in a scrolling column it pushes
       content off the top, where it can never be scrolled back into view. */
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0.5rem 0 1.5rem;
    background: #fff;
    border-top: 1px solid var(--mist);
    border-bottom: 1px solid var(--line);
    /* JS refines this to the exact space under the header; this is the no-JS fallback */
    max-height: calc(100dvh - 136px);
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 0 18px 32px rgba(16, 22, 42, 0.14);
  }

  .nav.open {
    display: flex;
  }

  .nav>a,
  .nav-item>a {
    height: auto;
    min-height: 54px;
    padding: 0.85rem clamp(20px, 5vw, 40px);
    border-radius: 0;
    border-bottom: 1px solid var(--mist);
    color: var(--ink);
    background: transparent;
    font-size: 1.02rem;
    font-weight: 600;
  }

  .nav-item.has-mega>a {
    justify-content: space-between;
  }

  .nav>a:hover,
  .nav-item>a:hover,
  .nav-item:hover>a,
  .nav-item:focus-within>a,
  .nav a[aria-current="page"] {
    background: transparent;
    color: var(--green-deep);
    border-bottom-color: var(--mist);
  }

  .nav-item.open>a {
    color: var(--green-deep);
    background: var(--paper);
    border-bottom-color: transparent;
  }

  /* Chevron follows the accordion, not hover */
  .nav-chevron {
    width: 8px;
    height: 8px;
    border-width: 2px;
    flex-shrink: 0;
  }

  .nav-item:hover>a .nav-chevron,
  .nav-item:focus-within>a .nav-chevron {
    transform: rotate(45deg);
    margin-top: -2px;
  }

  .nav-item.open>a .nav-chevron {
    transform: rotate(225deg);
    margin-top: 2px;
  }

  .nav-item {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-mega {
    position: static;
    left: auto;
    width: auto;
    margin-left: 0;
    transform: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: none;
  }

  .nav-item:hover>.nav-mega,
  .nav-item:focus-within>.nav-mega {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    max-height: 0;
  }

  .nav-item.open>.nav-mega {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    max-height: none;
    overflow: visible;
    border-bottom: 1px solid var(--mist);
  }

  .nav-mega-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: var(--paper);
  }

  /* Feature panel kept on mobile, but compact so the links stay reachable */
  .nav-mega-feature {
    display: flex;
    gap: 0.85rem;
    margin: 0.9rem clamp(20px, 5vw, 40px) 0;
    padding: 0.9rem;
    border-radius: 10px;
  }

  .nav-mega-feature img {
    aspect-ratio: 16 / 7;
    max-height: 130px;
    border-radius: 6px;
  }

  .nav-mega-feature p {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .nav-mega-cols,
  .nav-mega-cols--2 {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 0.9rem clamp(20px, 5vw, 40px) 1.25rem;
    max-width: none;
  }

  .nav-mega-col {
    border-left: 2px solid var(--line);
    padding-left: 0.9rem;
  }

  .nav-mega-col h3 {
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-deep);
  }

  .nav-mega-col a {
    display: block;
    padding: 0.5rem 0;
    color: var(--ink-soft);
    font-size: 0.97rem;
    line-height: 1.4;
  }

  .nav-mega-col a:hover {
    padding-left: 0;
    color: var(--green-deep);
  }

  /* Drawer keeps the header CTA reachable on small screens */
  .nav>a.nav-cta {
    display: inline-flex;
    justify-content: center;
    margin: 1.25rem clamp(20px, 5vw, 40px) 0;
    padding: 0.75rem 1.45rem;
    min-height: 50px;
    border: 1.5px solid var(--green);
    border-radius: 10px;
    background: var(--green);
    color: #fff;
    font-size: 0.95rem;
  }

  .nav>a.nav-cta:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {

  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after,
  .nav-chevron {
    transition: none;
  }
}

@media (max-width: 980px) {

  .utility .wrap,
  .site-header .wrap,
  .hero .wrap,
  .proof .wrap {
    width: calc(100% - 48px);
  }


  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-inner {
    padding: 56px 0 150px;
    max-width: 100%;
  }

  .hero-index {
    display: none;
  }

  .hero-ui {
    bottom: 20px;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 12px;
  }

  .hero-pager {
    gap: 8px;
    align-items: center;
  }

  /* Slide labels can't fit a phone column — they wrapped to three lines and knocked
     the progress bars out of alignment. Bars only; the arrows carry the navigation. */
  .hero-pager button {
    font-size: 0;
    gap: 0;
    align-content: center;
    min-height: 32px;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }

  .proof-media img {
    width: 100%;
    object-position: center 18%;
  }

  .proof-media::after {
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.18) 0%,
        rgba(0, 0, 0, 0.42) 36%,
        #000 64%,
        #000 100%);
  }

  .proof-inner {
    min-height: 0;
    padding: 240px 0 64px;
    justify-content: flex-start;
  }

  .proof-copy {
    width: 100%;
  }

  .who-grid,
  .focus-head,
  .where-grid,
  .approach-grid,
  .story-panel,
  .campaign-card,
  .trust-grid,
  .newsletter-box,
  .project,
  .project:nth-child(even),
  .vmg-grid,
  .facebook-grid,
  .office-grid,
  .alumni-box,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .project:nth-child(even) .project-media {
    order: 0;
  }

  .focus-plots {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .plot-wide {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .impact-grid,
  .involve-grid,
  .news-grid,
  .partner-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {

  .utility .wrap,
  .site-header .wrap,
  .hero .wrap,
  .proof .wrap {
    width: calc(100% - 40px);
  }

  .utility {
    font-size: 0.72rem;
  }

  .proof-inner {
    padding: 200px 0 52px;
  }

  .proof-lead {
    font-size: 1.28rem;
  }

  .proof-stats {
    margin: 2rem 0 2rem;
    gap: 1rem;
  }

  .proof-stats b {
    font-size: 2.05rem;
  }

  .hero-meta,
  .who-facts,
  .focus-plots,
  .impact-grid,
  .involve-grid,
  .news-grid,
  .partner-grid,
  .doc-list,
  .newsletter-box form,
  .donate-amounts,
  .gallery-grid,
  .office-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 48px 0 104px;
  }

  /* The hero starts below the utility bar + header, so a full 100svh pushed its
     own CTA and slider controls past the fold. Reserve that stack. */
  .hero {
    min-height: calc(100svh - 136px);
  }

  /* Phone: drop the utility-bar phone number and the announcements marquee */
  .utility-inner>a {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .ticker {
    display: none;
  }

  /* Side by side these two crowd a phone; stack them and keep the ghost's
     underline hugging its own text rather than stretching the full width. */
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-actions .final-cta-primary {
    width: 100%;
    min-width: 0;
  }

  .hero-ghost {
    align-self: center;
    min-height: 44px;
    padding: 0;
  }

  .hero-kicker {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }

  .hero-inner>p:not(.hero-kicker) {
    margin: 12px 0 22px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .brand img {
    height: 56px;
    max-width: 200px;
  }

  .hero .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .who-stamp {
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
  }

  .who-photo img,
  .story-panel img,
  .campaign-card img {
    min-height: 240px;
    height: 260px;
  }
}


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

  .btn,
  .btn:hover,
  .highlight-slide,
  .ticker-track a,
  .reference-button,
  .reference-button span,
  .hero-slide,
  .hero-media img {
    transition: none;
    transform: none;
    animation: none !important;
  }

  .hero-slide.is-active .hero-kicker,
  .hero-slide.is-active .hero-title,
  .hero-slide.is-active .hero-inner>p:not(.hero-kicker),
  .hero-slide.is-active .hero-actions {
    animation: none;
  }
}

/* Screenshot-matched record section (Nomad Partners reference). */
.proof {
  background: #0c0603;
  font-family: var(--font-body);
}

.proof-media img {
  width: 65%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.proof-media::after {
  background: linear-gradient(90deg, transparent 12%, #0c0603 54%);
}

.proof .proof-inner {
  width: calc(100% - 80px);
  max-width: 1600px;
  min-height: 730px;
  padding: 180px 0 100px;
}

.proof-copy {
  width: 57.2%;
}

.proof-lead {
  max-width: 700px;
  font-family: inherit;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -1.2px;
}

.proof-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  margin: 42px 0 40px;
}

.proof-stats b {
  font-family: inherit;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -2.1px;
}

.proof-stats span {
  margin-top: 8px;
  color: #ffffffb3;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -.54px;
}

.proof-btn {
  min-height: 38px;
  padding: 9px 20px;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -.42px;
  transition: background-color .2s, color .2s;
}

.proof-btn:hover {
  background: transparent;
  color: #fff;
}

@media (max-width: 1400px) {
  .proof .proof-inner {
    min-height: 640px;
    padding: 100px 0;
  }

  .proof-copy {
    width: 60%;
  }

  .proof-lead {
    font-size: 34px;
  }

  .proof-stats {
    gap: 24px;
  }

  .proof-stats span {
    font-size: 16px;
  }
}

@media (max-width: 980px) {
  .proof .proof-inner {
    width: calc(100% - 48px);
    min-height: 620px;
    padding: 90px 0;
  }

  .proof-copy {
    width: 70%;
  }

  .proof-lead {
    font-size: 30px;
  }

  .proof-stats b {
    font-size: 48px;
  }

  .proof-stats {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .proof .proof-inner {
    width: calc(100% - 40px);
    min-height: 720px;
    padding: 290px 0 56px;
  }

  .proof-media img {
    width: 100%;
    height: 400px;
    object-position: center;
  }

  .proof-media::after {
    background: linear-gradient(180deg, #0c060310 5%, #0c060350 25%, #0c0603 56%);
  }

  .proof-copy {
    width: 100%;
  }

  .proof-lead {
    max-width: none;
    font-size: 27px;
    line-height: 1.25;
    letter-spacing: -.8px;
  }

  .proof-stats {
    gap: 16px;
    margin: 30px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-stats b {
    font-size: 40px;
    letter-spacing: -1.4px;
  }

  .proof-stats span {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: -.3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof-btn {
    transition: none;
  }
}

.proof-stats b {
  font-weight: 300;
}

@media (min-width: 1401px) {
  .proof-copy {
    width: calc(57.2% - 2px);
  }

  .proof-lead {
    font-size: 42px;
    line-height: 50px;
  }

  .proof-stats {
    max-width: 818px;
  }
}

/* About us: reference composition with overlapping photographs. */
.who {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 70px 0 70px;
  background: #f5f5f1;
  color: #0b1720;
  font-family: var(--font-body);
}

.about-reference-layout {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 96px));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px 9.8%;
}

.about-photos {
  position: relative;
  min-width: 0;
  height: 600px;
}

.about-main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-since {
  position: absolute;
  top: 52px;
  right: -36px;
  width: 168px;
  padding: 12px 22px 16px;
  background: #f5f5f1;
  border-radius: 22px;
  color: #29583b;
  box-shadow: 0 12px 30px #403a2410;
}

.about-since svg {
  display: block;
  width: 40px;
  height: 34px;
}

.about-since strong {
  display: block;
  font-size: 23px;
  line-height: 1.4;
  letter-spacing: -.7px;
}

.about-since>span {
  display: block;
  color: #575b5f;
  font-size: 17px;
  line-height: 1.3;
}

.about-since i,
.about-since i::before,
.about-since i::after {
  position: absolute;
  width: 4px;
  height: 25px;
  background: #d79726;
  border-radius: 4px;
}

.about-since i {
  right: -10px;
  top: -18px;
  transform: rotate(44deg);
}

.about-since i::before,
.about-since i::after {
  content: '';
}

.about-since i::before {
  left: -22px;
  top: 6px;
  transform: rotate(-35deg);
}

.about-since i::after {
  left: 22px;
  top: 6px;
  transform: rotate(30deg);
}

.about-small-photo {
  position: absolute;
  width: 260px;
  height: 275px;
  right: -100px;
  bottom: -28px;
  border: 8px solid #f5f5f1;
  object-fit: cover;
  border-radius: 26px;
  transform: rotate(-3deg);
  box-shadow: 0 20px 28px #403a2418;
}

.about-handwritten {
  position: absolute;
  left: calc(100% + 132px);
  bottom: -44px;
  width: 190px;
  color: #29583b;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  transform: rotate(-8deg);
}

.about-handwritten span {
  display: block;
  width: 68px;
  height: 12px;
  margin: 4px 0 0 65px;
  border-top: 3px solid #d79726;
  border-radius: 50%;
}

.about-reference-content {
  padding-top: 51px;
}

.about-kicker {
  display: inline-block;
  margin: 0 0 0.75rem;
  color: #526f61;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
}

.about-kicker span {
  display: none;
}

.who .about-reference-content h2 {
  max-width: none;
  margin: 0;
  color: #173b30;
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1.2px;
}

.about-reference-content h2 span {
  color: #29583b;
}

.about-intro {
  margin-top: 34px;
  font-size: 20px;
  line-height: 1.5;
}

.about-description {
  margin-top: 28px;
  color: #5b5e61;
  font-size: 18px;
  line-height: 1.55;
}

.about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 30px;
  margin-top: 40px;
}

.about-story-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  min-height: 40px;
  border: 1px solid #08a650;
  border-radius: 16px;
  background: #08a650;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.about-story-button span {
  font-size: 26px;
  line-height: 1;
}

.about-story-button:hover {
  background: #2e358f;
  border-color: #2e358f;
}

.about-mission-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid #29583b;
  color: #29583b;
  font-size: 16px;
  font-weight: 600;
}

.about-mission-link:hover {
  color: #078a42;
}

/* Same link treatment when it's a real <button> (the partners toggle) */
button.about-mission-link {
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid #29583b;
  background: none;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
}

button.about-mission-link:hover {
  border-bottom-color: #078a42;
}

.about-priority-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 5%;
}

.about-priority {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 25px;
  border: 1px solid #e7e3da;
  border-radius: 16px;
  background: #fffcf8df;
}

.about-icon {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  border-radius: 50%;
  background: #e3e8d8;
  display: grid;
  place-items: center;
  color: #29583b;
}

.about-priority:nth-child(2) .about-icon {
  background: #fcebc8;
}

.about-icon svg {
  width: 56px;
  height: 56px;
}

.about-priority-copy {
  padding-left: 28px;
  border-left: 1px solid #deded3;
}

.about-number {
  display: block;
  font-size: 15px;
  color: #97916e;
  line-height: 1;
  margin-bottom: 9px;
}

.about-priority h3 {
  font-family: inherit;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.6px;
}

.about-priority p {
  margin-top: 9px;
  color: #5b5e61;
  font-size: 16px;
  line-height: 1.5;
}

.about-mountain {
  position: absolute;
  z-index: 0;
  width: 530px;
  height: 360px;
  right: -95px;
  bottom: 155px;
  color: #d3d9c9;
  opacity: .48;
  pointer-events: none;
}

.about-details {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px solid #e7e3da;
  border-radius: 16px;
  background: #f5f5f1;
}

.about-details[hidden] {
  display: none;
}

.about-details summary {
  cursor: pointer;
  color: #29583b;
  font-weight: 600;
}

.about-details-body {
  margin-top: 20px;
  color: #5b5e61;
  font-size: 16px;
  line-height: 1.75;
}

.about-details-body>p+p {
  margin-top: 18px;
}

.about-details-body .about-mission-link {
  margin-top: 16px;
}

@media (max-width: 1400px) {
  .about-reference-layout {
    width: calc(100% - 64px);
    gap: 65px 8%;
  }

  .about-photos {
    height: 570px;
  }

  .about-small-photo {
    width: 220px;
    height: 250px;
    right: -65px;
  }

  .about-handwritten {
    display: none;
  }

  .about-reference-content {
    padding-top: 28px;
  }

  .about-actions {
    gap: 20px;
    margin-top: 26px;
    justify-content: center
  }

  .about-priority-cards {
    margin: 0;
  }

  .about-priority {
    padding: 22px 18px;
    gap: 16px;
  }

  .about-icon {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
  }

  .about-priority-copy {
    padding-left: 18px;
  }

  .about-priority h3 {
    font-size: 18px;
  }

  .about-priority p {
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .about-reference-layout {
    grid-template-columns: 1fr;
    width: calc(100% - 48px);
    gap: 54px;
  }

  .about-photos {
    width: calc(100% - 60px);
    max-width: 680px;
    height: 520px;
  }

  .about-reference-content {
    padding-top: 0;
  }

  .about-priority-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-priority {
    padding: 22px;
  }

  .about-priority-copy {
    flex: 1;
  }

  .about-priority h3 {
    font-size: 20px;
  }

  .about-priority p {
    font-size: 16px;
  }

  .about-mountain {
    bottom: 440px;
  }
}

@media (max-width: 540px) {
  .who {
    padding: 50px 0;
  }

  .about-reference-layout {
    width: calc(100% - 40px);
    gap: 45px;
  }

  .about-photos {
    width: calc(100% - 24px);
    height: 350px;
  }

  .about-since {
    width: 132px;
    padding: 10px 14px;
    right: -20px;
    top: 24px;
  }

  .about-since strong {
    font-size: 19px;
  }

  .about-since>span {
    font-size: 14px;
  }

  .about-since i {
    display: none;
  }

  .about-small-photo {
    width: 146px;
    height: 169px;
    right: -25px;
    bottom: -22px;
    border-width: 5px;
    border-radius: 18px;
  }

  .who .about-reference-content h2 {
    font-size: clamp(1.85rem, 7vw, 2.4rem);
  }

  .about-kicker {
    margin-bottom: 0.75rem;
  }

  .about-intro {
    margin-top: 24px;
    font-size: 18px;
  }

  .about-description {
    margin-top: 20px;
    font-size: 16px;
  }

  .about-story-button {
    min-height: 56px;
    padding: 14px 24px;
    font-size: 16px;
  }

  .about-priority {
    gap: 16px;
    padding: 20px 16px;
  }

  .about-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .about-icon svg {
    width: 42px;
    height: 42px;
  }

  .about-priority-copy {
    padding-left: 16px;
  }
}

/* Local font files keep this composition consistent without a network connection. */
@font-face {
  font-family: 'About Inter';
  src: url('../assets/fonts/inter-400.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'About Inter';
  src: url('../assets/fonts/inter-600.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'About Inter';
  src: url('../assets/fonts/inter-500.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'About Inter';
  src: url('../assets/fonts/inter-700.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

.who {
  font-family: var(--font-body);
}

.about-mountain {
  opacity: .24;
}

@media (min-width: 1401px) {
  .about-reference-layout {
    grid-template-columns: 43.8% 46.4%;
  }

  .about-intro {
    font-size: 21px;
  }
}

/* Desktop About layout: copy on the left, photographs on the right. */
@media (min-width: 981px) {
  .about-reference-content {
    grid-column: 1;
    grid-row: 1;
  }

  .about-photos {
    grid-column: 2;
    grid-row: 1;
  }

  .about-since {
    right: auto;
    left: -36px;
  }

  .about-small-photo {
    right: auto;
    left: -65px;
    transform: rotate(3deg);
  }

  .about-handwritten {
    left: auto;
    right: calc(100% + 132px);
  }
}

@media (min-width: 1401px) {
  .about-reference-layout {
    grid-template-columns: 46.4% 43.8%;
  }

  .about-small-photo {
    left: -100px;
  }
}

/* Reference-inspired, continuously scrolling thematic cards. */
.thematic-cards {
  --thematic-paper: #f5f5f1;
  padding: 70px 0 70px;
  overflow: hidden;
  background: var(--thematic-paper);
  color: #06483f;
  font-family: var(--font-body);
}

.thematic-layout {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 60px;
  margin-left: max(32px, calc((100% - 1500px) / 2));
}

.thematic-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 380px;
}

.thematic-eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #526f61;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-transform: none;
}

.thematic-intro h2 {
  margin: 0 0 24px;
  color: #173b30;
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1.2px;
}

.thematic-lede {
  color: #606060;
  font-size: 16px;
  line-height: 1.5;
  max-width: 415px;
}

.thematic-cta {
  display: inline-flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 32px;
  font-size: 16px;
  font-weight: 600;
}

.thematic-cta span {
  display: grid;
  place-items: center;
  min-height: 56px;
  border-radius: 6px;
  background: #06483f;
  color: #fff;
  padding: 14px 28px;
  transition: background .2s;
}

.thematic-cta span:last-child {
  width: 62px;
  padding: 0;
  font-size: 28px;
  font-weight: 400;
}

.thematic-cta:hover span {
  background: #0b6456;
}

.thematic-carousel {
  min-width: 0;
  position: relative;
}

.thematic-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  padding: 0 0 4px 40px;
  mask-image: linear-gradient(to right, transparent, #000 40px);
}

.thematic-viewport::-webkit-scrollbar {
  display: none;
}

.thematic-viewport:focus-visible {
  outline-offset: -3px;
}

.thematic-viewport {
  cursor: grab;
}

.thematic-viewport.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.thematic-viewport.is-dragging,
.thematic-viewport.is-dragging * {
  cursor: grabbing;
  user-select: none;
}

.thematic-track {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: max-content;
  padding-right: 40px;
}

.thematic-card {
  flex: 0 0 414px;
  width: 414px;
  min-height: 415px;
  height: auto;
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #073746;
}

.thematic-number {
  background: var(--thematic-paper);
  border-radius: 30px;
  padding: 6px 20px;
  font-size: 14px;
  line-height: 1.6;
}

.thematic-icon {
  display: block;
  width: 80px;
  height: 80px;
  padding: 14px;
  border: 1px solid #dce7df;
  border-radius: 18px;
  background: #f0f5ef;
  flex-shrink: 0;
  margin: 10px 0 28px;
  color: #06483f;
}

.thematic-card:has(.thematic-details[open]) .thematic-icon {
  display: none;
}

.thematic-card:has(.thematic-details[open]) .thematic-card-copy {
  margin-top: 28px;
}

.thematic-card-copy {
  margin-top: 10px;
  width: 100%;
}

.thematic-card h3 {
  font-family: inherit;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.7px;
  margin: 0 0 20px;
}

.thematic-card-copy>p {
  font-size: 16px;
  color: #656565;
  line-height: 1.5;
}

.thematic-details {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.6;
}

.thematic-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid #b8cfc3;
  border-radius: 10px;
  background: #f0f5ef;
  color: #06483f;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: background .2s, border-color .2s, color .2s;
}

.thematic-details summary::-webkit-details-marker {
  display: none;
}

.thematic-details summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.thematic-details summary:hover {
  background: #e2ede2;
  border-color: #648d77;
}

.thematic-details summary:focus-visible {
  outline: 3px solid #078a42;
  outline-offset: 3px;
}

.thematic-details[open] summary {
  background: #06483f;
  border-color: #06483f;
  color: #fff;
}

.thematic-details[open] summary::after {
  content: '\2212';
}

.thematic-details[open] summary:hover {
  background: #0b6456;
}

@media (prefers-reduced-motion: reduce) {
  .thematic-details summary {
    transition: none;
  }
}

.thematic-details ul {
  padding-left: 18px;
  margin: 12px 0 0;
  color: #656565;
}

.thematic-details li+li {
  margin-top: 5px;
}

.thematic-viewport.is-auto-sliding {
  scroll-snap-type: none;
}

.thematic-principles {
  max-width: 1340px;
  margin: 54px auto 0;
  padding: 0 32px;
  font-size: 12px;
  line-height: 1.7;
  color: #737873;
}

@media (max-width: 1100px) {
  .thematic-layout {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 28px;
  }

  .thematic-intro h2 {
    font-size: clamp(1.85rem, 5vw, 2.5rem);
  }

  .thematic-card {
    flex-basis: 370px;
    width: 370px;
  }
}

@media (max-width: 760px) {
  .thematic-cards {
    padding: 50px 0;
  }

  .thematic-layout {
    grid-template-columns: minmax(0, 1fr);
    margin-left: 24px;
    gap: 32px;
  }

  .thematic-intro {
    min-height: 0;
    padding-right: 24px;
  }

  .thematic-intro h2 {
    font-size: clamp(1.85rem, 7vw, 2.25rem);
    max-width: 400px;
    margin: 0 0 20px;
  }

  .thematic-cta {
    padding-top: 26px;
  }

  .thematic-viewport {
    padding-left: 0;
    mask-image: none;
    scroll-snap-type: x mandatory;
  }

  .thematic-track {
    gap: 20px;
    padding-right: 24px;
  }

  .thematic-card {
    flex-basis: min(360px, calc(100vw - 64px));
    width: min(360px, calc(100vw - 64px));
    padding: 24px;
    scroll-snap-align: start;
  }

  .thematic-card h3 {
    font-size: 23px;
  }

  .thematic-principles {
    padding: 0 24px;
    margin-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thematic-viewport {
    scroll-snap-type: x mandatory;
  }

  .thematic-card {
    scroll-snap-align: start;
  }
}
