:root {
  --ink:        #1F1A14;
  --ink-soft:   #2E2820;
  --parchment:  #F4EDE0;
  --parchment-2:#EFE7D6;
  --clay:       #E8DCC4;
  --clay-deep:  #DCCDB0;
  --ochre:      #C8893A;
  --ochre-deep: #B3762A;
  --terracotta: #A0432B;
  --moss:       #5C6B4A;
  --moss-deep:  #485438;
  --mist:       #8A7E6B;
  --rule:       #D9CDB4;

  --serif:  "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:   "Instrument Sans", "Helvetica Neue", Helvetica, system-ui, sans-serif;
  --script: "Caveat", "Bradley Hand", cursive;

  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
  --shell:  1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --shadow-card: 0 12px 32px -16px rgba(160, 67, 43, 0.25);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--parchment);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.10  0 0 0 0 0.08  0 0 0 0.10 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--ochre); color: var(--parchment); }

/* Skip link */
.skip {
  position: absolute; left: -9999px; top: 8px;
  background: var(--ink); color: var(--parchment);
  padding: 10px 14px; border-radius: 6px;
  font-family: var(--sans); font-size: 14px; z-index: 100;
}
.skip:focus { left: 16px; outline: 2px solid var(--ochre); outline-offset: 2px; }

/* ---------- LAYOUT ---------- */
.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0;
  z-index: 50;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(244, 237, 224, 0.82);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--rule);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; letter-spacing: -0.01em; color: var(--ink);
}
.brand-mark { width: 32px; height: 32px; flex-shrink: 0; }
.brand small {
  display: block;
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mist); margin-top: 2px; font-weight: 500;
}
.nav-links { display: flex; gap: 36px; align-items: center; font-size: 14.5px; font-weight: 500; }
.nav-links a {
  color: var(--ink-soft); position: relative;
  padding: 6px 0; transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ochre);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ochre); color: var(--ink);
  padding: 11px 20px; border-radius: 8px;
  font-family: var(--sans); font-weight: 600;
  font-size: 14px; letter-spacing: 0.01em;
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.nav-cta:hover {
  background: var(--ochre-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -10px rgba(160, 67, 43, 0.4);
}
.nav-cta svg { width: 14px; height: 14px; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--rule);
  border-radius: 8px; cursor: pointer;
}
.hamburger span { display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative; }
.hamburger span::before,
.hamburger span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ink);
}
.hamburger span::before { top: -6px; }
.hamburger span::after  { top:  6px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--parchment); z-index: 60;
  padding: 100px var(--gutter) 60px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif); font-size: 36px; font-weight: 300;
  padding: 16px 0; border-bottom: 1px solid var(--rule);
}
.mobile-menu .nav-cta { margin-top: 32px; align-self: flex-start; font-size: 16px; padding: 14px 22px; }
.mobile-close {
  position: absolute; top: 22px; right: var(--gutter);
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--rule);
  border-radius: 8px; cursor: pointer;
  font-family: var(--sans); color: var(--ink);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 85% 90%, rgba(92, 107, 74, 0.22), transparent 65%),
    radial-gradient(50% 60% at 95% 60%, rgba(200, 137, 58, 0.18), transparent 70%),
    radial-gradient(70% 80% at 10% 5%, rgba(232, 220, 196, 0.7), transparent 70%);
  z-index: 1;
}
.hero-script {
  position: absolute; right: -2vw; top: 18%;
  font-family: var(--serif);
  font-size: clamp(220px, 28vw, 460px);
  font-weight: 300; line-height: 0.85;
  color: var(--ink); opacity: 0.05;
  pointer-events: none; z-index: 1;
  user-select: none; letter-spacing: -0.03em;
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; }

.eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist);
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 32px;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--ochre); }

.hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.02; letter-spacing: -0.025em;
  margin: 0 0 32px; color: var(--ink);
  max-width: 14ch; text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--terracotta); font-weight: 300; }

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6; color: var(--ink-soft);
  max-width: 540px; margin: 0 0 44px; text-wrap: pretty;
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; font-family: var(--sans); font-weight: 600;
  font-size: 15px; border-radius: 8px; border: 1px solid transparent;
  cursor: pointer; transition: all .35s var(--ease); letter-spacing: 0.005em;
}
.btn svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { background: var(--ochre); color: var(--ink); box-shadow: 0 1px 0 rgba(0,0,0,.04); }
.btn-primary:hover {
  background: var(--ochre-deep); transform: translateY(-1px);
  box-shadow: 0 12px 28px -14px rgba(160, 67, 43, 0.45);
}
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--parchment); }

/* ---------- STATS ---------- */
.stats {
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 56px 0;
  background: linear-gradient(to bottom, transparent, rgba(232, 220, 196, 0.25), transparent);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { text-align: center; padding: 8px 24px; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 18%; bottom: 18%;
  width: 1px; background: var(--moss); opacity: .35;
}
.stat-num {
  font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400; color: var(--ochre);
  line-height: 1; letter-spacing: -0.02em; display: block;
}
.stat-label {
  font-family: var(--sans); font-size: 11.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mist); margin-top: 14px; font-weight: 500;
}

/* ---------- SECTION FRAMEWORK ---------- */
section[id] { scroll-margin-top: 80px; }
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section-head { max-width: 720px; margin: 0 0 72px; }
.section-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.1; margin: 0 0 24px; color: var(--ink);
  letter-spacing: -0.02em; text-wrap: balance;
}
.section-head h2 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.section-head p {
  font-size: clamp(1rem, 1.2vw, 1.1rem); color: var(--ink-soft);
  max-width: 580px; margin: 0; line-height: 1.65; text-wrap: pretty;
}

/* ---------- PILLAR CARDS ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pillar {
  background: var(--clay); border-radius: 4px; color: var(--ink);
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  cursor: default; border: 1px solid transparent;
  overflow: hidden; display: flex; flex-direction: column;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card); border-color: var(--clay-deep);
}
.pillar-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  position: relative;
  min-height: 240px;
}
.pillar-body { padding: 26px 26px 32px; }
.pillar h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.5rem; margin: 0 0 14px; letter-spacing: -0.01em;
  position: relative; display: inline-block;
}
.pillar h3::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--ochre);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.pillar:hover h3::after { transform: scaleX(1); }
.pillar p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.pillar-num {
  font-family: var(--sans); font-size: 11px;
  color: var(--mist); letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  display: block; margin-bottom: 10px;
}

/* ---------- QUOTE BAND ---------- */
.quote-band {
  background: var(--moss); color: var(--parchment);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative; overflow: hidden;
}
.quote-band::before,
.quote-band::after {
  content: ""; position: absolute;
  width: 60vw; height: 60vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 237, 224, 0.06), transparent 60%);
}
.quote-band::before { top: -20vw; left: -20vw; }
.quote-band::after  { bottom: -20vw; right: -20vw; }
.quote {
  max-width: 780px; margin: 0 auto;
  text-align: center; position: relative; z-index: 2;
  padding: 0 var(--gutter);
}
.quote-marks {
  font-family: var(--serif); font-size: 4rem;
  line-height: 0.5; color: var(--ochre); font-style: italic;
}
.quote blockquote {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.3; margin: 24px 0 36px;
  letter-spacing: -0.01em; text-wrap: balance;
}
.quote cite { font-family: var(--script); font-style: normal; font-size: 1.4rem; color: var(--clay); font-weight: 500; }

/* Parchment variant */
.quote-band.on-parchment {
  background: transparent; color: var(--ink);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.quote-band.on-parchment blockquote { color: var(--ink); }
.quote-band.on-parchment cite { color: var(--moss); }
.quote-band.on-parchment .quote-marks { color: var(--moss); }
.quote-band.on-parchment::before,
.quote-band.on-parchment::after { display: none; }

/* ---------- ABOUT / STORY ---------- */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 80px; align-items: start;
}
.story-col { max-width: 620px; }
.story-col article + article { margin-top: 48px; }
.story-col h3 {
  font-family: var(--sans); font-weight: 500;
  font-size: 11.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ochre); margin: 0 0 16px;
}
.story-col p { font-size: 1.05rem; line-height: 1.75; color: var(--ink-soft); margin: 0 0 18px; text-wrap: pretty; }
.story-col article:first-child p:first-of-type::first-letter {
  font-family: var(--serif); color: var(--ochre);
  font-size: 4.5em; line-height: 0.85;
  float: left; padding: 6px 12px 0 0; font-weight: 400;
}

.values { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 14px; }
.value-card {
  background: var(--clay); padding: 22px 24px;
  border-left: 2px solid var(--ochre); border-radius: 2px 4px 4px 2px;
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.value-card:hover { transform: translateX(4px); background: var(--clay-deep); }
.value-card h4 { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; margin: 0 0 6px; letter-spacing: -0.005em; }
.value-card p  { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* ---------- OUR WORK ---------- */
.pillar-row {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px; align-items: center;
  padding: 64px 0; border-bottom: 1px solid var(--rule);
}
.pillar-row:first-of-type { border-top: 1px solid var(--rule); }
.pillar-row.flip .pillar-detail { order: 2; }
.pillar-row.flip .pillar-numeral { order: 1; }

.pillar-numeral {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 300; color: var(--ochre);
  line-height: 0.9; letter-spacing: -0.04em; position: relative;
}
.pillar-numeral::after {
  content: ""; display: block; width: 80px; height: 1px;
  background: var(--moss); margin-top: 28px;
}
.pillar-tag {
  display: inline-block; background: var(--clay);
  padding: 6px 14px; border-radius: 999px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--moss-deep); margin-bottom: 24px;
}
.pillar-detail h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 0 0 18px; letter-spacing: -0.015em; line-height: 1.15;
}
.pillar-detail p { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.7; margin: 0; max-width: 560px; text-wrap: pretty; }

.work-stats {
  margin-top: 96px; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 60px;
  padding-top: 64px; border-top: 1px solid var(--rule);
}
.work-stat .num { font-family: var(--serif); font-size: clamp(3.5rem, 6vw, 5rem); font-weight: 400; color: var(--ochre); line-height: 1; letter-spacing: -0.025em; }
.work-stat .lbl { font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); font-weight: 500; margin-top: 18px; }
.work-stat .desc { font-size: 14.5px; color: var(--mist); margin-top: 10px; line-height: 1.55; }

/* ---------- GET INVOLVED ---------- */
.bank-card {
  max-width: 640px; margin: 0 auto 96px;
  background: var(--clay); border-top: 4px solid var(--ochre);
  padding: 48px clamp(28px, 5vw, 56px) 44px;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 24px 60px -36px rgba(31, 26, 20, 0.25);
}
.bank-card > .eyebrow { margin-bottom: 18px; }
.bank-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.75rem; margin: 0 0 16px; letter-spacing: -0.015em; }
.bank-card > p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; margin: 0 0 28px; }

.bank-rows { border-top: 1px solid var(--rule); }
.bank-row {
  display: grid; grid-template-columns: 140px 1fr auto;
  gap: 20px; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--rule);
}
.bank-row .k { font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist); font-weight: 500; }
.bank-row .v { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); letter-spacing: -0.005em; word-break: break-word; }

.copy-btn {
  background: transparent; border: 1px solid var(--ink);
  color: var(--ink); font-family: var(--sans); font-size: 12px;
  font-weight: 500; letter-spacing: 0.06em;
  padding: 8px 14px; border-radius: 6px; cursor: pointer;
  transition: all .3s var(--ease);
  display: inline-flex; align-items: center; gap: 8px; min-height: 36px;
}
.copy-btn:hover { background: var(--ink); color: var(--parchment); }
.copy-btn.copied { background: var(--moss); border-color: var(--moss); color: var(--parchment); }
.copy-btn svg { width: 12px; height: 12px; }

.bank-note { margin-top: 28px; font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--moss-deep); line-height: 1.5; text-wrap: pretty; }
.bank-foot { margin-top: 16px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 80px; align-items: start; }
.contact-intro h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 2.6vw, 2.2rem); margin: 0 0 22px; letter-spacing: -0.015em; line-height: 1.15; }
.contact-intro p { color: var(--ink-soft); font-size: 1rem; line-height: 1.7; margin: 0 0 28px; text-wrap: pretty; }
.contact-meta { border-top: 1px solid var(--rule); padding-top: 24px; display: grid; gap: 14px; }
.contact-meta div { display: flex; gap: 14px; align-items: baseline; font-size: 14.5px; }
.contact-meta .k { font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist); font-weight: 500; width: 70px; flex-shrink: 0; }
.contact-meta .v { color: var(--ink); }

.form { display: grid; gap: 28px; }
.field { display: flex; flex-direction: column; }
.field label { font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist); font-weight: 500; margin-bottom: 10px; }
.field input,
.field textarea,
.field select {
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: transparent; border: none; border-bottom: 1px solid var(--ink);
  padding: 10px 0 12px; outline: none;
  transition: border-color .3s var(--ease);
  border-radius: 0; -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--ochre); }
.field input::placeholder,
.field textarea::placeholder { color: var(--mist); opacity: .6; }
.field.select { position: relative; }
.field.select::after {
  content: ""; position: absolute; right: 4px; bottom: 22px;
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink);
  transform: rotate(45deg); pointer-events: none;
}

.form-foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.form-foot small { color: var(--mist); font-size: 12.5px; }

.form-success {
  background: var(--clay); border-left: 2px solid var(--moss);
  padding: 36px 40px; border-radius: 4px; display: none;
}
.form-success.is-visible { display: block; animation: fadeUp .8s var(--ease); }
.form-success h4 { font-family: var(--script); font-size: 2.4rem; color: var(--moss-deep); margin: 0 0 8px; font-weight: 500; line-height: 1; }
.form-success p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-error {
  display: none;
  background: rgba(160, 67, 43, 0.08);
  border-left: 2px solid var(--terracotta);
  padding: 16px 20px;
  border-radius: 4px;
  color: var(--terracotta);
  font-size: 14.5px;
  line-height: 1.55;
}
.form-error.is-visible { display: block; }

/* ---------- FOOTER ---------- */
footer.site-foot {
  background: var(--ink); color: var(--clay);
  padding: 80px 0 40px;
  position: relative; z-index: 2;
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(244, 237, 224, 0.12);
}
.foot-grid h5 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist); margin: 0 0 22px; font-weight: 500; }
.foot-grid p { font-size: 14.5px; line-height: 1.65; color: var(--clay); margin: 0 0 16px; opacity: .8; }
.foot-brand .brand { color: var(--parchment); margin-bottom: 18px; }
.foot-brand .brand small { color: var(--mist); }
.foot-pin { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--mist); margin-top: 6px; }
.foot-pin svg { width: 12px; height: 12px; }
.foot-links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.foot-links a { font-size: 14.5px; color: var(--clay); transition: color .3s var(--ease); }
.foot-links a:hover { color: var(--ochre); }
.foot-contact a { color: var(--ochre); }
.foot-italic { font-family: var(--serif); font-style: italic; font-size: 14.5px; color: var(--clay); line-height: 1.6; margin-top: 18px; opacity: .8; }
.foot-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12.5px; color: var(--mist); letter-spacing: 0.04em;
}
.foot-bottom a:hover { color: var(--ochre); }

/* ---------- MOBILE DONATE BAR ---------- */
.donate-bar {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 40; padding: 14px 18px;
  background: var(--ink); color: var(--parchment);
  border-radius: 12px; align-items: center;
  justify-content: space-between; gap: 12px;
  box-shadow: 0 18px 40px -16px rgba(31, 26, 20, 0.45);
}
.donate-bar strong { font-family: var(--serif); font-weight: 400; font-size: 16px; }
.donate-bar small  { color: var(--mist); font-size: 12px; }
.donate-bar .btn   { background: var(--ochre); color: var(--ink); padding: 12px 18px; font-size: 13.5px; }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.stagger.in > * { opacity: 1; transform: translateY(0); }
.stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.stagger.in > *:nth-child(2) { transition-delay: 120ms; }
.stagger.in > *:nth-child(3) { transition-delay: 240ms; }
.stagger.in > *:nth-child(4) { transition-delay: 360ms; }
.stagger.in > *:nth-child(5) { transition-delay: 480ms; }
.stagger.in > *:nth-child(6) { transition-delay: 600ms; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 56px; }
  .values {
    position: static; flex-direction: row;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 8px; gap: 12px;
    margin: 0 calc(-1 * var(--gutter));
    padding-left: var(--gutter); padding-right: var(--gutter);
  }
  .value-card { min-width: 260px; scroll-snap-align: start; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar-row { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
  .pillar-row.flip .pillar-detail { order: 2; }
  .pillar-row.flip .pillar-numeral { order: 1; }
  .pillar-numeral { font-size: 5rem; }
  .pillar-numeral::after { margin-top: 16px; }
  .work-stats { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav > .nav-cta { display: none; }
  .hamburger { display: inline-flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; padding: 12px 0; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(odd)::after {
    content: ""; position: absolute; right: 0; top: 18%; bottom: 18%;
    width: 1px; background: var(--moss); opacity: .35;
  }
  .pillars { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 80px; min-height: 80vh; }
  .hero-script { font-size: 200px; right: -10vw; top: 8%; }
  .donate-bar { display: flex; }
  main, footer.site-foot { padding-bottom: 80px; }
  .bank-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .bank-row .copy-btn { justify-self: start; }
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
}
