:root {
  --indigo: #15233F;
  --indigo-700: #1e3055;
  --indigo-900: #0e1729;
  --brass: #B08A4C;
  --brass-soft: #c9a878;
  --sage: #3F7A77;
  --ivory: #F4EEDF;
  --sand: #E7DDC6;
  --stone: #C9C1AE;
  --charcoal: #1A1814;
  --warm-gray: #5A544A;
  --warm-gray-2: #8A8275;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --shadow-soft: 0 1px 2px rgba(21, 35, 63, 0.04), 0 8px 24px -12px rgba(21, 35, 63, 0.18);
  --shadow-lift: 0 2px 4px rgba(21, 35, 63, 0.05), 0 16px 40px -16px rgba(21, 35, 63, 0.25);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --max-w: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-wrap: break-word;
}
body.is-locked { overflow: hidden; }

img, svg { display: block; max-width: 100%; }

a {
  color: var(--indigo);
  text-decoration: none;
  transition: color .25s ease;
}

a:hover { color: var(--brass); }

::selection { background: var(--brass); color: var(--ivory); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--indigo);
  color: var(--ivory);
  padding: var(--space-3) var(--space-4);
  z-index: 100;
}
.skip-link:focus { left: var(--space-3); top: var(--space-3); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-7); }
}

/* ───────── Logo masks ───────── */

.brand__lockup,
.hero__seal,
.site-footer__lockup,
.pullquote__pattern {
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.brand__lockup {
  width: 168px;
  height: 56px;
  -webkit-mask-image: url('assets/logo-lockup-horizontal.svg');
  mask-image: url('assets/logo-lockup-horizontal.svg');
}

@media (max-width: 480px) {
  .brand__lockup { width: 132px; height: 44px; }
}

.hero__seal {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
  width: 540px;
  height: 540px;
  color: var(--brass);
  opacity: 0.085;
  -webkit-mask-image: url('assets/logo-mark.svg');
  mask-image: url('assets/logo-mark.svg');
  pointer-events: none;
}

@media (max-width: 880px) {
  .hero__seal {
    width: 380px; height: 380px;
    right: -25%; opacity: 0.07;
  }
}

.site-footer__lockup {
  width: 168px;
  height: 168px;
  -webkit-mask-image: url('assets/logo-lockup-stacked.svg');
  mask-image: url('assets/logo-lockup-stacked.svg');
}
@media (max-width: 480px) {
  .site-footer__lockup { width: 140px; height: 140px; }
}

.pullquote__pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url('assets/pattern-mark.svg');
  mask-image: url('assets/pattern-mark.svg');
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
  -webkit-mask-size: 240px 240px;
  mask-size: 240px 240px;
  color: var(--ivory);
  opacity: 0.04;
  pointer-events: none;
}

/* ───────── Header ───────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 238, 223, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--stone);
  background: rgba(244, 238, 223, 0.95);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--indigo);
}
.brand:hover { color: var(--indigo-700); }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--space-5);
}

.site-nav__list li {
  display: flex;
  align-items: center;
}

.site-nav__list a,
.site-nav__list .nav-link {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
}
.site-nav__list a::after,
.site-nav__list .nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s ease;
}
.site-nav__list a:hover,
.site-nav__list .nav-link:hover { color: var(--indigo); }
.site-nav__list a:hover::after,
.site-nav__list .nav-link:hover::after { transform: scaleX(1); }

.nav-link--donate {
  color: var(--indigo);
  font-weight: 500;
}
.nav-link--donate::after {
  background: var(--brass);
  transform: scaleX(1);
  height: 1.5px;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 60;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--indigo);
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 1.6px;
  background: currentColor;
  margin: 0;
  border-radius: 2px;
  transition: transform .3s ease, opacity .25s ease;
}
.nav-toggle__bar + .nav-toggle__bar { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

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

  .site-nav__list {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    height: 100vh;
    background: var(--ivory);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(76px + var(--space-5)) var(--space-5) calc(var(--space-7) + env(safe-area-inset-bottom));
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
    z-index: 45;
    pointer-events: none;
  }
  .site-nav__list.is-open {
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav__list li {
    display: block;
    border-bottom: 1px solid rgba(21, 35, 63, 0.08);
  }
  .site-nav__list li:first-child { border-top: 1px solid rgba(21, 35, 63, 0.08); }

  .site-nav__list a,
  .site-nav__list .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 60px;
    font-size: 26px;
    font-family: var(--serif);
    font-weight: 500;
    color: var(--indigo);
    padding: 14px 4px;
    text-align: left;
  }
  .site-nav__list a::after,
  .site-nav__list .nav-link::after { display: none; }

  .nav-link--donate { color: var(--brass); font-style: italic; }
}

@media (max-width: 1024px) and (max-height: 640px) {
  .site-nav__list {
    padding-top: calc(72px + var(--space-3));
    padding-bottom: var(--space-5);
  }
  .site-nav__list a,
  .site-nav__list .nav-link {
    min-height: 48px;
    font-size: 22px;
    padding: 10px 4px;
  }
}

@media (max-width: 480px) {
  .site-nav__list {
    padding-top: calc(64px + var(--space-4));
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-nav__list a,
  .site-nav__list .nav-link {
    min-height: 56px;
    font-size: 24px;
  }
}

/* ───────── CTAs ───────── */

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.cta--primary {
  background: var(--indigo);
  color: var(--ivory);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--indigo);
}
.cta--primary:hover {
  background: var(--indigo-700);
  color: var(--ivory);
  transform: translateY(-1px);
}

.cta--ghost {
  border: 1px solid var(--indigo);
  color: var(--indigo);
  padding: 10px 18px;
  border-radius: var(--radius-md);
}
.cta--ghost:hover {
  background: var(--indigo);
  color: var(--ivory);
}

.cta--text {
  color: var(--indigo);
  position: relative;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--brass);
}
.cta--text svg { transition: transform .25s ease; }
.cta--text:hover svg { transform: translateX(3px); }

button.cta { font-family: var(--sans); border: 1px solid var(--indigo); }

/* ───────── Shared typography & utility ───────── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--warm-gray);
  margin: 0 0 var(--space-5);
}
.eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brass);
  display: inline-block;
}

.kicker {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--warm-gray);
  margin: 0 0 var(--space-5);
}

.section { padding: var(--space-10) 0; }
@media (max-width: 720px) { .section { padding: var(--space-8) 0; } }

.section-head { max-width: 760px; margin: 0 0 var(--space-8); }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--indigo);
  margin: 0;
}
.section-title em { font-style: italic; color: var(--brass); }

/* ───────── Hero ───────── */

.hero {
  position: relative;
  padding: var(--space-10) 0 var(--space-9);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(176, 138, 76, 0.10), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(63, 122, 119, 0.07), transparent 50%);
  pointer-events: none;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(21, 35, 63, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent 70%);
  opacity: 0.6;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6.8vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--indigo);
  margin: 0 0 var(--space-6);
}
.hero__title em {
  font-style: italic;
  color: var(--brass);
}

.hero__lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--warm-gray);
  max-width: 640px;
  margin: 0 0 var(--space-7);
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

/* ───────── Grid for editorial sections ───────── */

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-6);
}
.col-side { grid-column: 1 / span 3; }
.col-main { grid-column: 5 / span 8; }

@media (max-width: 880px) {
  .grid-12 { display: block; }
  .col-side { margin-bottom: var(--space-4); }
}

/* ───────── Mission ───────── */

.section--mission { border-top: 1px solid var(--stone); background: var(--ivory); }

.quote-open {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 1;
  color: var(--brass);
  margin: 0 0 -40px -8px;
  opacity: 0.45;
  font-weight: 500;
}

.statement {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--indigo);
  margin: 0 0 var(--space-7);
  max-width: 32ch;
}
.statement em { font-style: italic; color: var(--brass); }

.statement__supports {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  max-width: 880px;
}
.statement__supports p { margin: 0; color: var(--warm-gray); }
@media (max-width: 720px) {
  .statement__supports { grid-template-columns: 1fr; }
}

/* ───────── Aims ───────── */

.section--aims { background: var(--sand); }

.aims-list {
  list-style: none;
  padding: 0;
  margin: var(--space-7) 0 0;
  max-width: 880px;
}
.aims-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-5);
  align-items: start;
  padding: var(--space-5) 0;
  border-top: 1px solid rgba(21, 35, 63, 0.12);
}
.aims-list li:last-child { border-bottom: 1px solid rgba(21, 35, 63, 0.12); }
.aims-list__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: var(--brass);
  line-height: 1.25;
}
.aims-list p {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.45;
  color: var(--indigo);
  letter-spacing: 0;
}
.aims-list p strong {
  font-weight: 500;
  color: var(--indigo);
  background: linear-gradient(transparent 70%, rgba(176, 138, 76, 0.22) 70%);
}

@media (max-width: 480px) {
  .aims-list li { grid-template-columns: 1fr; gap: var(--space-2); }
}

/* ───────── Pillars (six cards) ───────── */

.section--work { background: var(--ivory); border-top: 1px solid var(--stone); }

.pillars-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 980px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar {
  position: relative;
  background: var(--ivory);
  border: 1px solid rgba(21, 35, 63, 0.10);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(176, 138, 76, 0.35);
}

.pillar__num {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--brass);
  opacity: 0.7;
}

.pillar__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--brass-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}

.pillar h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--indigo);
  margin: 0;
}
.pillar p {
  margin: 0;
  color: var(--warm-gray);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ───────── Pull quote ───────── */

.pullquote {
  position: relative;
  background: var(--indigo);
  color: var(--ivory);
  padding: var(--space-10) 0;
  overflow: hidden;
}

.pullquote .container { position: relative; z-index: 2; }

.pullquote figure {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.pullquote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.35;
  color: var(--ivory);
  margin: 0 0 var(--space-6);
}
.pullquote figcaption {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--brass-soft);
}
.pullquote .rule {
  width: 32px; height: 1px;
  background: var(--brass);
  display: inline-block;
}

/* ───────── Vision ───────── */

.section--vision {
  background: var(--ivory);
  border-top: 1px solid var(--stone);
}

.vision-supports {
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
  gap: var(--space-6);
  margin-top: var(--space-2);
}
.vision-trait .kicker { color: var(--brass); margin-bottom: var(--space-2); }
.vision-trait p:last-child {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--charcoal);
}
@media (max-width: 880px) {
  .vision-supports { grid-template-columns: 1fr; }
}

/* ───────── Involve ───────── */

.section--involved { background: var(--sand); }

.involve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 880px) { .involve-grid { grid-template-columns: 1fr; } }

.involve-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border: 1px solid rgba(21, 35, 63, 0.08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.involve-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(176, 138, 76, 0.4);
}

.involve-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--brass);
  margin: 0;
}
.involve-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0;
  color: var(--indigo);
}
.involve-card p {
  margin: 0;
  color: var(--warm-gray);
  font-size: 15.5px;
  flex: 1;
}
.involve-card .cta--text { align-self: flex-start; margin-top: var(--space-2); }

/* ───────── Contact ───────── */

.section--contact { background: var(--indigo); color: var(--ivory); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: start;
}
@media (max-width: 880px) { .contact__inner { grid-template-columns: 1fr; gap: var(--space-7); } }

.section--contact .kicker { color: var(--brass-soft); }
.section--contact .section-title { color: var(--ivory); }
.section--contact .section-title em { color: var(--brass-soft); }

.contact__lede {
  color: rgba(244, 238, 223, 0.78);
  margin: var(--space-4) 0 var(--space-6);
  max-width: 46ch;
}

.contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.contact__list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact__label {
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--brass-soft);
}
.contact__list a {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ivory);
  border-bottom: 1px solid rgba(176, 138, 76, 0.5);
  padding-bottom: 2px;
  align-self: flex-start;
}
.contact__list a:hover { color: var(--brass-soft); border-color: var(--brass-soft); }

.contact__form {
  background: rgba(244, 238, 223, 0.04);
  border: 1px solid rgba(244, 238, 223, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brass-soft);
}
.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ivory);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 238, 223, 0.25);
  padding: 8px 0;
  transition: border-color .25s ease;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--brass);
}

.contact__form .cta--primary {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--indigo);
  align-self: flex-start;
  margin-top: var(--space-3);
}
.contact__form .cta--primary:hover {
  background: var(--brass-soft);
  border-color: var(--brass-soft);
}

.form-note {
  margin: 0;
  font-size: 12.5px;
  color: rgba(244, 238, 223, 0.55);
}

/* ───────── Footer ───────── */

.site-footer {
  background: var(--indigo-900);
  color: var(--ivory);
  padding: var(--space-8) 0;
  border-top: 1px solid rgba(244, 238, 223, 0.08);
}

.site-footer__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-7);
}
@media (max-width: 880px) {
  .site-footer__row {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: var(--space-5);
  }
}

.site-footer__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--ivory);
}
@media (max-width: 880px) { .site-footer__brand { align-items: center; } }

.site-footer__tag {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(244, 238, 223, 0.65);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-5);
}
.site-footer__nav a {
  color: rgba(244, 238, 223, 0.7);
  font-size: 14px;
}
.site-footer__nav a:hover { color: var(--brass-soft); }

.site-footer__legal {
  margin: 0;
  font-size: 12px;
  color: rgba(244, 238, 223, 0.5);
}

/* ───────── Reveal ───────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

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

/* ───────── Focus styles ───────── */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ───────── Donate modal ───────── */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}
.modal.is-open { display: flex; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 23, 41, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn .25s ease;
}

.modal__panel {
  position: relative;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - var(--space-7));
  overflow-y: auto;
  padding: var(--space-7);
  box-shadow: 0 30px 80px -20px rgba(14, 23, 41, 0.45);
  animation: rise .35s cubic-bezier(.2,.7,.2,1);
  border: 1px solid rgba(176, 138, 76, 0.25);
}

@media (max-width: 480px) {
  .modal { padding: var(--space-3); }
  .modal__panel { padding: var(--space-6) var(--space-5); border-radius: var(--radius-md); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

.modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(21, 35, 63, 0.15);
  background: transparent;
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.modal__close:hover {
  background: var(--indigo);
  color: var(--ivory);
  border-color: var(--indigo);
}

.modal__head { margin: 0 0 var(--space-5); padding-right: 40px; }
.modal__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 4.4vw, 32px);
  line-height: 1.2;
  color: var(--indigo);
  margin: 0 0 var(--space-3);
}
.modal__lede {
  margin: 0;
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.55;
}

.modal__notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: var(--space-4) 0 0;
  padding: 6px 12px 6px 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--indigo);
  background: rgba(176, 138, 76, 0.14);
  border: 1px solid rgba(176, 138, 76, 0.35);
  border-radius: 999px;
  letter-spacing: 0.005em;
  max-width: 100%;
}

.modal__notice-dot {
  position: relative;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass);
}
.modal__notice-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--brass);
  opacity: 0.5;
  animation: noticePulse 1.8s ease-out infinite;
}

@keyframes noticePulse {
  0%   { transform: scale(0.7); opacity: 0.55; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .modal__notice-dot::after { animation: none; opacity: 0.35; transform: none; }
}

@media (max-width: 480px) {
  .modal__notice { font-size: 12px; padding: 6px 10px 6px 9px; }
}

.modal__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.donate-block__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--brass);
  margin: 0 0 var(--space-3);
}

.donate-list {
  margin: 0;
  padding: var(--space-4) var(--space-5);
  background: rgba(231, 221, 198, 0.55);
  border: 1px solid rgba(21, 35, 63, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.donate-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(21, 35, 63, 0.08);
}
.donate-row:last-child { padding-bottom: 0; border-bottom: 0; }

.donate-row dt {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--warm-gray);
}

.donate-row dd {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  font-family: var(--serif);
  font-size: 18px;
  color: var(--indigo);
  word-break: break-all;
}

.copy-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--indigo);
  background: var(--ivory);
  border: 1px solid rgba(21, 35, 63, 0.18);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.copy-btn:hover {
  background: var(--indigo);
  color: var(--ivory);
  border-color: var(--indigo);
}
.copy-btn.is-copied {
  background: var(--brass);
  color: var(--indigo);
  border-color: var(--brass);
}

.modal__foot {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(21, 35, 63, 0.10);
}
.modal__foot p {
  margin: 0;
  font-size: 13.5px;
  color: var(--warm-gray);
  line-height: 1.55;
}
.modal__foot a { border-bottom: 1px solid var(--brass); }

/* ───────── Mobile responsive overrides ───────── */

@media (max-width: 880px) {
  .hero__seal { display: none; }
}

@media (max-width: 720px) {
  :root {
    --space-10: 88px;
    --space-9: 72px;
  }
  .hero { padding: var(--space-9) 0 var(--space-8); }
  .container { padding: 0 var(--space-5); }
  .hero__title { font-size: clamp(34px, 9vw, 48px); line-height: 1.08; }
  .hero__lede { font-size: 17px; }
  .section-title { font-size: clamp(28px, 6.8vw, 38px); }
  .statement { font-size: clamp(22px, 5.6vw, 30px); line-height: 1.3; }
  .quote-open { font-size: 80px; margin: 0 0 -28px -4px; }
  .pullquote blockquote { font-size: clamp(22px, 5.4vw, 30px); }
  .aims-list p { font-size: 18px; line-height: 1.5; }
  .pillar { padding: var(--space-6); }
  .pillar__num { top: var(--space-4); right: var(--space-4); }
  .involve-card { padding: var(--space-6); }
  .contact__form { padding: var(--space-6); }
  .section { padding: var(--space-9) 0; }
}

@media (max-width: 480px) {
  :root {
    --space-9: 56px;
    --space-8: 48px;
  }
  .container { padding: 0 20px; }
  .site-header__row { height: 64px; }
  .hero { padding: var(--space-8) 0 var(--space-7); }
  .hero__title { font-size: 34px; }
  .hero__lede { font-size: 16px; }
  .hero__ctas { gap: var(--space-4); }
  .hero__ctas .cta--primary { width: 100%; justify-content: center; }
  .section { padding: var(--space-8) 0; }
  .section-title { font-size: 28px; }
  .statement { font-size: 22px; }
  .quote-open { font-size: 64px; margin: 0 0 -20px -2px; }
  .pullquote blockquote { font-size: 22px; line-height: 1.4; }
  .pullquote { padding: var(--space-8) 0; }
  .aims-list li { padding: var(--space-4) 0; }
  .aims-list p { font-size: 17px; }
  .pillar { padding: var(--space-5); border-radius: var(--radius-md); }
  .pillar h3 { font-size: 20px; }
  .pillar p { font-size: 15px; }
  .involve-card { padding: var(--space-5); border-radius: var(--radius-md); }
  .contact__form { padding: var(--space-5); border-radius: var(--radius-md); }
  .contact__list a { font-size: 18px; word-break: break-all; }
  .modal__title { font-size: 24px; }
  .donate-row dd { font-size: 16px; flex-wrap: wrap; }
}

@media (hover: none) {
  .pillar:hover,
  .involve-card:hover,
  .focus-card:hover { transform: none; }
}
