:root {
  --cream: #f5f0e1;
  --cream-soft: #fcf7f1;
  --cream-deep: #e8dcc4;
  --ink: #173f3d;
  --ink-soft: #42625f;
  --teal: #008068;
  --teal-deep: #07584e;
  --sky: #50b8e8;
  --sky-soft: #cceef9;
  --green: #00a858;
  --green-soft: #dff5e8;
  --aqua: #2098b0;
  --sun: #e9c46a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 63, 61, 0.16);
  --shadow-soft: 0 14px 40px rgba(23, 63, 61, 0.10);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
  --header-height: 84px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(80, 184, 232, 0.12), transparent 26rem),
    radial-gradient(circle at 92% 18%, rgba(0, 168, 88, 0.10), transparent 28rem),
    var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

::selection {
  color: var(--white);
  background: var(--teal);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--teal-deep);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background-image: url("images/grain.png");
  background-size: 180px 180px;
  opacity: 0.075;
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.85rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(245, 240, 225, 0.78);
  border-bottom: 1px solid rgba(23, 63, 61, 0.08);
  backdrop-filter: blur(18px);
  transition: height 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(252, 247, 241, 0.94);
  box-shadow: 0 10px 34px rgba(23, 63, 61, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: clamp(178px, 20vw, 265px);
  height: auto;
  transition: width 240ms ease;
}

.site-header.is-scrolled .brand img {
  width: clamp(160px, 18vw, 225px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 0.4rem 0;
  color: var(--ink-soft);
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

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

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

.site-nav .nav-cta {
  padding: 0.72rem 1.1rem;
  color: var(--white);
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 128, 104, 0.20);
}

.site-nav .nav-cta::after {
  display: none;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--white);
  background: var(--teal-deep);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(23, 63, 61, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 3.4rem) clamp(1rem, 4vw, 3.5rem) 5.4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 52vw;
  height: 52vw;
  min-width: 560px;
  min-height: 560px;
  right: -18vw;
  top: 8vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 184, 232, 0.22), rgba(0, 168, 88, 0.07) 48%, transparent 70%);
}

.hero-word {
  position: absolute;
  left: -0.06em;
  bottom: -0.24em;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(8rem, 23vw, 23rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 128, 104, 0.12);
  user-select: none;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(2.2rem, 5vw, 5rem);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.1rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span,
.section-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--green));
  border-radius: 999px;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.8rem, 8.3vw, 8.2rem);
}

.hero-lead {
  max-width: 42rem;
  margin: 1.45rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  line-height: 1.72;
}

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

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.86rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::after {
  content: "";
  width: 24px;
  height: 10px;
  margin-left: 0.7rem;
  background: currentColor;
  clip-path: polygon(0 42%, 72% 42%, 72% 0, 100% 50%, 72% 100%, 72% 58%, 0 58%);
  transition: transform 180ms ease;
}

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

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(4px);
}

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 16px 34px rgba(0, 128, 104, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-deep);
  box-shadow: 0 20px 44px rgba(0, 128, 104, 0.28);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 63, 61, 0.13);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.58rem 0.82rem;
  color: var(--teal-deep);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(0, 128, 104, 0.13);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-collage {
  position: relative;
  min-height: clamp(460px, 55vw, 650px);
}

.route-line {
  position: absolute;
  inset: 2% auto auto 2%;
  z-index: 0;
  width: 90%;
  height: 94%;
  color: var(--teal);
  opacity: 0.42;
}

.route-line path {
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawRoute 2.1s 400ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.route-line circle {
  fill: var(--sun);
  stroke: var(--teal);
  stroke-width: 2;
}

@keyframes drawRoute {
  to { stroke-dashoffset: 0; }
}

.blob-frame,
.mini-photo,
.story-photo {
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: var(--shadow);
}

.blob-frame::after,
.mini-photo::after,
.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), inset 0 -28px 60px rgba(23, 63, 61, 0.10);
  border-radius: inherit;
}

.blob-frame img,
.mini-photo img,
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo {
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.story-photo picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--cream-deep);
  border-radius: inherit;
  box-shadow: var(--shadow);
}

.story-photo::after {
  z-index: 2;
}

.hero-photo {
  position: absolute;
  right: 0;
  top: 4%;
  z-index: 2;
  width: min(88%, 620px);
  aspect-ratio: 1.12;
  border-radius: 48% 52% 54% 46% / 54% 44% 56% 46%;
  transform: rotate(2deg);
}

.mini-photo-one {
  position: absolute;
  left: 0;
  bottom: 3%;
  z-index: 3;
  width: min(42%, 250px);
  aspect-ratio: 0.86;
  border-radius: 58% 42% 50% 50% / 44% 58% 42% 56%;
  transform: rotate(-7deg);
}

.hero-stamp {
  position: absolute;
  right: 7%;
  bottom: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  padding: 1rem;
  text-align: center;
  color: var(--teal-deep);
  background: rgba(252, 247, 241, 0.88);
  border: 1px solid rgba(0, 128, 104, 0.18);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  transform: rotate(7deg);
}

.hero-stamp img {
  width: 48px;
  height: auto;
  margin-bottom: 0.25rem;
}

.hero-stamp span {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.05;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 5;
  width: 34px;
  height: 66px;
  transform: translateX(-50%);
  border: 1px solid rgba(23, 63, 61, 0.28);
  border-radius: 999px;
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateX(-50%);
  animation: scrollCue 2.2s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  70% { transform: translate(-50%, 34px); opacity: 0; }
}

.wave-divider {
  height: 90px;
  margin-top: -90px;
  color: var(--cream-soft);
  pointer-events: none;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
}

.wave-divider path {
  fill: currentColor;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1rem, 4vw, 3.5rem);
}

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

.section h2 {
  font-size: clamp(2.5rem, 5.4vw, 5.5rem);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(2.5rem, 5vw, 4.2rem);
}

.section-heading p:not(.section-kicker) {
  max-width: 650px;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .section-kicker {
  justify-content: center;
}

.purpose {
  background: var(--cream-soft);
}

.purpose-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.purpose-copy .lead {
  margin: 0 0 1.1rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  line-height: 1.38;
}

.purpose-copy p:not(.lead) {
  margin: 0;
  color: var(--ink-soft);
}

.purpose-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.purpose-tags span {
  padding: 0.62rem 0.82rem;
  color: var(--teal-deep);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(23, 63, 61, 0.14);
}

.impact-strip div {
  display: grid;
  gap: 0.2rem;
}

.impact-strip strong {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--teal);
}

.impact-strip span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.programs {
  background:
    linear-gradient(180deg, var(--cream-soft), var(--cream));
}

.program-list {
  border-top: 1px solid rgba(23, 63, 61, 0.14);
}

.program-row {
  position: relative;
  display: grid;
  grid-template-columns: 82px 72px minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.3rem) 0;
  border-bottom: 1px solid rgba(23, 63, 61, 0.14);
}

.program-row::before {
  content: "";
  position: absolute;
  inset: 0 -1rem;
  z-index: -1;
  background: linear-gradient(90deg, rgba(80, 184, 232, 0.10), rgba(0, 168, 88, 0.08));
  border-radius: var(--radius-md);
  opacity: 0;
  transform: scaleX(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.program-row:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.program-number {
  color: rgba(0, 128, 104, 0.28);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
}

.program-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--teal);
  background: var(--white);
  border: 1px solid rgba(0, 128, 104, 0.14);
  border-radius: 46% 54% 52% 48% / 52% 44% 56% 48%;
  box-shadow: 0 10px 26px rgba(23, 63, 61, 0.08);
}

.program-icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.program-content h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.program-content p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.text-link::after {
  content: "";
  width: 22px;
  height: 10px;
  background: currentColor;
  clip-path: polygon(0 42%, 72% 42%, 72% 0, 100% 50%, 72% 100%, 72% 58%, 0 58%);
  transition: transform 180ms ease;
}

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

.stories {
  background: var(--teal-deep);
  color: var(--white);
  overflow: hidden;
}

.stories::before {
  content: "";
  position: absolute;
  width: 44vw;
  height: 44vw;
  right: -18vw;
  top: -12vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 184, 232, 0.20), transparent 68%);
}

.stories .section-kicker {
  color: var(--sky-soft);
}

.stories .section-kicker::before {
  background: linear-gradient(90deg, var(--sun), var(--sky));
}

.stories-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.stories-copy h2 {
  color: var(--white);
}

.stories-copy p:not(.section-kicker) {
  margin: 1.4rem 0 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.stories .button-primary {
  color: var(--teal-deep);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.story-collage {
  position: relative;
  min-height: 620px;
}

.story-photo {
  margin: 0;
}

.story-photo figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  padding: 0.55rem 0.75rem;
  color: var(--white);
  background: rgba(23, 63, 61, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 700;
}

.story-photo-large figcaption {
  top: 1rem;
  bottom: auto;
}

.story-photo-large {
  position: absolute;
  left: 6%;
  top: 10%;
  width: 58%;
  aspect-ratio: 0.9;
  border-radius: 50% 50% 44% 56% / 58% 46% 54% 42%;
  transform: rotate(-4deg);
}

.story-photo-top {
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  aspect-ratio: 1.12;
  border-radius: 46% 54% 50% 50% / 52% 46% 54% 48%;
  transform: rotate(5deg);
}

.story-photo-bottom {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 50%;
  aspect-ratio: 1.18;
  border-radius: 56% 44% 48% 52% / 44% 58% 42% 56%;
  transform: rotate(-2deg);
}

.story-photo-mini {
  position: absolute;
  left: 0;
  bottom: 1%;
  z-index: 3;
  width: 34%;
  aspect-ratio: 1.05;
  border-radius: 54% 46% 52% 48% / 46% 54% 46% 54%;
  transform: rotate(6deg);
}

.approach {
  background: var(--cream);
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.process::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--green));
  opacity: 0.28;
}

.process-step {
  position: relative;
  padding: 5.2rem 1rem 1.3rem;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(23, 63, 61, 0.10);
  border-radius: 48% 52% 34px 34px / 34px 34px 34px 34px;
}

.process-step span {
  position: absolute;
  top: 18px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--white);
  background: var(--teal);
  border: 4px solid var(--cream);
  border-radius: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  font-weight: 800;
}

.process-step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-align: center;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
  text-align: center;
}

.join {
  padding-top: 2rem;
  background: linear-gradient(180deg, var(--cream), var(--cream-soft));
}

.join-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--white);
  background:
    radial-gradient(circle at 84% 20%, rgba(80, 184, 232, 0.24), transparent 24rem),
    linear-gradient(135deg, var(--teal-deep), var(--teal));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.join-panel .section-kicker {
  color: var(--sky-soft);
}

.join-panel .section-kicker::before {
  background: var(--sun);
}

.join-panel h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.7rem);
}

.join-panel p:not(.section-kicker) {
  max-width: 680px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.join-actions {
  display: grid;
  gap: 0.85rem;
}

.join-actions a {
  display: grid;
  gap: 0.2rem;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  transition: background 180ms ease, transform 180ms ease;
}

.join-actions a:hover,
.join-actions a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
}

.join-actions span {
  color: var(--sky-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.join-actions strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.15;
}

.contact {
  background: var(--cream-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(2.2rem, 6vw, 6rem);
  align-items: start;
}

.contact-copy p:not(.section-kicker) {
  max-width: 620px;
  color: var(--ink-soft);
}

.contact-methods {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.contact-methods div {
  padding: 1rem 0;
  border-top: 1px solid rgba(23, 63, 61, 0.14);
}

.contact-methods span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-methods strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.2;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid rgba(23, 63, 61, 0.10);
  border-radius: 34px 34px 34px 8px;
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  color: var(--ink);
  background: var(--cream-soft);
  border: 1px solid rgba(23, 63, 61, 0.12);
  border-radius: 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 128, 104, 0.10);
}

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.form-note code {
  padding: 0.12rem 0.28rem;
  background: var(--cream);
  border-radius: 6px;
  color: var(--teal-deep);
}

.site-footer {
  padding: 3.5rem clamp(1rem, 4vw, 3.5rem) 2rem;
  color: rgba(255, 255, 255, 0.76);
  background: #102f2c;
}

.footer-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 1.1rem;
  text-align: center;
}

.footer-brand img {
  width: min(280px, 72vw);
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
}

.footer-inner > p {
  max-width: 680px;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-nav a {
  color: var(--white);
  opacity: 0.82;
  transition: opacity 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  opacity: 1;
}

.image-note {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1080px) {
  .hero-inner,
  .purpose-grid,
  .stories-layout,
  .join-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: calc(var(--header-height) + 2.2rem);
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-collage {
    min-height: 540px;
  }

  .hero-photo {
    width: min(86%, 640px);
  }

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

  .process::before {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding: 0.7rem 1rem;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .brand img {
    width: 178px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.35rem;
    padding: 5rem 1.5rem 2rem;
    background: var(--cream);
    font-family: var(--font-display);
    font-size: clamp(2rem, 9vw, 4rem);
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

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

  .site-nav .nav-cta {
    margin-top: 1rem;
    padding: 1rem 1.4rem;
    font-family: var(--font-body);
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 6rem;
  }

  .hero-inner {
    gap: 2.4rem;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 14vw, 5.4rem);
  }

  .hero-collage {
    min-height: 420px;
  }

  .hero-photo {
    top: 0;
    width: 92%;
  }

  .mini-photo-one {
    width: 42%;
    bottom: 0;
  }

  .hero-stamp {
    right: 0;
    width: 124px;
    height: 124px;
  }

  .hero-stamp img {
    width: 38px;
  }

  .hero-stamp span {
    font-size: 0.82rem;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .impact-strip {
    grid-template-columns: 1fr;
  }

  .program-row {
    grid-template-columns: 58px 1fr;
    align-items: start;
  }

  .program-number {
    grid-row: span 2;
    font-size: 2.1rem;
  }

  .program-icon {
    display: none;
  }

  .program-content {
    grid-column: 2;
  }

  .program-row .text-link {
    grid-column: 2;
    margin-top: 0.45rem;
  }

  .story-collage {
    min-height: 520px;
  }

  .story-photo-large {
    left: 0;
    width: 68%;
  }

  .story-photo-top {
    width: 48%;
  }

  .story-photo-bottom {
    right: 0;
    width: 58%;
  }

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

  .process-step {
    padding: 4.8rem 1.2rem 1.4rem;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

  .hero-collage {
    min-height: 340px;
  }

  .hero-photo {
    width: 100%;
    aspect-ratio: 0.98;
  }

  .mini-photo-one {
    width: 46%;
  }

  .hero-stamp {
    display: none;
  }

  .section h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .purpose-tags {
    display: grid;
  }

  .story-collage {
    min-height: 430px;
  }

  .story-photo figcaption {
    left: 0.65rem;
    bottom: 0.65rem;
    max-width: calc(100% - 1.3rem);
    font-size: 0.7rem;
  }

  .join-panel,
  .contact-form {
    border-radius: 24px;
  }
}

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

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