/* Branches of Life Outreach — Grove Paper */
:root {
  --bg: #f6f2ea;
  --surface: #fffcf7;
  --raised: #ebe4d6;
  --ink: #1a2420;
  --muted: #5c6b62;
  --hairline: #d4cbb8;
  --action: #1b3a2d;
  --action-bright: #2d5a45;
  --gold: #b8860b;
  --white: #fffefb;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --wrap: min(1120px, calc(100% - 2rem));
  --radius: 12px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 1px 2px rgba(26, 36, 32, 0.04), 0 10px 28px rgba(26, 36, 32, 0.06);
  --focus: 0 0 0 2px var(--bg), 0 0 0 4px var(--action);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@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 !important; transform: none !important; }
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--action-bright); text-underline-offset: 3px; }
a:hover { color: var(--action); }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--font-display); text-wrap: balance; line-height: 1.15; color: var(--ink); }
.tabular { font-variant-numeric: tabular-nums; }
*:focus-visible { outline: none; box-shadow: var(--focus); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--action); color: var(--white); padding: 0.75rem 1rem; font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.wrap { width: var(--wrap); margin-inline: auto; }
.mono {
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--action-bright); font-weight: 600;
}
.eyebrow {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--action-bright);
  margin: 0 0 0.85rem; display: flex; align-items: center; gap: 0.45rem;
}
.leaf { color: var(--gold); font-size: 0.65rem; }
.gold-rule {
  width: min(120px, 40%); height: 2px; margin: 0 auto 2rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.75;
}
.section-lede { color: var(--muted); max-width: 48ch; margin: 0 auto; font-size: 1.05rem; }
.section-head { text-align: center; margin-bottom: 0.5rem; }
.section-head h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.55rem); font-weight: 600; margin-bottom: 0.75rem;
}
.section { padding: 4.5rem 0; }
.section--raised { background: var(--raised); border-block: 1px solid var(--hairline); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.7rem 1.25rem; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none; border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:hover { transform: translateY(-1px); color: inherit; }
.btn-solid {
  background: var(--action); color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(27, 58, 45, 0.22);
}
.btn-solid:hover { background: var(--action-bright); color: var(--white) !important; }
.btn-ghost {
  background: transparent; color: var(--ink) !important; border-color: var(--hairline);
}
.btn-ghost:hover { border-color: var(--action); color: var(--action) !important; }
.btn-lg { min-height: 54px; padding-inline: 1.5rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 242, 234, 0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--hairline);
  box-shadow: 0 8px 24px rgba(26, 36, 32, 0.06);
}
.header-inner {
  display: flex; align-items: center; gap: 1rem; min-height: var(--header-h);
}
.brand {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--ink); margin-right: auto;
}
.brand-mark { width: 42px; height: 42px; object-fit: contain; }
.brand-text {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
}
.brand-text em { font-style: normal; color: var(--muted); font-weight: 500; font-size: 0.9em; }
.nav-links { display: none; align-items: center; gap: 1.25rem; }
.nav-links a:not(.btn) {
  color: var(--muted); text-decoration: none; font-weight: 600; font-size: 0.92rem;
  min-height: 44px; display: inline-flex; align-items: center;
}
.nav-links a:not(.btn):hover { color: var(--action); }
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; border: 1px solid var(--hairline); border-radius: 10px;
  background: var(--surface); cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink); margin-inline: auto;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links.active {
  display: flex; position: absolute; top: var(--header-h); left: 0; right: 0;
  flex-direction: column; align-items: stretch; gap: 0;
  padding: 1rem 1.25rem 1.25rem; background: var(--surface);
  border-bottom: 1px solid var(--hairline); box-shadow: var(--shadow);
}
.nav-links.active a { min-height: 48px; padding: 0.5rem 0; border-bottom: 1px solid var(--hairline); }
.nav-links.active .btn { margin-top: 0.75rem; justify-content: center; border-bottom: 0; }

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
  body { padding-bottom: 0; }
}

/* Frames */
.frame {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline);
  background: var(--surface); box-shadow: var(--shadow); margin: 0;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.03);
}
.frame figcaption {
  padding: 0.85rem 1rem; font-size: 0.88rem; color: var(--muted);
  border-top: 1px solid var(--hairline); background: var(--surface);
}
.frame figcaption .mono { display: block; margin-bottom: 0.2rem; color: var(--gold); }

/* Hero */
.hero { padding: 2.75rem 0 3.25rem; }
.hero-grid {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 3.9rem); font-weight: 700; margin-bottom: 1rem;
}
.hero h1 em { font-style: italic; color: var(--action-bright); }
.lede { color: var(--muted); font-size: 1.08rem; max-width: 40ch; margin-bottom: 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }
.hero-meta { font-size: 0.9rem; color: var(--muted); margin: 0; }
.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-media .frame {
  width: 100%;
  max-width: 100%;
}
.hero-media .frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

/* Proof */
.proof {
  background: var(--action); color: var(--white); padding: 1.75rem 0;
}
.proof-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; text-align: center;
}
@media (min-width: 700px) { .proof-grid { grid-template-columns: repeat(4, 1fr); } }
.proof-num {
  display: block; font-family: var(--font-display); font-size: 1.85rem; font-weight: 700;
  line-height: 1.1; margin-bottom: 0.3rem;
}
.proof-label {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em;
  text-transform: uppercase; opacity: 0.85;
}

/* Filters + programs */
.filter-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 1.75rem;
}
.filter-btn {
  min-height: 44px; padding: 0.5rem 1.1rem; border-radius: 999px;
  border: 1px solid var(--hairline); background: var(--surface); color: var(--muted);
  font-weight: 700; font-size: 0.88rem; cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--action); color: var(--white); border-color: var(--action);
}
.program-grid {
  display: grid; gap: 1.15rem;
}
@media (min-width: 720px) { .program-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .program-grid { grid-template-columns: repeat(3, 1fr); } }
.program-card {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.program-card:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(26, 36, 32, 0.1); }
.program-card.is-hidden { display: none; }
.program-card img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}
.program-body { padding: 1.15rem 1.15rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.program-body h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.65rem; }
.program-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.55rem; }
.program-body .who { color: var(--ink); }
.program-body strong { color: var(--action); font-weight: 700; font-size: 0.82rem; }
.card-link {
  margin-top: auto; padding-top: 0.75rem; font-weight: 700; color: var(--action);
  text-decoration: none; font-size: 0.92rem;
  min-height: 44px; display: inline-flex; align-items: center;
}
.card-link:hover { color: var(--action-bright); }

/* Bento */
.bento { display: grid; gap: 1rem; }
@media (min-width: 800px) {
  .bento { grid-template-columns: 1fr 1.1fr 1fr; }
  .bento-wide { grid-column: 1 / -1; }
}
.bento-card {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 1.4rem 1.25rem; box-shadow: var(--shadow);
}
.bento-card .mono { display: block; margin-bottom: 0.65rem; }
.bento-card h3 { font-size: 1.25rem; margin-bottom: 0.55rem; }
.bento-card p { color: var(--muted); font-size: 0.98rem; }
.bento-photo { padding: 0; overflow: hidden; min-height: 260px; }
.bento-photo img {
  width: 100%; height: 100%; min-height: 260px;
  object-fit: cover; object-position: center 40%;
  filter: saturate(0.95) contrast(1.04);
}
.bento-wide {
  display: grid; gap: 1.25rem; align-items: center;
}
@media (min-width: 800px) {
  .bento-wide { grid-template-columns: 1.1fr 0.9fr; padding: 0; overflow: hidden; }
  .bento-wide > div { padding: 1.75rem 1.5rem; }
  .bento-wide img { height: 100%; min-height: 260px; object-fit: cover; filter: saturate(0.88); }
}
.quote-inline {
  margin-top: 1rem !important; font-family: var(--font-display); font-style: italic;
  color: var(--action) !important; font-size: 1.1rem !important;
}

/* Story */
.story-grid {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 860px) { .story-grid { grid-template-columns: 1.1fr 0.9fr; } }
.story-grid h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.4rem); margin-bottom: 1rem;
}
.story-grid > div > p { color: var(--muted); margin-bottom: 1.25rem; max-width: 48ch; }
.verse {
  border-left: 3px solid var(--gold); padding: 0.85rem 0 0.85rem 1.15rem;
  background: var(--surface); border-radius: 0 var(--radius) var(--radius) 0;
}
.verse p {
  font-family: var(--font-display); font-style: italic; font-size: 1.2rem;
  color: var(--ink); margin-bottom: 0.4rem !important;
}
.verse cite { font-family: var(--font-mono); font-size: 0.75rem; color: var(--gold); font-style: normal; }

/* Team */
.team-grid { display: grid; gap: 1.15rem; }
@media (min-width: 800px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-card {
  display: grid; grid-template-columns: 100px 1fr; gap: 1rem;
  background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 1.15rem; box-shadow: var(--shadow); align-items: start;
}
.team-card img {
  width: 100px; height: 100px; border-radius: 50%; object-fit: cover;
  object-position: center 15%;
  border: 2px solid var(--hairline);
  /* match solid studio grey fill in headshots */
  background: #b9b9b9;
}
.team-card h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.team-card .role {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--action-bright);
  letter-spacing: 0.04em; margin-bottom: 0.55rem; font-weight: 600;
}
.team-card p:last-child { color: var(--muted); font-size: 0.92rem; }

/* Receipts */
.receipt-grid { display: grid; gap: 1rem; }
@media (min-width: 800px) { .receipt-grid { grid-template-columns: 1fr 1fr; } }
.receipt {
  margin: 0; background: var(--surface); border: 1px solid var(--hairline);
  border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.35rem 1.25rem; box-shadow: var(--shadow);
}
.receipt p {
  font-family: var(--font-display); font-style: italic; font-size: 1.08rem;
  color: var(--ink); margin-bottom: 0.9rem; line-height: 1.45;
}
.receipt footer {
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted);
}
.receipt footer strong { color: var(--action); }

/* Events — flyers keep full poster aspect; no cover-crop squash */
.events-stack { display: grid; gap: 2.5rem; }
.event-card {
  display: grid; gap: 1.75rem; align-items: center;
  background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
}
@media (min-width: 860px) {
  .event-card {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    padding: 1.75rem 1.85rem;
    gap: 2.25rem;
  }
  .event-card:nth-child(even) .event-copy { order: 2; }
  .event-card:nth-child(even) .event-flyer { order: 1; }
}
.event-kicker {
  display: block; color: var(--gold); margin-bottom: 0.45rem; font-size: 0.7rem;
}
.event-card h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem); font-weight: 600; margin-bottom: 0.4rem;
}
.event-tag { color: var(--action-bright); font-weight: 600; margin-bottom: 1rem; }
.event-meta { margin: 0 0 1.25rem; display: grid; gap: 0.55rem; }
.event-meta li { color: var(--muted); }
.event-meta a { color: var(--action); font-weight: 600; text-decoration: none; }
.event-meta a:hover { color: var(--action-bright); }
.event-meta strong {
  display: inline-block; min-width: 5.5rem; color: var(--action);
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.04em; text-transform: uppercase;
}
.event-flyer {
  justify-self: center;
  width: 100%;
  max-width: 340px;
  background: var(--raised);
  align-self: center;
  position: relative;
  cursor: zoom-in;
  border: 1px solid var(--hairline);
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
button.event-flyer:hover,
button.event-flyer:focus-visible {
  box-shadow: 0 8px 28px rgba(26, 36, 32, 0.14);
  transform: translateY(-2px);
  outline: none;
}
button.event-flyer:focus-visible {
  box-shadow: var(--focus), 0 8px 28px rgba(26, 36, 32, 0.14);
}
/* Override .frame img (height:100% + cover) so posters stay readable */
.event-flyer img,
.frame.event-flyer img {
  width: 100%;
  height: auto !important;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: none;
  pointer-events: none;
}
.flyer-hint {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.55rem;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  text-align: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  pointer-events: none;
}
button.event-flyer:hover .flyer-hint,
button.event-flyer:focus-visible .flyer-hint {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none) {
  .flyer-hint { opacity: 0.92; transform: none; }
}
@media (max-width: 859px) {
  .event-flyer { max-width: 300px; margin-inline: auto; }
}

/* Flyer lightbox */
.flyer-lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(920px, calc(100vw - 1.5rem));
  max-height: calc(100vh - 1.5rem);
  color: var(--ink);
}
.flyer-lightbox::backdrop {
  background: rgba(14, 22, 18, 0.78);
  backdrop-filter: blur(4px);
}
.flyer-lightbox-panel {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  max-height: calc(100vh - 1.5rem);
  overflow: hidden;
}
.flyer-lightbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem 0.9rem 1.15rem;
  border-bottom: 1px solid var(--hairline);
}
.flyer-lightbox-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}
.flyer-lightbox-x {
  width: 40px;
  height: 40px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flyer-lightbox-x:hover {
  border-color: var(--action);
  color: var(--action);
}
.flyer-lightbox-x:focus-visible { outline: none; box-shadow: var(--focus); }
.flyer-lightbox-stage {
  padding: 1rem 1.15rem;
  overflow: auto;
  background: var(--raised);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.flyer-lightbox-stage img {
  width: auto;
  height: auto;
  max-width: min(720px, 100%);
  max-height: min(72vh, 900px);
  object-fit: contain;
  border-radius: 6px;
  box-shadow: var(--shadow);
  background: var(--surface);
}
.flyer-lightbox-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0.95rem 1.15rem 1.1rem;
  border-top: 1px solid var(--hairline);
  background: var(--surface);
}
body.flyer-open { overflow: hidden; }

/* Paths + Give panel */
.path-grid { display: grid; gap: 1rem; }
.path-grid--pair { margin-bottom: 1.35rem; }
@media (min-width: 720px) {
  .path-grid--pair { grid-template-columns: 1fr 1fr; gap: 1.15rem; }
}
.path-card {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 1.5rem 1.35rem; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.path-card .mono { display: block; margin-bottom: 0.65rem; }
.path-card h3 { margin-bottom: 0.5rem; }
.path-card p { color: var(--muted); margin-bottom: 1.15rem; flex: 1; }
.path-card .btn { align-self: flex-start; }

/* Elevated give panel — hopeful, not sparse */
.give-panel {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(232, 212, 139, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(45, 90, 69, 0.55), transparent 50%),
    linear-gradient(145deg, #143528 0%, #1b3a2d 48%, #0f2a20 100%);
  color: #e8f0ea;
  border: 1px solid rgba(232, 212, 139, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 48px rgba(15, 30, 24, 0.28);
}
.give-panel-glow {
  position: absolute;
  inset: auto -20% -40% auto;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.18), transparent 68%);
  pointer-events: none;
}
.give-panel-grid {
  position: relative;
  display: grid;
  gap: 1.75rem;
  padding: 1.65rem 1.35rem 1.75rem;
}
@media (min-width: 900px) {
  .give-panel-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.25rem;
    padding: 2.15rem 2rem 2.25rem;
    align-items: stretch;
  }
}
.give-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #e8d48b !important;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
}
.give-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.18;
  color: #fffef8;
  margin-bottom: 0.75rem;
  max-width: 18ch;
}
.give-lede {
  color: rgba(232, 240, 234, 0.88);
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 1.35rem;
  max-width: 42ch;
}
.give-impact {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.4rem;
}
.give-impact li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}
.give-impact-mark {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #e8d48b;
  margin-top: 0.2rem;
}
.give-impact strong {
  display: block;
  color: #fffef8;
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}
.give-impact span {
  display: block;
  color: rgba(220, 232, 224, 0.78);
  font-size: 0.9rem;
  line-height: 1.45;
}
.give-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  font-size: 0.82rem;
  color: rgba(220, 232, 224, 0.72);
  line-height: 1.4;
}
.give-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(232, 212, 139, 0.16);
  border: 1px solid rgba(232, 212, 139, 0.35);
  color: #e8d48b;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.give-box {
  background: rgba(255, 252, 247, 0.97);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
}
.give-box-label {
  color: var(--action-bright) !important;
  margin-bottom: 0.25rem;
}
.give-box-hint {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.give-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}
.give-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  background: var(--bg);
  text-decoration: none;
  color: var(--ink);
  min-height: 96px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.give-tier:hover {
  border-color: var(--action);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 36, 32, 0.1);
  color: var(--ink);
}
.give-tier--highlight {
  border-color: color-mix(in srgb, var(--action) 45%, var(--hairline));
  background: linear-gradient(180deg, color-mix(in srgb, var(--action) 8%, var(--surface)), var(--surface));
  box-shadow: 0 4px 14px rgba(27, 58, 45, 0.1);
}
.give-tier-tag {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--action);
  background: color-mix(in srgb, var(--action) 12%, var(--white));
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
}
.give-tier-amt {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--action);
  line-height: 1.1;
}
.give-tier-amt span {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--muted);
  margin-left: 0.1rem;
}
.give-tier-name {
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 0.15rem;
}
.give-tier-note {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.3;
}
.give-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}
.give-ctas .btn-solid {
  width: 100%;
}
.btn-give-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--ink) !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn-give-ghost:hover {
  border-color: var(--action);
  color: var(--action) !important;
}
.give-fine {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}
.give-fine a {
  color: var(--action);
  font-weight: 600;
  text-decoration: none;
}
.give-fine a:hover { color: var(--action-bright); text-decoration: underline; }

@media (max-width: 640px) {
  .give-panel-grid { padding: 1.35rem 1.1rem 1.45rem; gap: 1.35rem; }
  .give-copy h3 { max-width: none; }
  .give-tier-amt { font-size: 1.3rem; }
  .give-tier { min-height: 90px; padding: 0.75rem 0.65rem; }
  .give-tier-tag { font-size: 0.55rem; top: 0.35rem; right: 0.35rem; }
}

/* FAQ */
.faq-list { max-width: 760px; margin: 1.5rem auto 0; display: grid; gap: 0.55rem; }
details {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 10px;
  padding: 0.15rem 1.1rem; box-shadow: var(--shadow);
}
summary {
  cursor: pointer; font-weight: 700; min-height: 52px; display: flex; align-items: center;
  list-style: none; gap: 0.75rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; margin-left: auto; color: var(--action); font-family: var(--font-mono); font-size: 1.2rem;
}
details[open] summary::after { content: "−"; }
details p { color: var(--muted); padding: 0 0 1rem; }

/* Join */
.join { padding: 0 0 4.5rem; }
.join-shell {
  display: grid; border: 1px solid var(--hairline); border-radius: calc(var(--radius) + 4px);
  overflow: hidden; background: var(--surface); box-shadow: var(--shadow);
}
@media (min-width: 900px) { .join-shell { grid-template-columns: 0.95fr 1.05fr; } }
.join-visual { position: relative; min-height: 300px; }
.join-visual img {
  width: 100%; height: 100%; min-height: 300px; object-fit: cover;
  filter: saturate(0.85) brightness(0.78);
}
.join-cap {
  position: absolute; inset: auto 0 0 0; padding: 1.5rem;
  background: linear-gradient(to top, rgba(26, 36, 32, 0.92), transparent);
  color: var(--white);
}
.join-cap .eyebrow { color: #e8d48b; }
.join-cap .leaf { color: #e8d48b; }
.join-quote {
  font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.85rem; max-width: 28ch;
}
.join-perks { display: grid; gap: 0.35rem; margin-bottom: 0.75rem; }
.join-perks li { display: flex; gap: 0.65rem; font-size: 0.92rem; }
.join-perks .n { font-family: var(--font-mono); color: #e8d48b; font-size: 0.72rem; }
.join-email a { color: #e8d48b; }
.join-panel { padding: 1.75rem 1.4rem 2rem; background: var(--white); }
@media (min-width: 900px) { .join-panel { padding: 2.25rem 2rem; } }
.join-panel h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 0.5rem; }
.join-lede { color: var(--muted); margin-bottom: 1.25rem; }
.form-row { display: grid; gap: 0.75rem; }
@media (min-width: 520px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { margin-bottom: 0.85rem; }
.field label {
  display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 0.7rem 0.85rem; border-radius: 10px;
  border: 1px solid var(--hairline); background: var(--bg); color: var(--ink); font-size: 16px;
  transition: border-color 0.2s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--action); outline: none; box-shadow: 0 0 0 3px rgba(27, 58, 45, 0.12);
}
.err { display: block; color: #a33; font-size: 0.8rem; min-height: 1.1em; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-fine { text-align: center; font-size: 0.88rem; color: var(--muted); margin-top: 0.85rem; }
.form-status { text-align: center; color: var(--action-bright); min-height: 1.2em; margin-top: 0.5rem; font-weight: 600; }

/* Footer */
.site-footer {
  background: var(--action); color: #dce8e0; padding-top: 3rem;
}
.footer-grid {
  display: grid; gap: 2rem; padding-bottom: 2.25rem;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.5fr 1fr 0.9fr; } }
.brand-footer { color: var(--white); margin-bottom: 0.85rem; }
.brand-footer .brand-text em { color: #a8c4b4; }
.footer-blurb { max-width: 40ch; font-size: 0.95rem; margin-bottom: 0.75rem; }
.verse-footer {
  font-family: var(--font-display); font-style: italic; font-size: 0.95rem;
  color: #e8d48b; margin-bottom: 1.15rem;
}
.footer-ctas { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.site-footer .btn-ghost {
  border-color: rgba(255,255,255,0.25); color: var(--white) !important;
}
.site-footer .btn-ghost:hover { border-color: #e8d48b; color: #e8d48b !important; }
.site-footer h3 { color: #e8d48b; margin-bottom: 0.75rem; }
.site-footer p { margin-bottom: 0.45rem; font-size: 0.92rem; }
.site-footer a { color: #dce8e0; }
.site-footer a:hover { color: #e8d48b; }
.footer-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-nav a {
  min-height: 36px; display: inline-flex; align-items: center;
  text-decoration: none; font-weight: 600;
}
.footer-photos {
  display: grid; grid-template-columns: repeat(4, 1fr); opacity: 0.55;
}
.footer-photos img {
  width: 100%; height: 100px; object-fit: cover;
  filter: saturate(0.5) brightness(0.7);
}
@media (max-width: 600px) { .footer-photos { grid-template-columns: repeat(2, 1fr); } }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between;
  padding: 1.1rem 0 1.35rem; font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.12);
  color: #a8c4b4;
}

/* Mobile sticky */
.mobile-sticky {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  display: flex; gap: 0.5rem;
  padding: 0.6rem 0.85rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(246, 242, 234, 0.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--hairline);
}
.mobile-sticky a {
  flex: 1; min-height: 48px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-decoration: none;
  border: 1px solid var(--hairline); border-radius: 10px; color: var(--ink);
  font-size: 0.7rem; line-height: 1.2;
}
.mobile-sticky a strong { font-size: 0.9rem; }
.mobile-sticky a.primary {
  background: var(--action); color: var(--white); border-color: transparent;
}
@media (min-width: 960px) { .mobile-sticky { display: none; } }

/* Reveal */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .js-ready .reveal {
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  }
  .js-ready .reveal.is-in { opacity: 1; transform: none; }
}

@media (max-width: 560px) {
  .team-card { grid-template-columns: 1fr; }
  .team-card img { width: 88px; height: 88px; }
}

/* —— Mobile polish —— */
/* Sticky bar handles Give/Join — hide duplicate hero CTAs under 960px */
@media (max-width: 959px) {
  .hero-copy > .hero-actions {
    display: none;
  }
  .hero-copy .lede {
    margin-bottom: 0.85rem;
  }
  .hero {
    padding: 1.35rem 0 1.75rem;
  }
  .hero-grid {
    gap: 1.35rem;
  }
  /* Keep full group in frame — no aggressive crop, clear of sticky bar */
  .hero-media .frame img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 28%;
  }
  .hero-media .frame figcaption {
    display: none;
  }
  .hero-media {
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 640px) {
  .section { padding: 3.25rem 0; }
  .hero h1 { font-size: clamp(2.15rem, 10.5vw, 2.7rem); margin-bottom: 0.7rem; }
  .hero .eyebrow { margin-bottom: 0.55rem; }
  .lede { font-size: 1.02rem; }
  .hero-meta { font-size: 0.85rem; line-height: 1.4; }
  .event-card { padding: 1.15rem; gap: 1.25rem; }
  .event-card .hero-actions { display: flex; }
  .event-card .hero-actions .btn { flex: 1 1 100%; width: 100%; }
  .join-panel { padding: 1.35rem 1.1rem 1.6rem; }
  .proof-num { font-size: 1.55rem; }
  .proof-label { font-size: 0.62rem; letter-spacing: 0.05em; }
  .flyer-lightbox {
    max-width: calc(100vw - 0.75rem);
    max-height: calc(100dvh - 0.75rem);
    width: calc(100vw - 0.75rem);
  }
  .flyer-lightbox-panel { max-height: calc(100dvh - 0.75rem); }
  .flyer-lightbox-stage { padding: 0.65rem; }
  .flyer-lightbox-stage img {
    max-width: 100%;
    max-height: min(62dvh, 720px);
  }
  .flyer-lightbox-actions {
    padding: 0.75rem 0.85rem calc(0.85rem + env(safe-area-inset-bottom));
  }
  .flyer-lightbox-actions .btn { flex: 1 1 auto; min-width: 0; }
  .flyer-lightbox-title { font-size: 1.02rem; }
}

/* Larger tap targets where audit found short links */
.event-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.15rem 0;
}
.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-nav a { min-height: 44px; }
.form-fine a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0;
}

/* Sticky bar stays below lightbox (dialog top-layer) but above content */
.mobile-sticky { z-index: 40; }
.site-header { z-index: 50; }
