:root {
  --bg: #faf5ec;
  --bg-deep: #f3ecdb;
  --ink: #1d2a23;
  --ink-soft: #4f5b53;
  --muted: #80887f;
  --rule: #e3d9c3;
  --olive: #506b3f;
  --olive-deep: #2f4528;
  --terracotta: #c2683e;
  --cream: #fffdf7;
  --shadow: 0 1px 2px rgba(20,30,20,.04), 0 14px 40px -18px rgba(40,55,40,.18);
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.serif { font-family: 'Fraunces', Georgia, serif; font-feature-settings: 'ss01' 1; }

a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ─── HEADER ─── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,245,236,.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -.01em;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--terracotta);
  display: inline-block;
}
.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  text-decoration: none; color: var(--ink-soft);
  font-size: 14px; font-weight: 500;
  letter-spacing: .01em;
  transition: color .15s;
}
.nav a:hover { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .15s;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--olive-deep); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn .arrow {
  display: inline-block; transition: transform .2s;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  margin-top: 24px;
  padding: 0 32px;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  min-height: 620px;
  display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://static.wixstatic.com/media/60af18_d9a9aefdd8b848ea89d1831260d851e9~mv2.jpg');
  background-size: cover; background-position: center;
  z-index: -2;
  transform: scale(1.02);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,30,20,.05) 0%, rgba(20,30,20,.15) 40%, rgba(20,30,20,.7) 100%);
  z-index: -1;
}
.hero-content {
  padding: 64px 56px;
  color: var(--cream);
  max-width: 720px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,253,247,.85);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .line { width: 32px; height: 1px; background: rgba(255,253,247,.6); }
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,253,247,.92);
}
.hero p.lede {
  font-size: 19px;
  line-height: 1.5;
  max-width: 540px;
  color: rgba(255,253,247,.86);
  margin: 0 0 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-primary {
  background: var(--cream); color: var(--ink);
}
.hero .btn-primary:hover { background: white; }
.hero .btn-outline {
  border-color: rgba(255,253,247,.5);
  color: var(--cream);
}
.hero .btn-outline:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* hero meta strip */
.hero-meta {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.hero-meta-item {
  padding: 28px 32px;
  border-left: 1px solid var(--rule);
}
.hero-meta-item:first-child { border-left: 0; }
.hero-meta-item .num {
  font-family: 'Fraunces', serif;
  font-size: 36px; font-weight: 500;
  letter-spacing: -.02em;
  color: var(--olive-deep);
  line-height: 1;
  font-variation-settings: 'opsz' 144;
}
.hero-meta-item .label {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.4;
}

/* ─── MISSION STATEMENT ─── */
.statement {
  padding: 120px 32px 100px;
}
.statement .wrap { max-width: 860px; text-align: center; }
.statement .eyebrow {
  color: var(--terracotta);
  justify-content: center;
}
.statement .eyebrow .line { background: var(--terracotta); opacity: .6; }
.statement h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: 'opsz' 144;
}
.statement h2 em {
  font-style: italic;
  color: var(--olive-deep);
}

/* ─── STORY SECTION ─── */
.story {
  padding: 100px 32px;
  background: var(--bg-deep);
}
.story-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}
.story-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-body h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 24px 0 20px;
  font-variation-settings: 'opsz' 144;
}
.story-body p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.story-body .sig {
  font-family: 'Fraunces', serif;
  font-style: italic;
  margin-top: 32px;
  color: var(--ink);
  font-size: 18px;
}

/* ─── PILLARS ─── */
.pillars {
  padding: 110px 32px 100px;
}
.section-head {
  max-width: 720px;
  margin: 0 0 64px;
}
.section-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 18px 0 16px;
  font-variation-settings: 'opsz' 144;
}
.section-head p {
  font-size: 18px; color: var(--ink-soft);
  margin: 0; max-width: 580px;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pillar {
  padding: 48px 32px 48px 0;
  border-left: 1px solid var(--rule);
  padding-left: 32px;
}
.pillar:first-child { border-left: 0; padding-left: 0; }
.pillar .n {
  font-family: 'Fraunces', serif;
  font-size: 14px; font-weight: 500;
  color: var(--terracotta);
  letter-spacing: .04em;
  margin-bottom: 24px;
  display: block;
}
.pillar h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 16px;
  color: var(--ink);
}
.pillar p {
  font-size: 15px; line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* ─── GALLERY ─── */
.gallery {
  padding: 20px 32px 80px;
}
.gallery .wrap { max-width: var(--maxw); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  height: 520px;
}
.gallery-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-deep);
  box-shadow: var(--shadow);
}
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform .6s ease;
}
.gallery-tile:hover img { transform: scale(1.03); }
.gallery-tile .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 24px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(20,30,20,.75) 100%);
  color: var(--cream);
}
.gallery-tile .cap .l {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 6px;
}
.gallery-tile .cap .t {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 500;
  font-variation-settings: 'opsz' 144;
}
.gallery-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 110px 32px;
}
.test-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-top: 60px;
}
.test-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 44px 40px;
  position: relative;
}
.test-card::before {
  content: '"';
  font-family: 'Fraunces', serif;
  font-size: 96px;
  color: var(--terracotta);
  position: absolute;
  top: 12px; left: 30px;
  line-height: 1;
  opacity: .35;
  font-variation-settings: 'opsz' 144;
}
.test-card .q {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 400;
  color: var(--ink);
  margin: 32px 0 28px;
  font-variation-settings: 'opsz' 144;
}
.test-card .attr {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.test-card .attr .name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.test-card .attr .role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.attr-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 15px;
}

/* ─── MONTESSORI BLOCK ─── */
.method {
  padding: 110px 32px;
  background: var(--olive-deep);
  color: var(--cream);
}
.method-grid {
  display: grid; grid-template-columns: 6fr 5fr;
  gap: 80px;
  align-items: center;
}
.method .eyebrow { color: rgba(255,253,247,.7); }
.method .eyebrow .line { background: rgba(255,253,247,.4); }
.method h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 20px 0 24px;
  color: var(--cream);
  font-variation-settings: 'opsz' 144;
}
.method h2 em { color: rgba(255,253,247,.7); font-style: italic; }
.method p {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,253,247,.78);
  margin: 0 0 32px;
  max-width: 540px;
}
.method .btn-primary {
  background: var(--cream); color: var(--olive-deep);
}
.method-img {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5;
}
.method-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── CTA ─── */
.cta {
  padding: 140px 32px;
  text-align: center;
}
.cta .wrap { max-width: 760px; }
.cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -.025em;
  margin: 24px 0 24px;
  font-variation-settings: 'opsz' 144;
}
.cta h2 em { font-style: italic; color: var(--terracotta); }
.cta p {
  font-size: 19px; line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.cta-row {
  display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--ink);
  color: rgba(255,253,247,.7);
  padding: 80px 32px 40px;
  font-size: 14px;
}
.site-footer .wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.site-footer .brand { color: var(--cream); margin-bottom: 16px; }
.site-footer h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a {
  text-decoration: none;
  color: rgba(255,253,247,.65);
  transition: color .15s;
}
.site-footer ul li a:hover { color: var(--cream); }
.site-footer .tag {
  color: rgba(255,253,247,.55); max-width: 280px; line-height: 1.55;
  font-size: 14px;
}
.fine {
  border-top: 1px solid rgba(255,253,247,.12);
  padding-top: 24px;
  margin-top: 60px;
  max-width: var(--maxw);
  margin-left: auto; margin-right: auto;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,253,247,.45);
  font-size: 13px;
}

/* ─── NAV: active + mobile ─── */
.nav a.active { color: var(--ink); text-decoration: underline; text-underline-offset: 6px; text-decoration-color: var(--terracotta); }
.header-right { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: var(--cream);
  cursor: pointer;
  align-items: center; justify-content: center;
  padding: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative; content: ''; transition: transform .2s, opacity .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.site-header.menu-open .nav-toggle span { background: transparent; }
.site-header.menu-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.site-header.menu-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ─── INNER PAGE HERO ─── */
.page-hero { margin-top: 24px; padding: 0 32px; }
.page-hero-inner {
  max-width: var(--maxw); margin: 0 auto;
  position: relative; border-radius: 24px; overflow: hidden; isolation: isolate;
  min-height: 440px; display: flex; align-items: flex-end;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -2; transform: scale(1.02); }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,30,20,.08) 0%, rgba(20,30,20,.2) 40%, rgba(20,30,20,.72) 100%); z-index: -1; }
.page-hero-content { padding: 56px 56px; color: var(--cream); max-width: 720px; }
.page-hero h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(36px, 5vw, 60px); line-height: 1.06; letter-spacing: -.02em;
  margin: 0 0 18px; font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.page-hero p.lede { font-size: 18px; line-height: 1.5; max-width: 540px; color: rgba(255,253,247,.86); margin: 0; }
.page-hero .hero-cta { margin-top: 28px; }
.page-hero .btn-primary { background: var(--cream); color: var(--ink); }
.page-hero .btn-primary:hover { background: white; }

/* ─── INNER PAGE BODY ─── */
.page-body { padding: 72px 32px 40px; }
.page-body .prose { max-width: 760px; margin: 0 auto; }
.page-body .prose > p, .page-body .prose > ul, .page-body .prose > ol { font-size: 18px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 20px; }
.page-body .prose > ul, .page-body .prose > ol { padding-left: 22px; }
.page-body .prose li { margin-bottom: 8px; }
.page-body .prose h2, .page-body .prose h3 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(28px, 3.4vw, 38px); line-height: 1.15; letter-spacing: -.015em;
  color: var(--ink); margin: 8px 0 20px; font-variation-settings: 'opsz' 144;
}
.page-body .prose h3 em, .page-body .prose h2 em { font-style: italic; color: var(--olive-deep); }
.page-body .prose a { color: var(--olive-deep); text-decoration-color: rgba(80,107,63,.4); text-underline-offset: 3px; }
.page-body .prose a:hover { color: var(--ink); }
.page-body .prose hr { border: 0; border-top: 1px solid var(--rule); margin: 64px auto; max-width: var(--maxw); }
.page-body .prose img { width: 100%; max-height: 480px; object-fit: cover; object-position: center 30%; border-radius: 20px; box-shadow: var(--shadow); display: block; margin: 32px auto; }
.page-body .prose blockquote {
  background: var(--cream); border: 1px solid var(--rule); border-radius: 20px;
  padding: 40px 40px 32px; margin: 28px 0; position: relative;
}
.page-body .prose blockquote::before {
  content: '"'; font-family: 'Fraunces', serif; font-size: 80px; color: var(--terracotta);
  position: absolute; top: 8px; left: 28px; line-height: 1; opacity: .35; font-variation-settings: 'opsz' 144;
}
.page-body .prose blockquote p { font-family: 'Fraunces', serif; font-size: 21px; line-height: 1.45; color: var(--ink); margin: 20px 0 0; font-variation-settings: 'opsz' 144; }
.page-body .prose blockquote p:last-child { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--muted); margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--rule); }
.page-body .prose blockquote p:last-child strong { color: var(--ink); font-weight: 600; }

/* wide blocks inside prose */
.features-grid, .icon-features {
  display: grid; gap: 24px;
  --wide: min(1080px, 100vw - 64px);
  width: var(--wide);
  margin: 40px 0 48px calc(50% - var(--wide) / 2);
}
.features-grid { grid-template-columns: repeat(3, 1fr); }
.features-grid:has(> :nth-child(4)) { grid-template-columns: repeat(2, 1fr); }
.icon-features { grid-template-columns: repeat(2, 1fr); }
.feature-card, .icon-feature {
  background: var(--cream); border: 1px solid var(--rule); border-radius: 20px;
  padding: 36px 32px; box-shadow: var(--shadow);
}
.feature-card h3, .icon-feature h3 {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 23px; line-height: 1.2;
  letter-spacing: -.01em; margin: 0 0 12px; color: var(--ink);
}
.feature-card p, .icon-feature p { font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.feature-card p + p { margin-top: 14px; }
.feature-card a { color: var(--olive-deep); font-weight: 500; text-decoration: none; }
.feature-card a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.page-body .prose .principle-icon-img { width: 64px; height: 64px; max-height: none; border-radius: 50%; background: var(--bg-deep); padding: 12px; object-fit: contain; margin: 0 0 18px; box-shadow: none; }

/* generic CTA button used in content */
.cta-button, .cta-button:visited {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; font-size: 14px; font-weight: 600;
  text-decoration: none; border-radius: 999px;
  background: var(--ink); color: var(--cream) !important; border: 1px solid transparent;
  transition: all .15s;
}
.cta-button:hover { background: var(--olive-deep); }
.center { text-align: center; }

/* contact cards */
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin: 8px 0 24px; }

/* donate */
.donate-form-wrap {
  background: var(--cream); border: 1px solid var(--rule); border-radius: 20px;
  padding: 44px 40px; margin: 24px auto 8px; text-align: center; box-shadow: var(--shadow);
  scroll-margin-top: 90px;
}
.donate-form-wrap .donate-form-lead { font-family: 'Fraunces', serif; font-size: 22px; line-height: 1.4; color: var(--ink); margin: 0 0 24px; font-variation-settings: 'opsz' 144; }
.donate-form-wrap .donate-now { font-size: 15px; padding: 15px 32px; }
.donate-form-wrap .donate-form-note { margin: 22px 0 0; font-size: 13.5px; color: var(--muted); }
.donate-form-wrap [data-entity="EMBED_FORM"] { min-height: 200px; }
#sponsor { scroll-margin-top: 90px; }

/* page-level closing CTA band (inner pages) */
.page-cta { padding: 90px 32px 110px; text-align: center; background: var(--bg-deep); margin-top: 60px; }
.page-cta .wrap { max-width: 720px; }
.page-cta h2 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(30px, 4.2vw, 46px); line-height: 1.08; letter-spacing: -.02em; margin: 20px 0 18px; font-variation-settings: 'opsz' 144; }
.page-cta h2 em { font-style: italic; color: var(--terracotta); }
.page-cta p { font-size: 18px; color: var(--ink-soft); margin: 0 auto 30px; max-width: 520px; }

/* 404 */
.notfound { padding: 140px 32px; text-align: center; }
.notfound h1 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(40px, 6vw, 72px); margin: 0 0 16px; letter-spacing: -.02em; }
.notfound p { color: var(--ink-soft); font-size: 18px; margin: 0 0 32px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 72px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--rule);
    padding: 8px 32px 16px;
  }
  .site-header.menu-open .nav { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--rule); font-size: 16px; }
  .nav a:last-child { border-bottom: 0; }
  .hero-content, .page-hero-content { padding: 40px 32px; }
  .page-hero-inner { min-height: 360px; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .hero-meta-item:nth-child(3) { border-left: 0; }
  .hero-meta-item:nth-child(2), .hero-meta-item:nth-child(4) { border-left: 1px solid var(--rule); }
  .hero-meta-item:nth-child(3), .hero-meta-item:nth-child(4) { border-top: 1px solid var(--rule); }
  .story-grid, .method-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr; height: auto; }
  .gallery-tile { aspect-ratio: 4/3; }
  .gallery-col { grid-template-rows: auto; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(3) { border-left: 0; padding-left: 0; }
  .pillar:nth-child(3), .pillar:nth-child(4) { border-top: 1px solid var(--rule); padding-top: 32px; }
  .test-grid { grid-template-columns: 1fr; }
  .site-footer .wrap { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
  .features-grid, .features-grid:has(> :nth-child(4)), .icon-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap, .hero, .page-hero, .statement, .story, .pillars, .gallery, .testimonials, .method, .cta, .page-body, .page-cta, .site-footer { padding-left: 20px; padding-right: 20px; }
  .hero-inner { min-height: 520px; }
  .hero-content, .page-hero-content { padding: 32px 24px; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta-item { border-left: 0 !important; border-top: 1px solid var(--rule); }
  .hero-meta-item:first-child { border-top: 0; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 32px; }
  .pillar:first-child { border-top: 0; padding-top: 0; }
  .site-footer .wrap { grid-template-columns: 1fr; }
  .fine { flex-direction: column; gap: 12px; align-items: flex-start; }
  .features-grid, .features-grid:has(> :nth-child(4)), .icon-features { grid-template-columns: 1fr; --wide: calc(100vw - 40px); }
  .page-body { padding-top: 48px; }
  .page-body .prose blockquote { padding: 32px 24px 24px; }
  .donate-form-wrap { padding: 32px 22px; }
}
