:root {
  --ink: #292323;
  --muted: #6d6561;
  --cream: #fffaf3;
  --paper: #ffffff;
  --rose: #c75d6c;
  --rose-deep: #6f2434;
  --rose-dark: #46141f;
  --gold: #c99532;
  --gold-soft: #f3dfaf;
  --sage: #536c5b;
  --navy: #083243;
  --line: #e9ddd2;
  --shadow: 0 24px 70px rgba(74, 42, 38, .14);
  --radius-lg: 34px;
  --radius-md: 20px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 5% 5%, rgba(199, 93, 108, .09), transparent 28%),
    radial-gradient(circle at 95% 34%, rgba(201, 149, 50, .1), transparent 24%);
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -64px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  color: white;
  background: var(--rose-dark);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.announcement {
  padding: 9px 20px;
  text-align: center;
  color: white;
  background: var(--rose-dark);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(111, 36, 52, .09);
  background: rgba(255, 250, 243, .96);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  width: min(calc(100% - 40px), var(--max));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand img {
  width: 104px;
  height: 82px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand-copy { line-height: 1.1; }
.brand-copy strong {
  display: block;
  color: var(--rose-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
}
.brand-copy span {
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.desktop-nav { display: flex; align-items: center; gap: 24px; }
.desktop-nav > a:not(.button) {
  position: relative;
  color: #493f3d;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
}
.desktop-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--rose);
  transition: right .2s ease;
}
.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.desktop-nav > a[aria-current="page"]::after { right: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: white;
  background: var(--rose-deep);
  box-shadow: 0 12px 28px rgba(111, 36, 52, .24);
}
.button-primary:hover { background: var(--rose-dark); }
.button-gold { color: var(--rose-dark); background: var(--gold-soft); }
.button-ghost { color: var(--rose-deep); border-color: rgba(111, 36, 52, .25); background: rgba(255,255,255,.55); }
.button-ghost:hover { background: white; }
.button-white { color: var(--rose-deep); background: white; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose-deep);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.mobile-menu-toggle {
  width: 50px;
  height: 50px;
  padding: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(111,36,52,.18);
  border-radius: 50%;
  color: var(--rose-deep);
  background: white;
  cursor: pointer;
}
.mobile-menu-toggle span { width: 20px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s, opacity .2s; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 18px 20px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,250,243,.995);
  box-shadow: 0 26px 50px rgba(72,35,35,.18);
}
.mobile-menu nav { width: min(100%, 620px); margin: 0 auto; display: grid; gap: 4px; }
.mobile-menu nav > a:not(.button) {
  min-height: 52px;
  padding: 8px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  text-decoration: none;
}
.mobile-menu nav > a:not(.button)::after { content: "\2192"; color: var(--rose); font-family: Arial, sans-serif; }
.mobile-menu .button { margin-top: 12px; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-tint { background: #f5ece4; }
.section-dark { color: white; background: var(--rose-dark); }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark p { color: #e5cfd3; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--rose-deep);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; display: inline-block; width: 34px; height: 2px; margin: 0 11px 4px 0; background: var(--gold); }
.section-dark .eyebrow { color: var(--gold-soft); }
h1, h2, h3, h4 {
  margin-top: 0;
  color: #342828;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { margin-bottom: 24px; font-size: clamp(3.25rem, 6vw, 5.8rem); font-weight: 500; letter-spacing: -.05em; }
h2 { margin-bottom: 20px; font-size: clamp(2.35rem, 4.2vw, 4.35rem); font-weight: 500; letter-spacing: -.04em; }
h3 { margin-bottom: 12px; font-size: clamp(1.55rem, 2.5vw, 2rem); }
h4 { margin-bottom: 8px; font-size: 1.15rem; }
.lede { max-width: 740px; color: #514744; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.48; }
.muted { color: var(--muted); }
.narrow { max-width: 760px; }
.center { margin-inline: auto; text-align: center; }
.center .eyebrow::before { display: none; }

.page-hero {
  position: relative;
  width: min(calc(100% - 40px), 1280px);
  min-height: 560px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  overflow: hidden;
  border-radius: 42px;
  background: white;
  box-shadow: var(--shadow);
}
.page-hero-copy { padding: clamp(50px, 7vw, 90px); display: flex; flex-direction: column; justify-content: center; }
.page-hero-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.page-hero-actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; }
.page-hero-media { position: relative; min-height: 560px; overflow: hidden; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(38,18,19,.5), transparent 55%); }
.page-hero-media > img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.page-hero-caption { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 25px; padding-left: 18px; border-left: 3px solid var(--gold-soft); color: white; font-weight: 800; text-shadow: 0 2px 13px rgba(0,0,0,.55); }
.page-hero-solid { grid-template-columns: 1fr; min-height: 420px; color: white; background: var(--rose-dark); }
.page-hero-solid .page-hero-copy { min-height: 420px; max-width: 920px; }
.page-hero-solid h1 { color: white; }
.page-hero-solid .page-hero-copy p:not(.eyebrow) { color: #ecdadd; }

.breadcrumbs { margin: 0 0 18px; color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.breadcrumbs a { color: var(--rose-deep); }

.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(42px, 8vw, 100px); align-items: center; }
.split.reverse { grid-template-columns: 1.08fr .92fr; }
.split-media { position: relative; }
.split-media > img { width: 100%; min-height: 520px; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-media.landscape > img { min-height: 420px; aspect-ratio: 5 / 4; }
.split-copy p { color: var(--muted); }
.split-copy .lede { color: #514744; }
.split-copy .button, .split-copy .text-link { margin-top: 14px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 14px 38px rgba(61,40,36,.08);
}
.card-media { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.card-body { padding: 28px; }
.card-body p { color: var(--muted); }
.card-label { display: inline-block; margin-bottom: 12px; color: var(--rose-deep); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.card-actions { margin-top: 20px; }
.card-link { display: block; height: 100%; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.card-link:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(61,40,36,.14); }
.card-link .text-link { text-decoration: none; }

.feature-card {
  position: relative;
  min-height: 560px;
  padding: clamp(34px, 6vw, 72px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.feature-card > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.feature-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(32,14,17,.93), rgba(32,14,17,.05) 75%); }
.feature-card-content { max-width: 690px; }
.feature-card-copy { max-width: 690px; }
.feature-card h2, .feature-card h3 { color: white; }
.feature-card p { color: rgba(255,255,255,.83); }
.feature-card .text-link {
  margin-top: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  color: #fff;
  background: rgba(32,14,17,.62);
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.feature-card .text-link:hover,
.feature-card .text-link:focus-visible {
  color: var(--rose-deep);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  text-shadow: none;
  transform: translateY(-2px);
}

.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.pillar { padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.75); }
.pillar strong { display: block; margin-bottom: 6px; color: var(--rose-deep); font-family: Georgia, "Times New Roman", serif; font-size: 1.22rem; }
.pillar p { margin: 0; color: var(--muted); font-size: .9rem; }

.prose { max-width: 780px; margin-inline: auto; }
.prose h2 { margin-top: 58px; }
.prose h3 { margin-top: 38px; }
.prose p { color: #594f4c; }
.prose p:first-of-type { font-size: 1.1rem; }
.prose blockquote {
  margin: 42px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--gold);
  border-radius: 0 18px 18px 0;
  color: var(--rose-deep);
  background: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.45;
  box-shadow: 0 12px 35px rgba(61,40,36,.08);
}
.story-meta { margin-bottom: 32px; display: flex; flex-wrap: wrap; gap: 9px; }
.story-meta span { padding: 7px 12px; border-radius: 999px; color: var(--rose-deep); background: #f4e5e5; font-size: .76rem; font-weight: 800; }

.photo-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.photo-grid figure { margin: 0; overflow: hidden; border-radius: 18px; background: white; box-shadow: 0 12px 35px rgba(61,40,36,.09); }
.photo-grid figure:nth-child(6n+1), .photo-grid figure:nth-child(6n+4) { grid-column: span 7; }
.photo-grid figure:nth-child(6n+2), .photo-grid figure:nth-child(6n+3) { grid-column: span 5; }
.photo-grid figure:nth-child(6n+5), .photo-grid figure:nth-child(6n+6) { grid-column: span 6; }
.photo-grid img { width: 100%; height: 360px; object-fit: cover; }
.photo-grid > img { grid-column: span 3; border-radius: 18px; box-shadow: 0 12px 35px rgba(61,40,36,.09); }
.photo-grid figcaption { padding: 12px 16px; color: var(--muted); font-size: .78rem; }

.timeline { position: relative; display: grid; gap: 18px; }
.timeline::before { content: ""; position: absolute; left: 21px; top: 12px; bottom: 12px; width: 2px; background: var(--gold-soft); }
.timeline-item { position: relative; padding: 24px 26px 24px 66px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.timeline-item::before { content: ""; position: absolute; left: 14px; top: 28px; width: 16px; height: 16px; border: 5px solid var(--cream); border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 2px var(--gold); }
.timeline-item strong { display: block; color: var(--rose-deep); font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; }
.timeline-item p { margin: 5px 0 0; color: var(--muted); }

.leadership-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.leader { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.leader strong { display: block; color: var(--rose-deep); font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; }
.leader span { color: var(--muted); font-size: .83rem; }

.donation-choices { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.donation-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.donation-card { padding: clamp(30px,5vw,52px); border-radius: 28px; background: white; box-shadow: var(--shadow); }
.donation-card.monthly { color: white; background: var(--rose-deep); }
.donation-card.featured { color: white; background: var(--rose-deep); }
.donation-card.monthly h3 { color: white; }
.donation-card.featured h3 { color: white; }
.donation-card.monthly p { color: #e9d7da; }
.donation-card.featured p, .donation-card.featured li { color: #e9d7da; }
.donation-card .amount-note { color: var(--muted); font-size: .8rem; }
.donation-card.monthly .amount-note { color: #d9bdc2; }

.faq { display: grid; gap: 12px; }
.faq-list { display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: 16px; background: white; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: white; }
.faq summary { padding: 20px 24px; color: var(--rose-deep); font-weight: 900; cursor: pointer; }
.faq-list summary { padding: 20px 24px; color: var(--rose-deep); font-weight: 900; cursor: pointer; }
.faq details p { margin: 0; padding: 0 24px 22px; color: var(--muted); }
.faq-list details p { margin: 0; padding: 0 24px 22px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
.contact-panel { padding: clamp(28px,5vw,50px); border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: 0 14px 42px rgba(61,40,36,.08); }
.contact-card { padding: clamp(28px,5vw,50px); border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: 0 14px 42px rgba(61,40,36,.08); }
.contact-card address { color: var(--muted); font-style: normal; line-height: 1.75; }
.contact-list { display: grid; gap: 12px; }
.contact-list a, .contact-list address { padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; color: var(--rose-deep); background: var(--cream); font-style: normal; font-weight: 800; text-decoration: none; }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(52px,8vw,92px);
  border-radius: var(--radius-lg);
  color: white;
  background: var(--rose-dark);
}
.cta-band::after { content: ""; position: absolute; right: -140px; bottom: -180px; width: 360px; height: 360px; border: 1px solid rgba(244,223,174,.24); border-radius: 50%; }
.cta-band h2 { max-width: 760px; color: white; }
.cta-band p { max-width: 680px; color: #e5cfd3; }
.cta-actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }

.partner-lockup { display: flex; align-items: center; gap: 22px; }
.partner-lockup img { width: 120px; height: 120px; object-fit: contain; border-radius: 50%; background: white; }

.social-rail {
  position: fixed;
  z-index: 88;
  top: 50%;
  right: 18px;
  padding: 7px;
  display: grid;
  gap: 7px;
  border: 1px solid rgba(111,36,52,.12);
  border-radius: 999px;
  background: rgba(255,250,243,.93);
  box-shadow: 0 16px 42px rgba(65,30,36,.2);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
}
.social-link { position: relative; width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--rose-deep); background: white; font-weight: 900; text-decoration: none; transition: color .2s, background .2s, transform .2s; }
.social-link:hover { color: white; background: var(--rose-deep); transform: translateX(-3px); }
.social-link::before { content: attr(data-label); position: absolute; right: calc(100% + 10px); top: 50%; padding: 6px 9px; border-radius: 7px; color: white; background: var(--rose-dark); font-size: .7rem; opacity: 0; transform: translate(6px,-50%); transition: opacity .2s, transform .2s; pointer-events: none; }
.social-link:hover::before, .social-link:focus-visible::before { opacity: 1; transform: translate(0,-50%); }

.mobile-donate { position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 90; display: none; min-height: 56px; color: white; background: var(--rose-deep); box-shadow: 0 16px 40px rgba(43,18,24,.34); }

footer { padding: 50px 20px 82px; color: #d8c6c8; background: #2d171b; font-size: .84rem; }
.footer-inner { width: min(100%, var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr; gap: 46px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 92px; height: 78px; object-fit: contain; border-radius: 12px; background: white; }
footer strong { display: block; margin-bottom: 6px; color: white; }
footer a { color: var(--gold-soft); }
.footer-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 7px 24px; align-content: start; }
.footer-links a { text-decoration: none; }
.footer-meta { width: min(100%, var(--max)); margin: 36px auto 0; padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; border-top: 1px solid rgba(255,255,255,.12); }
.ein { white-space: nowrap; font-weight: 900; }

@media (max-width: 1060px) {
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
  .page-hero, .split, .split.reverse, .contact-grid { grid-template-columns: 1fr; }
  .page-hero-media, .page-hero-media > img { min-height: 520px; }
  .cards { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .announcement { font-size: .64rem; }
  .nav-wrap { width: calc(100% - 28px); min-height: 74px; }
  .brand img { width: 62px; height: 56px; }
  .brand-copy strong { font-size: .92rem; }
  .brand-copy span { display: none; }
  .container { width: calc(100% - 32px); }
  .section { padding: 78px 0; }
  .section-sm { padding: 54px 0; }
  .page-hero { width: calc(100% - 20px); margin-top: 10px; border-radius: 28px; }
  .page-hero-copy { padding: 52px 24px 44px; }
  .page-hero-media, .page-hero-media > img { min-height: 450px; }
  .page-hero-actions, .cta-actions { display: grid; }
  .page-hero-actions .button, .cta-actions .button { width: 100%; }
  .cards, .cards.two, .pillars, .leadership-grid, .donation-choices, .donation-grid { grid-template-columns: 1fr; }
  .split-media > img { min-height: 410px; }
  .feature-card { min-height: 520px; padding: 30px 24px; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid figure:nth-child(n) { grid-column: auto; }
  .photo-grid > img { grid-column: auto; }
  .photo-grid img { height: 300px; }
  .partner-lockup { align-items: flex-start; }
  .partner-lockup img { width: 86px; height: 86px; }
  .social-rail { top: auto; right: 14px; bottom: 82px; padding: 5px; display: flex; transform: none; }
  .social-link { width: 41px; height: 41px; }
  .social-link::before { display: none; }
  .mobile-donate { display: inline-flex; }
  footer { padding-bottom: 104px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

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