/* Megaphone single-page site */

/* ============ SCROLL ANIMATIONS ============ */
.fx-reveal {
  opacity: 0;
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.fx-reveal--up { transform: translateY(28px); }
.fx-reveal--slide { transform: translateX(48px); }
.fx-reveal--drop { transform: translateY(-44px) scale(.96); }
.fx-reveal--mark { transform: translateY(20px) scale(.92); }
.fx-reveal.is-in {
  opacity: 1;
  transform: translate(0,0) scale(1);
}
[data-parallax] {
  --py: 0px;
  will-change: transform;
  transform: translateY(var(--py));
  transition: transform .12s linear;
}
.fx-reveal[data-parallax] {
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.fx-reveal[data-parallax].is-in { transform: translateY(var(--py)) scale(1); }

.hl-sage--wipe {
  background-image: linear-gradient(var(--mp-sage-300), var(--mp-sage-300));
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  padding: 0 .12em;
  transition: background-size .9s cubic-bezier(.2,.7,.2,1) .25s;
}
.fx-reveal.is-in .hl-sage--wipe { background-size: 100% 100%; }
@media (prefers-reduced-motion: reduce) {
  .fx-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  [data-parallax] { transform: none !important; }
  .hl-sage--wipe { background-size: 100% 100% !important; }
}

* { box-sizing: border-box; }
html, body, #root { margin: 0; background: var(--mp-cream); }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

/* Section anchor offsets — clear the fixed nav and give a breath of cream/ink
   above the section eyebrow when navigating in. */
#mission, #projects, #donate { scroll-margin-top: 80px; }

::selection { background: var(--mp-ochre); color: var(--mp-ink); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  border-bottom: 2px solid transparent;
}
.nav.is-scrolled {
  background: var(--mp-ink);
  border-bottom-color: var(--mp-ink);
}
.nav__brand {
  display: inline-flex; align-items: center;
  text-decoration: none;
  line-height: 1;
}
.nav__brand-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  /* source is cream — when nav is transparent over cream, invert cream -> ink */
  filter: brightness(0) saturate(100%) invert(13%) sepia(8%) saturate(640%) hue-rotate(65deg) brightness(93%) contrast(92%);
  transition: filter .25s ease;
}
.nav.is-scrolled .nav__brand-img {
  /* scrolled nav is ink — show the original cream */
  filter: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--mp-ink);
  text-decoration: none;
  opacity: .75;
  transition: opacity .15s ease, color .25s ease;
}
.nav.is-scrolled .nav__links a { color: var(--mp-cream); }
.nav__links a:hover { opacity: 1; }

.nav__donate {
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  padding: 10px 16px 10px 20px;
  background: var(--mp-ochre);
  color: var(--mp-ink);
  border: 2px solid var(--mp-ink);
  border-radius: 3px;
  box-shadow: 3px 3px 0 var(--mp-ink);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .18s cubic-bezier(.2,.8,.2,1),
              box-shadow .18s cubic-bezier(.2,.8,.2,1),
              background-color .18s ease;
  animation: navDonatePulse 2.6s ease-in-out infinite;
}
.nav__donate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 247, 226, .55) 45%, rgba(255, 247, 226, .55) 55%, transparent 100%);
  transform: translateX(-120%) skewX(-18deg);
  z-index: -1;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
@keyframes navDonatePulse {
  0%, 100% { box-shadow: 3px 3px 0 var(--mp-ink); }
  50%      { box-shadow: 3px 3px 0 var(--mp-ink), 0 0 0 4px rgba(214, 149, 66, .18); }
}
.nav.is-scrolled .nav__donate {
  border-color: var(--mp-cream);
  box-shadow: 3px 3px 0 var(--mp-cream);
  animation: navDonatePulseCream 2.6s ease-in-out infinite;
}
@keyframes navDonatePulseCream {
  0%, 100% { box-shadow: 3px 3px 0 var(--mp-cream); }
  50%      { box-shadow: 3px 3px 0 var(--mp-cream), 0 0 0 4px rgba(255, 247, 226, .22); }
}
.nav__donate > span[aria-hidden] { display: inline-flex; align-items: center; justify-content: center; font-size: 13px; line-height: 1; transform: translateY(-2px); transition: transform .25s cubic-bezier(.2,.8,.2,1); }
.nav__donate:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--mp-ink);
  animation: none;
  background: #e6a355;
}
.nav__donate:hover::before { transform: translateX(120%) skewX(-18deg); }
.nav__donate:hover > span[aria-hidden] { transform: translate(3px, -2px); }
.nav.is-scrolled .nav__donate:hover {
  box-shadow: 6px 6px 0 var(--mp-cream);
}
.nav__donate:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--mp-ink);
  transition-duration: .05s;
}

/* ============ CONFETTI ============ */
.confetti-piece {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translate(-50%, -50%);
  animation: confettiFly 1.1s cubic-bezier(.2,.6,.3,1) forwards;
}
@keyframes confettiFly {
  0%   { transform: translate(-50%, -50%) rotate(0deg); opacity: 1; }
  10%  { opacity: 1; }
  100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy) + 180px)) rotate(var(--rot)); opacity: 0; }
}

/* ============ STICKY FLOATING DONATE ============ */
.float-donate {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px 16px 18px;
  background: var(--mp-ochre);
  color: var(--mp-ink);
  border: 2px solid var(--mp-ink);
  border-radius: 3px;
  box-shadow: 5px 5px 0 var(--mp-ink);
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, opacity .4s ease, visibility .4s ease;
  animation: stamp-pulse 2.6s cubic-bezier(.4,0,.2,1) infinite;
}
.float-donate.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.float-donate:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--mp-ink);
  animation-play-state: paused;
}
.float-donate:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--mp-ink); }
.float-donate__arrow {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--mp-ink);
  color: var(--mp-ochre);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 900;
}

@keyframes stamp-pulse {
  0%, 100% { box-shadow: 5px 5px 0 var(--mp-ink); }
  50%      { box-shadow: 5px 5px 0 var(--mp-ink), 0 0 0 6px rgba(191,143,64,0.25); }
}

/* ============ HERO ============ */
/* ============ HERO (centered variant) ============ */
.hero--centered {
  min-height: 100vh;
  padding: 140px 48px 88px;
  background: var(--mp-cream);
  border-bottom: 2px solid var(--mp-ink);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero__center {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__mark-centered {
  width: clamp(220px, 28vw, 340px);
  margin: 0 auto 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__mark-centered img {
  width: 100%;
  height: auto;
  display: block;
  /* source is cream — recolor to ink */
  filter: brightness(0) saturate(100%) invert(13%) sepia(8%) saturate(640%) hue-rotate(65deg) brightness(93%) contrast(92%);
}
.hero__title--centered {
  text-align: center;
  margin: 0 0 28px;
  max-width: 14ch;
}
.hero__lede--centered {
  text-align: center;
  margin: 0 auto 36px;
  max-width: 52ch;
}
.hero__ctas--centered {
  justify-content: center;
  margin-bottom: 40px;
}
.hero__stamp-row--centered {
  justify-content: center;
  opacity: .85;
}

/* Keep old left-right hero styles in case we revisit */
.hero { min-height: 100vh; padding: 120px 48px 64px; background: var(--mp-cream); border-bottom: 2px solid var(--mp-ink); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.hero__stamp-top {
  position: absolute;
  top: 108px; left: 48px;
  display: flex; align-items: center; gap: 10px;
}
.hero__stamp-top .bar { display:inline-block; width: 36px; height: 2px; background: var(--mp-ink); }
.hero__stamp-top .txt {
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  color: var(--mp-ink);
}

.hero__grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 72px;
  align-items: center;
  width: 100%;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: var(--mp-ink);
}
.hero__title .script {
  font-family: var(--font-script);
  font-weight: 500;
  color: var(--mp-ochre);
  font-size: 1.08em;
  letter-spacing: 0;
  display: inline-block;
  transform: translateY(6px);
  padding-right: .1em;
}
.hero__title .underline {
  position: relative;
  display: inline-block;
}
.hero__title .hl-sage {
  display: inline-block;
  background: var(--mp-sage-300);
  padding: 0 .12em;
  line-height: 1;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero__title .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: .06em;
  height: 14px;
  background: var(--mp-sage);
  z-index: -1;
  transform: skewX(-8deg);
}
.hero__lede {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  max-width: 48ch;
  margin: 0 0 36px;
  color: var(--mp-ink);
}
.hero__lede em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 500;
  font-size: 1.5em;
  color: var(--mp-ochre);
  line-height: .8;
  padding: 0 2px;
}
.hero__lede .hl-sage {
  font-style: normal;
  font-weight: 700;
  background: var(--mp-sage-300);
  padding: 0 .25em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.btn {
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 14px;
  padding: 16px 26px;
  border: 2px solid var(--mp-ink);
  border-radius: 3px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn--primary {
  background: var(--mp-ochre);
  color: var(--mp-ink);
  box-shadow: 5px 5px 0 var(--mp-ink);
}
.btn--primary:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--mp-ink); }
.btn--primary:active { transform: translate(2px,2px); box-shadow: 0 0 0 var(--mp-ink); }

.btn--secondary {
  background: transparent;
  color: var(--mp-ink);
  box-shadow: 5px 5px 0 var(--mp-ink);
  background: var(--mp-cream);
}
.btn--secondary:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--mp-ink); background: var(--mp-cream-200); }
.btn--secondary:active { transform: translate(2px,2px); box-shadow: 0 0 0 var(--mp-ink); }

.btn--ink {
  background: var(--mp-ink);
  color: var(--mp-cream);
  box-shadow: 5px 5px 0 var(--mp-ochre);
}
.btn--ink:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--mp-ochre); }
.btn--ink:active { transform: translate(2px,2px); box-shadow: 0 0 0 var(--mp-ochre); }
.btn > span[aria-hidden] { display: inline-flex; line-height: 1; font-size: 1.1em; transform: translateY(-3px); }

.btn--xl {
  font-size: 18px;
  padding: 22px 36px;
  letter-spacing: .18em;
}

/* hero mark — the tilt */
.hero__mark-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero__mark {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--mp-ochre);
  border: 2px solid var(--mp-ink);
  border-radius: 6px;
  box-shadow: 10px 10px 0 var(--mp-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,0,0,1);
}
.hero__mark:hover { transform: rotate(-2deg); }
.hero__mark img {
  width: 82%;
  max-width: 420px;
  /* mark source is cream — invert to ink so it reads on ochre */
  filter: brightness(0) saturate(100%) invert(13%) sepia(8%) saturate(640%) hue-rotate(65deg) brightness(93%) contrast(92%);
}
.hero__mark::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(36,41,36,.28);
  border-radius: 3px;
  pointer-events: none;
}
.hero__mark-stamp {
  position: absolute;
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  color: var(--mp-ink);
  opacity: .7;
}
.hero__mark-stamp.tl { top: 22px; left: 22px; }
.hero__mark-stamp.br { bottom: 22px; right: 22px; }

.hero__stamp-row {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  color: var(--mp-ink-500);
}
.hero__stamp-row .sq {
  border: 2px solid var(--mp-ink);
  padding: 4px 9px;
  font-weight: 700;
  color: var(--mp-ink);
}
.hero__stamp-row .dot { width: 4px; height: 4px; background: var(--mp-ink); border-radius: 999px; }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--mp-ink);
  color: var(--mp-cream);
  overflow: hidden;
  border-bottom: 2px solid var(--mp-ink);
  padding: 18px 0;
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 56px;
  color: var(--mp-cream);
}
.marquee__item .dot {
  width: 10px; height: 10px;
  background: var(--mp-ochre);
  border-radius: 999px;
  display: inline-block;
}
.marquee__item .script {
  font-family: var(--font-script);
  font-weight: 500;
  color: var(--mp-ochre);
  font-size: 1.3em;
  letter-spacing: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ MISSION ============ */
.mission {
  background: var(--mp-cream);
  padding: 88px 48px;
  border-bottom: 2px solid var(--mp-ink);
}
.mission__inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.mission__label {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 700;
  color: var(--mp-ochre);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mission__label .bar { display:inline-block; width: 32px; height: 2px; background: var(--mp-ochre); }
.mission__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 4.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: var(--mp-ink);
  text-wrap: balance;
}
.mission__heading .hl-sage,
.projects__title .hl-sage {
  display: inline-block;
  background: var(--mp-sage-300);
  padding: 0 .12em;
  line-height: 1;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.mission__heading .script {
  font-family: var(--font-script);
  font-weight: 500;
  color: var(--mp-ochre);
  font-size: 1.1em;
  letter-spacing: 0;
  display: inline-block;
}

.mission__copy {
  max-width: 680px;
  text-align: left;
}

.mission__body {
  font-size: 19px;
  line-height: 1.6;
  color: var(--mp-ink);
  margin: 0 0 20px;
}
.mission__body strong {
  font-weight: 700;
  background: var(--mp-sage-300);
  padding: 0 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.mission__link {
  color: var(--mp-ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: var(--mp-ochre);
  transition: text-decoration-color .15s ease, color .15s ease;
}
.mission__link:hover { color: var(--mp-ochre); text-decoration-color: var(--mp-ink); }

.mission__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 2px solid var(--mp-ink);
}
.fact__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--mp-ink);
  margin-bottom: 6px;
}
.fact__num .accent { color: var(--mp-ochre); }
.fact__lbl {
  font-family: var(--font-condensed);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  color: var(--mp-ink-500);
  max-width: 24ch;
}

/* ============ PROJECTS — horizontal scroll ============ */
.projects {
  background: var(--mp-ink);
  color: var(--mp-cream);
  position: relative;
  border-bottom: 2px solid var(--mp-ink);
}
.projects__head {
  padding: 88px 48px 24px;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.projects__head-left { flex: 0 0 auto; max-width: 720px; }
.projects__eyebrow {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 700;
  color: var(--mp-ochre);
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.projects__eyebrow .bar { width: 32px; height: 2px; background: var(--mp-ochre); display:inline-block; }
.projects__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 4.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--mp-cream);
  margin: 0;
  text-wrap: balance;
}
.projects__title .script {
  font-family: var(--font-script);
  font-weight: 500;
  color: var(--mp-ochre);
  font-size: 1.1em;
  letter-spacing: 0;
}
.projects__sub {
  font-size: 17px;
  line-height: 1.55;
  max-width: 58ch;
  opacity: .82;
  margin: 18px auto 0;
  text-wrap: pretty;
}
.projects__controls {
  display: flex;
  gap: 10px;
  align-items: center;
}
.projects__pager {
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  color: var(--mp-ochre);
  margin-right: 14px;
}
.projects__pager b { color: var(--mp-cream); font-weight: 900; }
.projects__arrow {
  width: 52px; height: 52px;
  border: 2px solid var(--mp-cream);
  background: transparent;
  color: var(--mp-cream);
  border-radius: 3px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: transform .12s ease, background .12s ease, color .12s ease, box-shadow .12s ease;
}
.projects__arrow:hover:not(:disabled) { background: var(--mp-ochre); color: var(--mp-ink); border-color: var(--mp-ochre); box-shadow: 3px 3px 0 var(--mp-cream); transform: translate(-1px,-1px); }
.projects__arrow:disabled { opacity: .3; cursor: not-allowed; }

.projects__track-wrap {
  padding: 8px 0 72px;
  position: relative;
}
.projects__track {
  display: flex;
  gap: 28px;
  padding: 16px 48px 16px 48px;
  scroll-padding-left: 48px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
}
.projects__track::-webkit-scrollbar { display: none; }

.project {
  flex: 0 0 auto;
  width: min(440px, 78vw);
  scroll-snap-align: start;
  background: var(--mp-cream);
  border: 2px solid var(--mp-cream);
  border-radius: 4px;
  color: var(--mp-ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 8px 8px 0 var(--mp-ochre);
  transition: transform .2s cubic-bezier(.2,0,0,1), box-shadow .2s ease;
  position: relative;
}
.project:hover {
  transform: translate(-3px, -3px) rotate(-0.4deg);
  box-shadow: 11px 11px 0 var(--mp-ochre);
}
.project:nth-child(even) { box-shadow: 8px 8px 0 var(--mp-sage); }
.project:nth-child(even):hover { box-shadow: 11px 11px 0 var(--mp-sage); }

.project__poster {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--mp-ink);
}
.project__poster-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
}
.project__poster-title {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: .9;
  font-size: clamp(36px, 4vw, 60px);
  word-break: break-word;
}
.project__poster-script {
  font-family: var(--font-script);
  font-weight: 500;
  font-size: clamp(52px, 6vw, 84px);
  line-height: .9;
  letter-spacing: 0;
}

.project__num {
  position: absolute;
  top: 14px; left: 16px;
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  padding: 4px 10px;
  border: 2px solid var(--mp-ink);
  background: var(--mp-cream);
  color: var(--mp-ink);
  z-index: 2;
}
.project__craft {
  position: absolute;
  top: 14px; right: 16px;
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 2px solid var(--mp-ink);
  z-index: 2;
}

.project__body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 2px solid var(--mp-ink);
  background: var(--mp-cream);
}
.project__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--mp-ink);
}
.project__by {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--mp-ochre-700);
}
.project__note {
  font-size: 14px;
  line-height: 1.5;
  color: var(--mp-ink-500);
  margin: 8px 0 0;
}

/* Linked-project affordance */
a.project {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.project:focus-visible {
  outline: 3px solid var(--mp-ochre);
  outline-offset: 4px;
}
.project__title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  justify-content: space-between;
}
.project__title-arrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--mp-ochre);
  opacity: .55;
  flex: 0 0 auto;
  transition: opacity .2s ease, transform .25s cubic-bezier(.2,.8,.2,1), color .2s ease;
}
a.project:hover .project__title-arrow {
  opacity: 1;
  color: var(--mp-ink);
  transform: translate(3px, -3px);
}

/* Poster color variants */
.project--p-cream { }
.project--p-cream .project__poster-inner { background: var(--mp-cream-200); color: var(--mp-ink); }
.project--p-ochre .project__poster-inner { background: var(--mp-ochre); color: var(--mp-ink); }
.project--p-sage .project__poster-inner { background: var(--mp-sage); color: var(--mp-ink); }
.project--p-ink .project__poster-inner { background: var(--mp-ink); color: var(--mp-cream); }

.project__poster-inner.has-lines {
  background-image: repeating-linear-gradient(-45deg, transparent 0 14px, rgba(36,41,36,0.08) 14px 15px);
}
.project__poster-inner.has-lines.on-ink {
  background-image: repeating-linear-gradient(-45deg, transparent 0 14px, rgba(255,251,218,0.1) 14px 15px);
}

/* Photo poster */
.project__poster-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.02) contrast(1.02);
}
.project--has-photo .project__poster-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.18));
  pointer-events: none;
}

.project__poster-stamp {
  position: absolute;
  bottom: 14px; left: 16px;
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 10px;
  opacity: .7;
}

/* Progress rail under project scroll */
.projects__rail {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px 96px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.projects__rail-bar {
  flex: 1;
  height: 2px;
  background: rgba(255,251,218,.22);
  position: relative;
}
.projects__rail-fill {
  position: absolute;
  left: 0;
  top: -3px;
  height: 8px;
  background: var(--mp-ochre);
  transition: width .2s ease, left .2s ease;
}
.projects__rail-label {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  font-weight: 700;
  color: var(--mp-cream);
  opacity: .7;
}

/* ============ DONATE ============ */
.donate {
  background: var(--mp-cream);
  padding: 88px 48px 88px;
  border-bottom: 2px solid var(--mp-ink);
  position: relative;
  overflow: hidden;
}
.donate__inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.donate__eyebrow {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 700;
  font-size: 13px;
  color: var(--mp-ink-500);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.donate__eyebrow .bar { display:inline-block; width: 44px; height: 2px; background: var(--mp-ink); }

.donate__script {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(100px, 16vw, 240px);
  line-height: .9;
  color: var(--mp-ink);
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0 0 24px;
  display: inline-block;
  position: relative;
  padding: 0 .08em;
}
.donate__script::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 18%;
  bottom: 12%;
  background: var(--mp-sage-300);
  z-index: 0;
  transform: skewY(-1deg);
}
.donate__script-word,
.donate__script-dot {
  position: relative;
  z-index: 1;
}
.donate__script-dot {
  color: var(--mp-ink);
}

.donate__sub {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.02em;
  color: var(--mp-ink);
  margin: 0 auto 36px;
  max-width: 32ch;
  line-height: 1.2;
}
.donate__sub .hl-sage { background: var(--mp-sage-300); padding: 0 6px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }

.donate__amounts {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.donate__amt {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.02em;
  padding: 18px 26px;
  border: 2px solid var(--mp-ink);
  border-radius: 3px;
  background: var(--mp-cream);
  color: var(--mp-ink);
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--mp-ink);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
  min-width: 110px;
}
.donate__amt:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--mp-ink); }
.donate__amt.is-active { background: var(--mp-ink); color: var(--mp-cream); box-shadow: 4px 4px 0 var(--mp-ochre); }
.donate__amt.is-active:hover { box-shadow: 5px 5px 0 var(--mp-ochre); }

.donate__amt--q {
  border-style: dashed;
  border-color: var(--mp-ochre);
  color: var(--mp-ochre-700);
  box-shadow: 4px 4px 0 var(--mp-ochre);
  background: color-mix(in oklch, var(--mp-ochre) 10%, var(--mp-cream));
}
.donate__amt--q:hover { box-shadow: 5px 5px 0 var(--mp-ochre); }
.donate__amt--q.is-active {
  background: var(--mp-ink);
  color: var(--mp-cream);
  border-style: solid;
  border-color: var(--mp-ink);
  box-shadow: 4px 4px 0 var(--mp-ochre);
}

.donate__custom {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}
.donate__custom-dollar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--mp-ochre-700);
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  z-index: 1;
  transition: left .18s ease, right .18s ease, transform .18s ease, color .18s ease;
}
.donate__custom:hover .donate__custom-dollar {
  transform: translate(calc(-50% - 1px), calc(-50% - 1px));
}
.donate__custom:has(input:placeholder-shown) .donate__custom-dollar::after {
  content: "?";
  font-weight: 900;
  margin-left: 1px;
}
.donate__custom:has(input:not(:placeholder-shown)) .donate__custom-dollar {
  left: 22px;
  right: auto;
  transform: translateY(-50%);
  color: var(--mp-ink);
}
.donate__custom:hover:has(input:not(:placeholder-shown)) .donate__custom-dollar {
  transform: translate(-1px, calc(-50% - 1px));
}
.donate__custom:has(input:placeholder-shown) .donate__custom-dollar::after {
  content: "?";
  font-weight: 900;
  margin-left: 1px;
}
.donate__custom:has(input:not(:placeholder-shown)) .donate__custom-dollar {
  left: auto;
  right: calc(50% + .5ch);
  transform: translateY(-50%);
  color: var(--mp-ink);
}
.donate__custom input {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  padding: 18px 14px 18px 38px;
  border: 2px dashed var(--mp-ochre);
  border-radius: 3px;
  background: color-mix(in oklch, var(--mp-ochre) 14%, var(--mp-cream));
  color: var(--mp-ink);
  outline: none;
  width: 140px;
  box-shadow: 4px 4px 0 var(--mp-ochre);
  text-align: left;
  caret-color: var(--mp-ink);
  cursor: text;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease, border-style .14s ease;
}
.donate__custom input:placeholder-shown {
  padding-left: 14px;
  text-align: center;
}
.donate__custom input::placeholder { color: transparent; }
.donate__custom input:hover {
  transform: translate(-1px,-1px);
  box-shadow: 5px 5px 0 var(--mp-ochre);
  background: color-mix(in oklch, var(--mp-ochre) 22%, var(--mp-cream));
}
.donate__custom input:focus {
  border-style: solid;
  border-color: var(--mp-ink);
  background: var(--mp-cream);
  box-shadow: 4px 4px 0 var(--mp-ink);
}

.donate__cta-wrap {
  margin-top: 12px;
  display: inline-block;
}
.donate__cta {
  position: relative;
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 20px;
  padding: 28px 56px;
  background: var(--mp-ink);
  color: var(--mp-cream);
  text-decoration: none;
  border: 2px solid var(--mp-ink);
  border-radius: 3px;
  box-shadow: 8px 8px 0 var(--mp-ochre);
  cursor: pointer;
  transition: transform .22s cubic-bezier(.2,.8,.2,1),
              box-shadow .22s cubic-bezier(.2,.8,.2,1),
              background-color .22s ease;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  isolation: isolate;
  animation: ctaPulse 2.8s ease-in-out infinite;
}
.donate__cta,
.donate__cta:link,
.donate__cta:visited,
.donate__cta:hover,
.donate__cta:active {
  color: var(--mp-cream);
  text-decoration: none;
}
.donate__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 251, 218, .22) 45%, rgba(255, 251, 218, .22) 55%, transparent 100%);
  transform: translateX(-130%) skewX(-20deg);
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
  z-index: 0;
}
.donate__cta > * { position: relative; z-index: 1; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 8px 8px 0 var(--mp-ochre); }
  50%      { box-shadow: 8px 8px 0 var(--mp-ochre), 0 0 0 6px rgba(191, 143, 64, .22); }
}
.donate__cta:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0 var(--mp-ochre);
  background: #1a1d1a;
  animation: none;
}
.donate__cta:hover::before { transform: translateX(130%) skewX(-20deg); }
.donate__cta:hover .donate__cta-arrow {
  background: var(--mp-cream);
}
.donate__cta:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--mp-ochre);
  transition-duration: .06s;
}
.donate__cta-arrow {
  position: relative;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--mp-ochre);
  color: var(--mp-ink);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
  flex-shrink: 0;
  transition: background-color .2s ease, transform .25s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.donate__cta-arrow svg { display: block; }
.donate__cta-arrow-default,
.donate__cta-arrow-hover {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .18s ease, transform .25s cubic-bezier(.2,.8,.2,1);
}
.donate__cta-arrow-default { opacity: 1; transform: translateY(0) scale(1); }
.donate__cta-arrow-hover {
  opacity: 0;
  transform: translateY(8px) scale(.6);
  font-size: 20px;
  line-height: 1;
}
.donate__cta:hover .donate__cta-arrow-default {
  opacity: 0;
  transform: translateY(-8px) scale(.6);
}
.donate__cta:hover .donate__cta-arrow-hover {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: prayWiggle .7s ease-in-out .1s 1;
}
@keyframes prayWiggle {
  0%   { transform: translateY(0) scale(1) rotate(0deg); }
  25%  { transform: translateY(-1px) scale(1.08) rotate(-6deg); }
  55%  { transform: translateY(0) scale(1.05) rotate(5deg); }
  80%  { transform: translateY(0) scale(1.02) rotate(-2deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}

.donate__fine {
  margin-top: 48px;
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  font-weight: 600;
  color: var(--mp-ink-500);
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.donate__fine span { display: inline-flex; align-items: center; gap: 8px; }
.donate__fine .dot { width: 4px; height: 4px; border-radius: 999px; background: var(--mp-ink); }

.donate__rule {
  position: absolute;
  left: 48px; right: 48px;
  top: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 700;
  color: var(--mp-ink);
  opacity: .7;
}
.donate__rule::before, .donate__rule::after {
  content: ""; flex: 1; height: 2px; background: var(--mp-ink); opacity: .4;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--mp-ink);
  color: var(--mp-cream);
  padding: 88px 48px 36px;
}
.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.footer__brand {
  display: flex;
  align-items: center;
}
.footer__badge {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-self: end;
  align-items: flex-end;
  text-align: right;
}
.footer__nav a {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 3.4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--mp-cream);
  text-decoration: none;
  cursor: pointer;
  transition: color .15s ease, transform .2s cubic-bezier(.2,.8,.2,1);
  position: relative;
  padding-right: 2px;
}
.footer__nav a:hover {
  color: var(--mp-ochre);
  transform: translateX(-4px);
}

.footer__bottom {
  max-width: 1240px;
  margin: 64px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,251,218,.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  font-weight: 700;
  color: var(--mp-cream);
  opacity: .7;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============ TWEAKS panel ============ */
.tweaks {
  position: fixed;
  top: 80px; right: 24px;
  z-index: 60;
  width: 280px;
  background: var(--mp-cream);
  border: 2px solid var(--mp-ink);
  border-radius: 6px;
  box-shadow: 6px 6px 0 var(--mp-ink);
  padding: 18px;
  font-family: var(--font-body);
}
.tweaks__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.tweaks__sub {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 700;
  color: var(--mp-ochre);
  margin-bottom: 14px;
}
.tweaks__group { margin-bottom: 16px; }
.tweaks__group-head {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: 11px;
  color: var(--mp-ink-500);
  margin-bottom: 8px;
}
.tweaks__row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tweaks__chip {
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  padding: 6px 10px;
  border: 2px solid var(--mp-ink);
  border-radius: 3px;
  background: var(--mp-cream);
  color: var(--mp-ink);
  cursor: pointer;
}
.tweaks__chip.is-active {
  background: var(--mp-ink);
  color: var(--mp-cream);
  box-shadow: 2px 2px 0 var(--mp-ochre);
}

/* Optical centering for letter-spaced eyebrow labels — letter-spacing
   trails after the last letter, biasing the visual block leftward.
   An asymmetric padding shifts the inner content right by ~4px while
   keeping the parent's centering math happy (also avoids clashing with
   the fx-reveal transforms). */
.mission__label,
.projects__eyebrow,
.donate__eyebrow { padding-left: 8px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .mission__inner { gap: 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; justify-items: center; text-align: center; }
  .footer__nav { justify-self: center; align-items: center; text-align: center; }
  .nav__links { display: none; }
}
@media (max-width: 600px) {
  .nav { padding: 12px 18px; }
  .nav__brand-img { height: 36px; }
  .nav__donate { padding: 9px 14px 9px 16px; font-size: 11px; letter-spacing: .14em; }

  .hero--centered { padding: 110px 20px 72px; min-height: auto; }
  .hero__center { gap: 0; }
  .hero__mark-centered { width: clamp(160px, 48vw, 220px); margin: 0 auto 24px; }
  .hero__title--centered { font-size: clamp(40px, 11vw, 56px); margin-bottom: 20px; line-height: 1.05; }
  .hero__lede--centered { font-size: 17px; margin-bottom: 28px; }
  .hero__ctas--centered { gap: 12px; margin-bottom: 28px; width: 100%; flex-direction: column; align-items: stretch; }
  .hero__ctas--centered .btn { justify-content: center; width: 100%; }
  .btn--xl { font-size: 16px; padding: 18px 24px; letter-spacing: .16em; }
  .hero__stamp-row { gap: 12px; font-size: 10px; letter-spacing: .16em; }
  .hero__stamp-row .sq { padding: 3px 7px; }

  .marquee { padding: 14px 0; }
  .marquee__item { font-size: 22px; gap: 36px; }
  .marquee__track { gap: 36px; }
  .marquee__item .dot { width: 8px; height: 8px; }

  .hero { padding: 110px 24px 48px; }
  .hero__stamp-top { left: 24px; top: 100px; }
  .mission { padding: 72px 20px; }
  .mission__heading { font-size: clamp(32px, 9vw, 44px); }
  .mission__body { font-size: 17px; }
  .mission__copy { text-align: left; }

  .projects__head { padding: 72px 20px 16px; gap: 18px; }
  .projects__title { font-size: clamp(34px, 9vw, 48px); }
  .projects__sub { font-size: 16px; }
  .projects__controls { gap: 8px; }
  .projects__pager { margin-right: 8px; font-size: 11px; }
  .projects__arrow { width: 44px; height: 44px; font-size: 18px; }
  .projects__track { padding: 16px 20px 16px 20px; scroll-padding-left: 20px; gap: 20px; }
  .projects__track-wrap { padding: 8px 0 56px; }
  .project { width: min(320px, 84vw); box-shadow: 6px 6px 0 var(--mp-ochre); }
  .project:hover { transform: none; box-shadow: 6px 6px 0 var(--mp-ochre); }
  .project:nth-child(even) { box-shadow: 6px 6px 0 var(--mp-sage); }
  .project:nth-child(even):hover { box-shadow: 6px 6px 0 var(--mp-sage); }
  .project__body { padding: 18px 18px 22px; }
  .project__title { font-size: 22px; }
  .project__poster-script { font-size: clamp(44px, 14vw, 64px); }
  .project__poster-title { font-size: clamp(30px, 9vw, 44px); }

  .donate { padding: 72px 20px 72px; }
  .donate__rule { left: 20px; right: 20px; }
  .donate__script { font-size: clamp(72px, 22vw, 120px); margin: 0 0 18px; }
  .donate__sub { font-size: 19px; margin-bottom: 24px; max-width: 24ch; }
  .donate__amounts { gap: 8px; margin-bottom: 18px; }
  .donate__amt { font-size: 18px; padding: 12px 14px; min-width: 0; flex: 1 1 calc(33% - 8px); box-shadow: 3px 3px 0 var(--mp-ink); }
  .donate__amt--q { box-shadow: 3px 3px 0 var(--mp-ochre); flex: 1 1 calc(33% - 8px); }
  .donate__custom { min-width: 0; flex: 1 1 calc(33% - 8px); }
  .donate__custom input { width: 100%; font-size: 18px; padding: 12px 10px 12px 28px; box-shadow: 3px 3px 0 var(--mp-ochre); }
  .donate__custom-dollar { font-size: 18px; }
  .donate__cta { font-size: 15px; padding: 20px 28px; letter-spacing: .18em; gap: 12px; box-shadow: 5px 5px 0 var(--mp-ochre); }
  .donate__cta:hover { box-shadow: 8px 8px 0 var(--mp-ochre); transform: translate(-2px, -2px); }
  .donate__cta-arrow { width: 28px; height: 28px; }
  .donate__fine { margin-top: 32px; gap: 12px; font-size: 10px; }

  .footer { padding: 72px 20px 28px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__badge { max-width: min(360px, 86vw); }
  .footer__nav { gap: 12px; }
  .footer__nav a { font-size: clamp(26px, 8vw, 36px); }
  .footer__bottom { margin-top: 40px; font-size: 10px; letter-spacing: .16em; }

  .mission__facts { grid-template-columns: 1fr; }
  .float-donate { bottom: 16px; right: 16px; padding: 12px 16px; font-size: 12px; }
  .tweaks { width: calc(100vw - 32px); right: 16px; top: 64px; }
}
@media (max-width: 400px) {
  .donate__script { font-size: 64px; }
  .donate__amt, .donate__amt--q, .donate__custom { flex: 1 1 calc(50% - 8px); }
  .nav__donate { padding: 8px 12px; font-size: 10px; }
  .hero__title--centered { font-size: 38px; }
}
