/* ==========================================================================
   Save a Plate Foundation
   Brand tokens mirror the main site (saveaplate.ae) so the two read as one.
   ========================================================================== */

:root {
  /* Brand palette — lifted from the main Save a Plate theme */
  --forest: #1f4a33;
  --forest-light: #2c6043;
  --pine: #102a1d;
  --lime: #9fe24a;
  --cream: #f7f5ee;
  --ink: #1c1e1a;
  --amber: #e8913a;
  --amber-deep: #b5651b;

  /* Derived surfaces */
  --bg: var(--cream);
  --surface: #ffffff;
  --tint: #f0efe5;
  --line: rgba(31, 74, 51, 0.14);
  --line-soft: rgba(31, 74, 51, 0.08);
  --muted: #5f6b62;
  --muted-dark: rgba(247, 245, 238, 0.72);

  /* Type */
  --font-display: "Bricolage Grotesque", "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "Space Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Radii — matched to the app's token scale */
  --r-control: 0.75rem;
  --r-card: 1.25rem;
  --r-feature: 1.75rem;

  /* Rhythm */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.75rem, 7vw, 5.75rem);

  --shadow-sm: 0 1px 2px rgba(16, 42, 29, 0.06);
  --shadow-md: 0 4px 20px -6px rgba(16, 42, 29, 0.14);
  --shadow-lg: 0 24px 60px -24px rgba(16, 42, 29, 0.32);

  color-scheme: light;
}

/* --------------------------------------------------------------- reset -- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--forest); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--forest-light); }

ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 200;
  background: var(--pine);
  color: var(--cream);
  padding: 0.7rem 1.1rem;
  border-radius: var(--r-control);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0.75rem; color: var(--cream); }

/* -------------------------------------------------------------- layout -- */

.wrap {
  width: 100%;
  max-width: 78rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow { max-width: 52rem; }

.section { padding-block: var(--section-y); }
.section-tint { background: var(--tint); }

.section-dark {
  background: var(--pine);
  color: var(--cream);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark a { color: var(--lime); }

.section-head { max-width: 52rem; margin-bottom: clamp(2rem, 3.5vw, 2.75rem); }
.section-head-center { margin-inline: auto; text-align: center; }

.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }

.section-sub {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 42rem;
}
.section-head-center .section-sub { margin-inline: auto; }

.kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 1rem;
}
.section-dark .kicker { color: var(--lime); }

/* ------------------------------------------------------------- buttons -- */

.btn {
  --btn-bg: var(--forest);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-control);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }

.btn-solid { --btn-bg: var(--forest); --btn-fg: var(--cream); }
.btn-solid:hover { --btn-bg: var(--forest-light); }

.btn-lime { --btn-bg: var(--lime); --btn-fg: var(--pine); }
.btn-lime:hover { --btn-bg: #b0ec63; }

.btn-outline {
  --btn-bg: transparent;
  --btn-fg: var(--forest);
  border-color: var(--line);
}
.btn-outline:hover { --btn-bg: rgba(31, 74, 51, 0.06); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--forest);
  padding-inline: 0.5rem;
}
.btn-ghost:hover { box-shadow: none; --btn-fg: var(--forest-light); }

.btn-sm { padding: 0.6rem 1.05rem; font-size: 0.875rem; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.0625rem; }

/* -------------------------------------------------------------- header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 238, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line-soft);
  box-shadow: var(--shadow-sm);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-mark { border-radius: 10px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
}

.site-nav { display: flex; align-items: center; gap: 1.75rem; }

.nav-list { display: flex; align-items: center; gap: 1.5rem; }
.nav-list a {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding-block: 0.25rem;
}
.nav-list a:hover { color: var(--ink); }
.nav-list a.is-active { color: var(--forest); font-weight: 600; }
.nav-list a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 2px;
  background: var(--lime);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-control);
  cursor: pointer;
}
.nav-toggle-bars { display: grid; gap: 4px; }
.nav-toggle-bars span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 7vw, 5.5rem);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -18rem;
  left: 50%;
  translate: -50% 0;
  width: min(52rem, 130vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 226, 74, 0.34), transparent 62%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 56rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.75rem;
  padding: 0.45rem 0.95rem 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(159, 226, 74, 0.28);
}

.hero-title {
  font-size: clamp(2.25rem, 7.6vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-style: normal;
  color: var(--forest);
  position: relative;
  isolation: isolate; /* keep the highlight behind the word, not the section */
  white-space: nowrap;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  bottom: 0.06em;
  height: 0.3em;
  background: var(--lime);
  opacity: 0.55;
  border-radius: 3px;
  z-index: -1;
}

.hero-lead {
  font-size: clamp(1.0625rem, 1.9vw, 1.3125rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: 2.25rem;
}
.hero-lead strong { color: var(--ink); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.9375rem;
  color: var(--muted);
}
.fact-key {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.15rem;
}

/* ------------------------------------------------------------- mission -- */

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.mission-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
}
.mission-lead em { color: var(--ink); font-style: italic; }

.mission-cards { display: grid; gap: 1rem; }

.mini-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0 1rem;
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mini-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.mini-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  background: rgba(159, 226, 74, 0.22);
  color: var(--forest);
  font-size: 1.1rem;
}
.mini-card h3 { font-size: 1.0625rem; margin-bottom: 0.3rem; }
.mini-card p { font-size: 0.9375rem; color: var(--muted); line-height: 1.55; }

/* -------------------------------------------------------------- pledge -- */

.pledge-feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.25rem);
  background: rgba(247, 245, 238, 0.06);
  border: 1px solid rgba(159, 226, 74, 0.22);
  border-radius: var(--r-feature);
  margin-bottom: clamp(2.5rem, 4.5vw, 3.5rem);
}

.pledge-mark {
  display: flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.82;
  color: var(--lime);
  letter-spacing: -0.05em;
}
.pledge-num { font-size: clamp(6rem, 15vw, 11rem); }
.pledge-pct { font-size: clamp(2.5rem, 6vw, 4.5rem); }

.pledge-statement {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.pledge-copy p:not(.pledge-statement) { color: var(--muted-dark); }
.pledge-copy strong { color: var(--lime); font-weight: 600; }

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: flow;
}

.flow-step {
  position: relative;
  padding-top: 2rem;
  border-top: 2px solid rgba(159, 226, 74, 0.3);
}
.flow-step::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}
.flow-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--lime);
  margin-bottom: 0.6rem;
}
.flow-step h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.flow-step p { font-size: 0.9375rem; color: var(--muted-dark); line-height: 1.55; }

/* -------------------------------------------------------------- causes -- */

.cause-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.cause-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-feature);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cause-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(31, 74, 51, 0.18);
}

.cause-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 0.55rem;
}
.cause-card h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
.cause-card p { color: var(--muted); font-size: 1rem; line-height: 1.6; }

.note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--r-control) var(--r-control) 0;
  background: rgba(232, 145, 58, 0.09);
  font-size: 0.9375rem;
  color: var(--muted);
}
.note strong { color: var(--ink); }

/* -------------------------------------------------------- transparency -- */

.transparency-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.report-card {
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-feature);
  box-shadow: var(--shadow-md);
}

.report-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-deep);
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 145, 58, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(232, 145, 58, 0); }
}

.report-card h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
.report-card p { color: var(--muted); }
.report-promise { margin-bottom: 0.85rem; color: var(--ink); font-weight: 600; }

.check-list { display: grid; gap: 0.6rem; margin-bottom: 1.75rem; }
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  color: var(--muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 1rem;
  height: 0.5rem;
  border-left: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  rotate: -45deg;
}

.principles-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.principle-list { display: grid; gap: 1.5rem; }
.principle dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
}
.principle dd {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}

/* --------------------------------------------------------------- apply -- */

.apply-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.apply-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-feature);
  box-shadow: var(--shadow-sm);
}
.apply-card-alt { background: var(--tint); box-shadow: none; }

.apply-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--forest);
  margin-bottom: 0.9rem;
}
.apply-card h3 { font-size: clamp(1.25rem, 2.3vw, 1.5rem); margin-bottom: 0.9rem; }
.apply-card > p { color: var(--muted); }

.req-list {
  display: grid;
  gap: 0.5rem;
  margin: 0.5rem 0 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}
.req-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted);
}
.req-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.apply-card .btn { margin-top: auto; align-self: flex-start; }

/* ----------------------------------------------------------------- faq -- */

.faq { display: grid; gap: 0.75rem; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  rotate: 45deg;
  translate: 0 -2px;
  transition: rotate 0.2s ease;
}
.faq-item[open] summary::after { rotate: -135deg; translate: 0 2px; }
.faq-item summary:hover { background: rgba(31, 74, 51, 0.03); }

.faq-body {
  padding: 0 1.5rem 1.35rem;
  font-size: 0.9875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ----------------------------------------------------------------- cta -- */

.cta {
  background: var(--forest);
  color: var(--cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  text-align: center;
}
.cta-inner { max-width: 44rem; }
.cta-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--cream);
  margin-bottom: 1rem;
}
.cta-sub {
  font-size: 1.125rem;
  color: var(--muted-dark);
  margin-bottom: 2rem;
}
.cta-fine {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(247, 245, 238, 0.6);
}

/* -------------------------------------------------------------- footer -- */

.site-footer {
  background: var(--pine);
  color: var(--muted-dark);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  font-size: 0.9375rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
}

.footer-brand { display: flex; align-items: flex-start; gap: 0.85rem; }
.footer-brand img { border-radius: 9px; }
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 0.2rem;
  letter-spacing: -0.015em;
}
.footer-tag { margin: 0; font-size: 0.875rem; max-width: 18rem; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
.footer-head {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 1rem;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a {
  color: var(--muted-dark);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.footer-col a:hover { color: var(--cream); text-decoration: underline; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(247, 245, 238, 0.1);
  font-size: 0.8125rem;
  color: rgba(247, 245, 238, 0.55);
}
.footer-bottom p { margin: 0; }

/* ------------------------------------------------------------ reveal fx -- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ----------------------------------------------------------- responsive -- */

@media (max-width: 60rem) {
  .mission-grid,
  .transparency-grid { grid-template-columns: minmax(0, 1fr); }
  .flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pledge-feature { grid-template-columns: minmax(0, 1fr); text-align: left; }
  .pledge-mark { justify-content: flex-start; }
  .footer-inner { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 48rem) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem var(--gutter) 1.5rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .site-nav.is-open { display: flex; }

  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a {
    display: block;
    padding: 0.85rem 0.25rem;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-list a.is-active::after { display: none; }

  .nav-cta { margin-top: 1rem; }

  .cause-grid,
  .apply-grid,
  .footer-nav { grid-template-columns: minmax(0, 1fr); }

  .hero-facts { flex-direction: column; gap: 1rem; }
}

@media (max-width: 34rem) {
  .flow { grid-template-columns: minmax(0, 1fr); }
  .btn { width: 100%; }
  .hero-actions .btn,
  .apply-card .btn,
  .report-card .btn { width: 100%; }
}

/* --------------------------------------------------------------- print -- */

@media print {
  .site-header, .nav-toggle, .cta, .hero-glow { display: none; }
  body { background: #fff; }
  .section-dark, .cta { background: #fff; color: #000; }
}

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