/* Life After Life · Premium mobile-first foundation site */

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --text: #3a3836;
  --text-light: rgba(255, 255, 255, 0.78);
  --muted: #6b6560;
  --line: rgba(10, 10, 10, 0.08);
  --cream: #f7f5f1;
  --white: #ffffff;
  --wine: #4a1018;
  --gold: #b8942e;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrap: min(1120px, calc(100% - 2rem));
  --head: 60px;
  --float: 56px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--float) + env(safe-area-inset-bottom, 0px) + 1rem);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
strong { color: var(--black); font-weight: 600; }

.wrap { width: var(--wrap); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--wine); color: var(--white); padding: 0.75rem 1rem;
}
.skip:focus { left: 0; }

/* ── Header ── */
.site-head {
  position: fixed; inset: 0 0 auto; z-index: 300;
  height: calc(var(--head) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.head-row {
  height: var(--head);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--black);
  min-width: 0;
}
.brand-mark {
  flex-shrink: 0;
  display: flex;
  line-height: 0;
}
.brand-mark svg {
  display: block;
  width: 36px;
  height: 36px;
}
.brand-mark-lg svg {
  width: 48px;
  height: 48px;
}
.brand-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
@media (max-width: 360px) {
  .brand-text {
    font-size: 0.95rem;
  }
}

.menu-btn {
  width: 48px; height: 48px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 7px; background: none; border: 0; cursor: pointer; padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 330;
  -webkit-tap-highlight-color: transparent;
}
.menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.menu-btn[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 310;
  background: rgba(10, 10, 10, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.nav-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.site-nav {
  position: fixed;
  inset: calc(var(--head) + env(safe-area-inset-top, 0px)) 0 0 0;
  z-index: 320;
  background: var(--white);
  padding: 0.5rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
  display: flex; flex-direction: column; gap: 0;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
}
.site-nav.open { transform: translateX(0); }
.site-nav a {
  display: flex;
  align-items: center;
  min-height: 3.25rem;
  padding: 0.75rem 0.25rem;
  font-size: 1.125rem; font-weight: 500;
  text-decoration: none; color: var(--black);
  border-bottom: 1px solid var(--line);
  -webkit-tap-highlight-color: transparent;
}
.site-nav a:active { opacity: 0.65; }
.site-nav .nav-cta {
  margin-top: 1rem;
  min-height: 3.25rem;
  justify-content: center;
  text-align: center;
  background: var(--black);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

body.menu-open {
  overflow: hidden;
}
body.menu-open .float-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity 0.2s, transform 0.25s var(--ease);
}

/* Floating give button — single mobile CTA */
.float-cta {
  position: fixed;
  z-index: 250;
  left: 1rem;
  right: 1rem;
  bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  display: flex; align-items: center; justify-content: center;
  min-height: var(--float);
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

/* ── Type ── */
.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.eyebrow.dark { color: var(--gold); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.02em;
}
h1 { margin: 0 0 1.25rem; font-size: clamp(2.75rem, 12vw, 4.25rem); }
h2 { margin: 0 0 1rem; font-size: clamp(2rem, 7vw, 3rem); }
h3 { margin: 0 0 0.5rem; font-size: 1.5rem; }

.lede, .sub { margin: 0; max-width: 34rem; }
.sub { color: var(--muted); margin-top: 0.75rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 1.5rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.9375rem; font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn:active { opacity: 0.85; }
.btn-light { background: var(--white); color: var(--black); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-full { width: 100%; }

/* ── Hero ── */
.hero {
  position: relative;
  height: min(92svh, 820px);
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--head) + env(safe-area-inset-top, 0px));
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  margin: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 5, 6, 0.88) 0%,
    rgba(10, 5, 6, 0.45) 32%,
    rgba(10, 5, 6, 0.12) 55%,
    transparent 72%
  );
}
.hero-caption {
  position: relative; z-index: 1;
  width: 100%;
  padding: 0 1rem 1.75rem;
  padding-inline: max(1rem, env(safe-area-inset-left, 0px)) max(1rem, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}
.hero-caption h1 {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-size: clamp(2.5rem, 10vw, 3.75rem);
  line-height: 1.15;
  max-width: 14ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero-tagline {
  margin: 0;
  max-width: 26rem;
  font-size: clamp(0.9375rem, 3.5vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}
.hero-caption .eyebrow {
  margin-bottom: 0.65rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero-band {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0 2.25rem;
}
.hero-band-inner p {
  margin: 0 0 1.15rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 36rem;
}
.hero-band-inner p:last-of-type {
  margin-bottom: 1.5rem;
}
.hero-actions { display: flex; flex-direction: column; gap: 0.75rem; }

/* ── Vision / prose ── */
.vision {
  padding: 4rem 0;
  border-bottom: 1px solid var(--line);
}
.prose { max-width: 38rem; }
.prose p { margin: 0 0 1.35rem; font-size: 1.125rem; line-height: 1.8; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { margin-bottom: 1.25rem; }
.prose em { font-style: italic; color: var(--black); }
.prose-close {
  margin-top: 1.75rem !important;
  font-size: 1.0625rem !important;
  color: var(--black);
}

.grant-call { padding-top: 4.5rem; padding-bottom: 4.5rem; }
.grant-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.impact-pillars { display: grid; gap: 2rem; margin-bottom: 2.5rem; }
.pillar {
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--line);
}
.pillar:last-child { border-bottom: 0; padding-bottom: 0; }
.pillar h3 { margin: 0 0 0.75rem; font-size: 1.5rem; }
.pillar p { margin: 0 0 1rem; line-height: 1.75; color: var(--text); }
.pillar p:last-child { margin-bottom: 0; }
.impact-close { max-width: 38rem; }
.impact-close p { margin: 0; }

.grant-list {
  margin: 0 0 1.35rem;
  padding: 0 0 0 1.25rem;
  display: grid;
  gap: 0.65rem;
}
.grant-list li {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
}

.feature-body p { margin: 0 0 1rem; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.feature-body p:last-child { margin-bottom: 0; }
.feature-body strong { color: var(--black); }

.give-tagline {
  margin: 1rem 0 0 !important;
  font-family: var(--serif);
  font-size: 1.25rem !important;
  font-style: italic;
  line-height: 1.5 !important;
  color: rgba(255,255,255,0.88) !important;
}
.give-note {
  margin: 0.75rem 0 0 !important;
  font-size: 0.8125rem !important;
  color: rgba(255,255,255,0.4) !important;
  line-height: 1.5 !important;
}
.give-cashtag { color: var(--gold); font-weight: 600; }

.give-cash-hero {
  margin: 1.5rem 0;
  padding: 1.5rem;
  border: 2px solid #00D632;
  border-radius: 8px;
  background: linear-gradient(165deg, rgba(0, 214, 50, 0.12) 0%, rgba(255, 255, 255, 0.03) 55%);
  box-shadow: 0 12px 40px rgba(0, 214, 50, 0.08);
}
.give-cash-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.give-pay-icon {
  flex-shrink: 0;
  display: block;
}
.give-pay-icon-lg {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}
.give-cash-eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.give-cashtag-big {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: #00D632;
  letter-spacing: -0.02em;
}
.give-cash-lead {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}
.give-cash-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}
.give-cash-amt {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 6px;
  background: #00D632;
  color: #0a0a0a;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s var(--ease), box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(0, 214, 50, 0.25);
}
.give-cash-amt:active {
  transform: scale(0.98);
}
.give-cash-any {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 54px;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-wrap: balance;
  text-decoration: none;
}
.give-cash-any:active {
  background: rgba(255, 255, 255, 0.12);
}

.give-alt {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}
.give-alt summary {
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.45);
  list-style: none;
}
.give-alt summary::-webkit-details-marker { display: none; }
.give-alt summary::after {
  content: " +";
  color: rgba(255, 255, 255, 0.3);
}
.give-alt[open] summary::after { content: " −"; }
.give-alt-method {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}
.give-alt-method-zelle {
  margin-top: 0.75rem;
}
.give-alt-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.give-alt-label {
  margin: 0 0 0.15rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.give-alt-handle {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #009cde;
}
.give-alt-lead {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}
.give-paypal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.give-paypal-amt {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  background: #0070ba;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}
.give-paypal-amt:active { opacity: 0.9; }
.give-paypal-any {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 156, 222, 0.35);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}
.give-paypal-any:active { background: rgba(0, 112, 186, 0.15); }
.give-alt-body {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}
.give-alt-body a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}
.give-alt-hint {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.4);
}

.give-btn-icon {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  flex-shrink: 0;
}

.foot-brand a { color: var(--gold); text-decoration: none; }

/* ── Metrics ── */
.metrics {
  background: var(--black);
  color: var(--white);
  padding: 2.5rem 0;
}
.metrics-row {
  display: grid;
  gap: 2rem;
  text-align: center;
}
.metric-val {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 8vw, 3rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.metric-label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
  max-width: 16rem;
  margin-inline: auto;
}

/* ── Quote ── */
.quote-block {
  padding: 4rem 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.quote-block blockquote { margin: 0; text-align: center; max-width: 36rem; margin-inline: auto; }
.quote-block p {
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 5vw, 2.125rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--black);
}
.quote-block cite {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Sections ── */
.section { padding: 4.5rem 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--black-soft); padding-bottom: 3rem; }

.section-head { margin-bottom: 2.5rem; max-width: 32rem; }
.section-head.light h2 { color: var(--white); }
.section-head.light .sub { color: rgba(255, 255, 255, 0.55); margin-top: 0.5rem; }

.editorial { display: grid; gap: 2.5rem; }
.editorial-copy p { margin: 0 0 1.25rem; }
.editorial-photo { margin: 0; }
.editorial-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.feature {
  margin-bottom: 3rem;
}
.feature:last-child { margin-bottom: 0; }
.feature img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: 1.25rem;
}
.feature-body p { margin: 0; color: var(--muted); font-size: 1rem; }

/* Pralines */
.pralines-block { display: grid; gap: 2.5rem; }
.pralines-visual { margin: 0; }
.pralines-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.pralines-text p { margin: 0 0 1.5rem; }
.pralines-actions { display: flex; flex-direction: column; gap: 0.75rem; }

/* Film gallery — horizontal scroll on mobile (premium) */
.film {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 1rem 1rem;
  scrollbar-width: none;
}
.film::-webkit-scrollbar { display: none; }
.film figure {
  flex: 0 0 min(82vw, 340px);
  margin: 0;
  scroll-snap-align: center;
  position: relative;
}
.film img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.film figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2rem 1rem 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

/* Voices */
.voices { display: grid; gap: 1.25rem; }
.voices blockquote {
  margin: 0;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.voices blockquote:first-child { border-top: 0; padding-top: 0; }
.voices p {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.375rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--black);
}
.voices cite {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Forms */
.split { display: grid; gap: 2.5rem; }
.form { display: grid; gap: 1.25rem; }
.form label {
  display: grid; gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 0.875rem 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font: inherit;
  font-size: 1.0625rem;
  color: var(--black);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-bottom-color: var(--black);
}
.check {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.625rem;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.9375rem !important;
  font-weight: 400 !important;
  color: var(--text) !important;
}
.check input { width: auto; accent-color: var(--black); }
.hp { display: none !important; }

.form-dark label { color: rgba(255,255,255,0.45); }
.form-dark input, .form-dark select, .form-dark textarea {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.2);
}
.form-dark input:focus, .form-dark select:focus, .form-dark textarea:focus {
  border-bottom-color: rgba(255,255,255,0.6);
}

/* Give */
.give {
  padding: 4.5rem 0 calc(5rem + var(--float) + env(safe-area-inset-bottom, 0px));
  background: var(--black);
  color: var(--text-light);
}
.give h2 { color: var(--white); }
.give-intro p { margin: 0 0 1.5rem; }
.give-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
.give-link {
  display: flex; align-items: center; justify-content: center;
  min-height: 52px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
}
.give-link-accent {
  grid-column: 1 / -1;
  border-color: rgba(184, 148, 46, 0.4);
  color: var(--gold);
}

.fine {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
}
.fine a { color: var(--gold); text-decoration: none; }

/* Footer */
.site-foot {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 3rem 0 calc(2rem + var(--float) + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255,255,255,0.08);
}
.foot-row { display: grid; gap: 2rem; margin-bottom: 2rem; }
.foot-lockup {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
  color: inherit;
}
.foot-lockup-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.foot-lockup-text strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}
.foot-lockup-text small {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.foot-brand p { margin: 0; font-size: 0.875rem; line-height: 1.6; }
.foot-links { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.foot-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}
.foot-legal p { margin: 0; font-size: 0.75rem; opacity: 0.4; }

.toast {
  position: fixed;
  bottom: calc(var(--float) + 1.25rem + env(safe-area-inset-bottom, 0px));
  left: 50%; transform: translateX(-50%);
  max-width: calc(100% - 2rem);
  background: var(--black); color: var(--white);
  padding: 0.875rem 1.25rem; border-radius: 999px;
  font-size: 0.875rem; font-weight: 600; z-index: 400;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  text-align: center;
}

/* ── Tablet ── */
@media (min-width: 768px) {
  body { padding-bottom: 0; }

  .float-cta { display: none; }

  .menu-btn { display: none; }
  .site-nav {
    position: static; transform: none;
    flex-direction: row; align-items: center;
    gap: 1.75rem; padding: 0;
    overflow: visible;
  }
  .site-nav a {
    font-size: 0.8125rem; font-weight: 500;
    padding: 0; border: 0;
    color: var(--text);
  }
  .site-nav .nav-cta {
    margin: 0;
    padding: 0.625rem 1.125rem;
    font-size: 0.8125rem;
  }

  .hero { height: min(88vh, 900px); }
  .hero-caption { padding-bottom: 2.5rem; }
  .hero-caption h1 { max-width: none; font-size: clamp(3rem, 6vw, 4.5rem); }
  .hero-tagline { max-width: 32rem; font-size: 1.125rem; }
  .hero-band { padding: 2.5rem 0 3rem; }
  .hero-band-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
  }
  .hero-band-inner p { margin: 0; }
  .hero-actions { flex-direction: row; flex-shrink: 0; }
  .metrics-row { grid-template-columns: repeat(3, 1fr); gap: 2rem; }

  .editorial { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .editorial-photo { order: 2; }

  .feature {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
  }
  .feature:nth-child(even) img { order: 2; }
  .feature img { margin-bottom: 0; aspect-ratio: 4/3; }

  .pralines-block { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .pralines-actions { flex-direction: row; flex-wrap: wrap; }

  .film {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    overflow: visible;
    padding: 0;
  }
  .film figure { flex: unset; scroll-snap-align: unset; }

  .split { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .give { padding-bottom: 5rem; }
  .give-cash-grid { grid-template-columns: repeat(4, 1fr); }
  .give-paypal-grid { grid-template-columns: repeat(4, 1fr); }
  .site-foot { padding-bottom: 2.5rem; }
  .foot-row { grid-template-columns: 1.2fr 1fr; align-items: start; }

  .impact-pillars { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .pillar { padding: 0; border-bottom: 0; border-left: 1px solid var(--line); padding-left: 1.5rem; }
  .pillar:first-child { border-left: 0; padding-left: 0; }

  .grant-actions { flex-direction: row; flex-wrap: wrap; }

  .section { padding: 6rem 0; }
  .quote-block { padding: 6rem 0; }
}

/* ── Desktop ── */
@media (min-width: 1024px) {
  :root { --wrap: min(1120px, calc(100% - 4rem)); --head: 68px; }
  .brand-mark svg { width: 40px; height: 40px; }
  .brand-text { font-size: 1.25rem; }
  .hero-caption h1 { font-size: clamp(3.25rem, 5vw, 4.75rem); }
  .film { grid-template-columns: repeat(4, 1fr); }
}

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