:root {
  --ink: #050505;
  --paper: #f5f1e8;
  --peace: #ffcf00;
  --rust: #d9a900;
  --muted: #aaa79f;
  --line: rgba(255, 207, 0, 0.22);
  --display: "Archivo Black", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
main {
  display: flex;
  flex-direction: column;
}
.hero { order: 0; }
.manifesto { order: 1; }
.film { order: 2; }
.programs { order: 3; }
.quote-band { order: 4; }
.leadership { order: 5; }
.participate { order: 6; }
.pathways { order: 7; }
.ask { order: 8; }
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  background: var(--peace);
  color: var(--ink);
  padding: 0.7rem 1rem;
  z-index: 100;
}
.skip-link:focus {
  top: 1rem;
}
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.site-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 104px;
  padding: 0.55rem 4vw;
  border-bottom: 1px solid transparent;
  transition: 0.35s;
  background: linear-gradient(#050505e8, transparent);
}
.site-header.scrolled {
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand img {
  display: block;
  width: auto;
}
.brand-header {
  grid-column: 2;
  justify-self: center;
  position: relative;
  z-index: 2;
}
.site-header .brand-header {
  visibility: hidden;
  pointer-events: none;
}
.brand-header img {
  height: 88px;
  filter: drop-shadow(0 5px 12px #000);
}
nav {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.05rem;
  font-size: 0.82rem;
}
nav a {
  transition: 0.2s;
}
nav a:hover {
  color: var(--peace);
}
.nav-cta {
  border: 1px solid currentColor;
  padding: 0.65rem 1rem;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 9rem 6vw 5rem;
  overflow: hidden;
}
.hero-media,
.quote-image {
  position: absolute;
  inset: -10%;
  background: center/cover no-repeat;
}
.hero-media {
  background-image: url("assets/hero.png");
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(9, 12, 11, 0.52), rgba(9, 12, 11, 0.9) 72%),
    linear-gradient(0deg, rgba(9, 12, 11, 0.9), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  max-width: none;
  margin: 0 auto;
  text-align: center;
}
.eyebrow,
.kicker {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  color: var(--peace);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--display);
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(3.3rem, 8.4vw, 8.8rem);
  margin: 0.8rem 0 1.4rem;
  max-width: 1100px;
}
h1 em,
h2 em {
  font-style: normal;
  color: var(--peace);
}
.hero-statement {
  max-width: none;
  margin: 0 auto clamp(0.8rem, 2vh, 1.5rem);
  font-size: clamp(1.8rem, 4.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.025em;
}
.hero-logo-slot {
  display: grid;
  place-items: center;
  min-height: clamp(180px, 32vw, 430px);
  margin: -2rem auto;
}
.hero-logo-slot img {
  width: min(520px, 58vw);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.7));
}
.hero-peace-line {
  margin: 0 auto 1rem;
  font: clamp(2.2rem, 6.4vw, 7rem) / 0.9 var(--display);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.hero-peace-line a {
  color: var(--peace);
  text-decoration: underline;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.1em;
  transition: color 0.25s;
}
.hero-peace-line a:hover,
.hero-peace-line a:focus-visible {
  color: white;
}
.hero-copy {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: #d9dcd8;
}
.actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  justify-content: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  transition: 0.25s;
}
.button-primary {
  background: var(--peace);
  color: var(--ink);
  border: 1px solid var(--peace);
}
.button-primary:hover {
  background: white;
  border-color: white;
  transform: translateY(-2px);
}
.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.button-ghost:hover {
  border-color: var(--peace);
  color: var(--peace);
}
.scroll-cue {
  position: absolute;
  right: 4vw;
  bottom: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-cue span {
  width: 3rem;
  height: 1px;
  background: var(--peace);
}
.section {
  padding: 8rem 6vw;
}
.section-label {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #777f79;
  border-top: 2px solid currentColor;
  padding-top: 1.25rem;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}
.manifesto {
  background: var(--paper);
  color: var(--ink);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8vw;
  align-items: center;
}
.manifesto-copy h2,
.section-heading h2,
.film-copy h2,
.leadership h2,
.ask h2 {
  font-size: clamp(3.7rem, 7.6vw, 8.8rem);
}
.manifesto-copy h2 span {
  color: #b48a00;
}
.manifesto-copy > p:last-child,
.film-copy > p,
.leader p,
.ask-content > p {
  max-width: 650px;
  font-size: 1.08rem;
  color: #5a625d;
}
.image-window {
  height: min(65vw, 660px);
  overflow: hidden;
  clip-path: polygon(7% 0, 100% 0, 100% 93%, 0 100%, 0 8%);
}
.image-window img {
  height: 115%;
  object-fit: cover;
  transform: translateY(var(--img-y, 0));
}
.section-dark {
  background: #0e1411;
}
.film-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  gap: 8vw;
  align-items: center;
}
.film-poster {
  position: relative;
  transform: rotate(-1.5deg);
  box-shadow: 0 30px 80px #0008;
}
.film-poster img {
  aspect-ratio: 4/5;
  object-fit: cover;
}
.poster-tag {
  position: absolute;
  right: -2rem;
  bottom: 2rem;
  background: var(--peace);
  color: var(--ink);
  padding: 0.7rem 1rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}
.film-copy > p {
  color: var(--muted);
}
.feature-list {
  padding: 0;
  margin: 2.5rem 0 0;
  list-style: none;
}
.feature-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  font-weight: 600;
}
.feature-list span {
  color: var(--peace);
  font-size: 0.7rem;
}
.pathways {
  background: #151d19;
}
.section-heading {
  max-width: 1180px;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}
.section-heading h2 {
  font-size: clamp(4rem, 9vw, 10rem);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.impact-card {
  position: relative;
  min-height: 520px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    linear-gradient(0deg, #050505f2, #0505050d 70%),
    var(--card-image) center/cover no-repeat;
}
.impact-card:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  transition: 0.35s;
}
.impact-card:hover:after {
  inset: 0.7rem;
  border-color: var(--peace);
}
.card-number,
.card-copy {
  position: relative;
  z-index: 2;
}
.card-number {
  font: 2rem var(--display);
  color: var(--peace);
}
.card-copy h3 {
  font: 2rem var(--display);
  text-transform: uppercase;
  margin: 0 0 0.7rem;
}
.card-copy p {
  color: #ccd1cc;
  margin: 0;
}
.quote-band {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 8vw;
  overflow: hidden;
}
.programs {
  position: relative;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 207, 0, 0.11), transparent 28rem),
    var(--ink);
}
.programs-intro {
  max-width: 980px;
  margin-bottom: 4rem;
}
.programs-intro h2 {
  font-size: clamp(4rem, 9vw, 10rem);
  margin: 0.55rem 0 1.25rem;
}
.programs-intro > p:last-child {
  max-width: 760px;
  color: #bfc2bd;
  font-size: 1.1rem;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.program-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: #0c0c0c;
  transition: background 0.35s, transform 0.35s;
}
.program-card:hover {
  z-index: 1;
  background: #14120a;
  transform: translateY(-4px);
}
.program-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--peace);
  font: 0.75rem var(--display);
  letter-spacing: 0.12em;
}
.program-icon {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.35rem;
}
.program-tagline {
  margin: 2.6rem 0 0.55rem;
  color: var(--peace);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.program-card h3 {
  max-width: 620px;
  margin: 0 0 1.8rem;
  font: clamp(1.8rem, 3vw, 3.2rem) / 1 var(--display);
  text-transform: uppercase;
}
.program-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 0 0 2.2rem;
  list-style: none;
}
.program-list li {
  padding: 0.42rem 0.72rem;
  border: 1px solid #33352f;
  color: #d8d8d1;
  font-size: 0.78rem;
}
.program-outcome {
  margin: auto 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: #aeb1ac;
}
.program-outcome strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--peace);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.experience {
  margin-top: 5rem;
  padding: clamp(1.5rem, 4vw, 4rem);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #191506, #0b0b0b 58%);
}
.experience-heading h3 {
  margin: 0 0 3rem;
  font: clamp(2rem, 4vw, 4.2rem) / 1 var(--display);
  text-transform: uppercase;
}
.experience-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}
.experience-steps li {
  position: relative;
  padding: 1.25rem;
  border-top: 1px solid var(--peace);
}
.experience-steps li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: -0.8rem;
  right: -0.55rem;
  padding: 0 0.2rem;
  background: #0d0c08;
  color: var(--peace);
}
.experience-steps span,
.experience-steps strong,
.experience-steps small {
  display: block;
}
.experience-steps span {
  color: var(--peace);
  font: 0.7rem var(--display);
}
.experience-steps strong {
  margin-top: 1.15rem;
  font: 1.25rem var(--display);
  text-transform: uppercase;
}
.experience-steps small {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.8rem;
}
.quote-image {
  background-image:
    linear-gradient(#05050555, #050505cc), url("assets/hero.png");
}
.quote-band blockquote {
  position: relative;
  max-width: 1100px;
  text-align: center;
  font: clamp(2.4rem, 6vw, 6.4rem) / 1 var(--display);
  text-transform: uppercase;
  margin: 0;
}
.quote-band em {
  font-style: normal;
  color: var(--peace);
}
.section-light {
  background: #e5e1d7;
  color: var(--ink);
}
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.leaders {
  border-top: 1px solid #9ca19d;
}
.founder-mark {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0 2.2rem;
  border-bottom: 1px solid #9ca19d;
}
.founder-mark img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.16));
}
.founder-mark span {
  color: #6e5a00;
  font: .8rem var(--display);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.founder-mark p {
  margin: .5rem 0 0;
  color: #4e554f;
}
.leader {
  padding: 2.2rem 0;
  border-bottom: 1px solid #9ca19d;
}
.leader span {
  color: #68706a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}
.leader h3 {
  font: 2rem var(--display);
  text-transform: uppercase;
  margin: 0.4rem 0;
}
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.audience-tags span {
  padding: 0.55rem 0.8rem;
  border: 1px solid #a9a79f;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.participate {
  background: #101612;
}
.participate-heading {
  max-width: 950px;
  margin-bottom: 3.5rem;
}
.participate-heading h2 {
  margin: 0.6rem 0 0;
  font-size: clamp(4rem, 9vw, 10rem);
}
.participate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.participate-card {
  min-height: 340px;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: #0a0d0b;
}
.participate-card > span {
  color: var(--peace);
  font: 0.75rem var(--display);
}
.participate-card h3 {
  margin: 3rem 0 1rem;
  font: clamp(1.8rem, 3vw, 3rem) / 1 var(--display);
  text-transform: uppercase;
}
.participate-card p {
  max-width: 560px;
  color: var(--muted);
}
.participate-card a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--peace);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.76rem;
}
.ask {
  position: relative;
  text-align: center;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, #332b08 0, #050505 58%);
}
.ask-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}
.goal {
  font: clamp(6rem, 16vw, 16rem) / 0.85 var(--display);
  letter-spacing: -0.07em;
  color: var(--peace);
  margin: 1rem 0;
}
.goal span {
  font-size: 0.35em;
  vertical-align: top;
}
.ask h2 {
  font-size: clamp(2.2rem, 4.3vw, 4.8rem);
}
.ask-content > p {
  color: #bbc2bc;
  margin: 0 auto 2rem;
}
.ask-orbit {
  position: absolute;
  border: 1px solid rgba(214, 255, 40, 0.18);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}
.orbit-one {
  width: 70vw;
  height: 70vw;
}
.orbit-two {
  width: 42vw;
  height: 42vw;
  animation-direction: reverse;
  animation-duration: 12s;
}
.allocation {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(900px, 100%);
  margin-top: 5rem;
  border-top: 1px solid var(--line);
}
.allocation div {
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}
.allocation div:last-child {
  border: 0;
}
.allocation strong,
.allocation span {
  display: block;
}
.allocation strong {
  font: 1.8rem var(--display);
  color: var(--peace);
}
.allocation span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 4vw;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}
.campaign-home {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
}
.campaign-home img {
  display: block;
  width: clamp(4.2rem, 6vw, 5.6rem);
  height: auto;
}
.campaign-page .site-header {
  grid-template-columns: 1fr 1fr;
}
.campaign-page .site-header nav {
  grid-column: 2;
}
.campaign-hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 11rem 6vw 7rem;
  overflow: hidden;
  background:
    linear-gradient(0deg, #050505 0%, rgba(5,5,5,.4) 62%, rgba(5,5,5,.72)),
    url("assets/hero.png") center/cover no-repeat;
}
.campaign-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1240px;
}
.campaign-hero h1 {
  max-width: 1200px;
  font-size: clamp(4rem, 9vw, 10rem);
  margin: .6rem 0 1.3rem;
}
.campaign-hero h1 em {
  display: block;
  color: var(--peace);
  font-style: normal;
}
.campaign-lead {
  max-width: 900px;
  color: #e3e0d8;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}
.campaign-story {
  background: var(--paper);
  color: var(--ink);
}
.campaign-story-grid,
.campaign-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: center;
}
.campaign-story h2,
.campaign-feature h2,
.campaign-call h2 {
  font-size: clamp(3.5rem, 7.5vw, 8.5rem);
}
.campaign-story-copy p,
.campaign-feature-copy p {
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
}
.campaign-story-copy .campaign-question {
  margin: 2rem 0;
  font: clamp(1.6rem, 3vw, 3rem) / 1.1 var(--display);
  text-transform: uppercase;
}
.campaign-image {
  min-height: 650px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0,0,0,.22);
}
.campaign-image img {
  height: 100%;
  object-fit: cover;
}
.campaign-feature {
  background: #0e1411;
}
.campaign-feature + .campaign-feature {
  background: #151d19;
}
.campaign-feature-copy p {
  color: #c8ccc7;
}
.decision-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 0;
  margin: 2.5rem 0 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}
.decision-list li {
  padding: 1rem;
  background: #090b0a;
  color: #ece9e1;
}
.campaign-call {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(circle, #403606 0, #050505 62%);
}
.campaign-call-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: auto;
}
.campaign-call-inner > p:not(.kicker) {
  max-width: 850px;
  margin: 0 auto 2rem;
  color: #c8ccc7;
  font-size: 1.15rem;
}
.support-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 2.5rem 0;
}
.support-list span {
  padding: .65rem .9rem;
  border: 1px solid var(--line);
  color: var(--peace);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .75rem;
}
.campaign-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem;
}
.brand-footer img {
  height: 76px;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 850px) {
  .site-header {
    min-height: 88px;
    padding: 0.35rem 5vw;
  }
  .brand-header img {
    height: 74px;
  }
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 4vw 2rem;
    background: #050505fa;
  }
  .site-header.open nav {
    display: flex;
  }
  .menu-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
    background: none;
    color: white;
    border: 1px solid var(--peace);
    padding: 0.45rem 0.7rem;
  }
  .manifesto-grid,
  .film-layout,
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .program-grid,
  .experience-steps,
  .participate-grid {
    grid-template-columns: 1fr;
  }
  .program-card {
    min-height: auto;
  }
  .program-outcome {
    margin-top: 1.5rem;
  }
  .experience-steps li:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: 1rem;
    bottom: -0.8rem;
  }
  .impact-card {
    min-height: 430px;
  }
  .film-poster {
    max-width: 600px;
  }
  .section {
    padding: 6rem 5vw;
  }
  .section-label {
    font-size: clamp(1.25rem, 6vw, 2rem);
    margin-bottom: 3.5rem;
  }
  .eyebrow,
  .kicker {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }
  .campaign-page .site-header {
    grid-template-columns: 1fr auto;
  }
  .campaign-page .site-header nav {
    grid-column: 1 / -1;
  }
  .campaign-hero {
    min-height: 82svh;
    padding: 9rem 5vw 5rem;
  }
  .campaign-story-grid,
  .campaign-feature {
    grid-template-columns: 1fr;
  }
  .campaign-image {
    min-height: 420px;
  }
  .founder-mark {
    grid-template-columns: 88px 1fr;
  }
  .founder-mark img {
    width: 88px;
    height: 88px;
  }
  .decision-list {
    grid-template-columns: 1fr;
  }
  .manifesto-copy h2,
  .section-heading h2,
  .film-copy h2,
  .leadership h2,
  .programs-intro h2,
  .participate-heading h2,
  .ask h2 {
    font-size: clamp(3rem, 13vw, 5.8rem);
    overflow-wrap: anywhere;
  }
  .hero {
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 7rem;
  }
  .hero-logo-slot {
    min-height: 180px;
    margin: -1rem auto;
  }
  .hero-logo-slot img {
    width: min(330px, 78vw);
  }
  .allocation {
    grid-template-columns: 1fr;
  }
  .allocation div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ask-orbit {
    animation: none;
  }
  .parallax {
    transform: none !important;
  }
}
