:root {
  --cream: #f8f3ea;
  --cream-2: #efe5d5;
  --navy-deep: #091431;
  --gold-bright: #f0c83d;
  --rust-bright: #c65c35;
  --shadow-soft: 0 22px 70px rgba(9, 20, 49, .1);
  --shadow-deep: 0 30px 90px rgba(3, 8, 24, .3);
  --ease-out: cubic-bezier(.2, .72, .22, 1);
}

html {
  color-scheme: light;
  scroll-padding-top: 82px;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: clip;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

::selection { color: var(--navy); background: var(--gold); }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

:where(main > section[id], .welcome-ribbon) { scroll-margin-top: 80px; }
h1, h2, blockquote { text-wrap: balance; }
p { text-wrap: pretty; }

.site-header {
  transform: translateY(0);
  transition: color .25s, background .25s, box-shadow .25s, transform .38s var(--ease-out);
}

.site-header.header-hidden { transform: translateY(calc(-100% - 8px)); }

.site-header.scrolled {
  border-bottom: 1px solid rgba(13, 24, 61, .08);
  background: rgba(252, 250, 246, .91);
  box-shadow: 0 12px 40px rgba(9, 20, 49, .1);
}

.brand img { box-shadow: 0 0 0 1px rgba(13, 24, 61, .08), 0 8px 22px rgba(13, 24, 61, .11); }

.nav-menu { gap: 19px; }
.nav-menu a { position: relative; font-weight: 600; letter-spacing: -.01em; }
.nav-menu a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transform: translateY(-50%) scale(0);
  transition: opacity .2s, transform .2s;
}

.nav-menu a.active::before { opacity: 1; transform: translateY(-50%) scale(1); }
.nav-actions .gold { box-shadow: 0 8px 24px rgba(224, 179, 41, .26); }

.pill,
.donate-main,
.outline-pill {
  transition: transform .22s var(--ease-out), box-shadow .22s, background .22s, color .22s;
}

.pill:hover,
.donate-main:hover,
.outline-pill:hover { transform: translateY(-2px); }

.pill.gold:hover,
.donate-main:hover { box-shadow: 0 13px 34px rgba(224, 179, 41, .3); }

.hero { isolation: isolate; }

.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 42%, rgba(224, 179, 41, .13), transparent 23%),
    linear-gradient(115deg, transparent 0 72%, rgba(255, 255, 255, .055) 72% 72.08%, transparent 72.08%);
}

.hero-slide.active { animation: heroImageDrift 8s ease-out both; }

@keyframes heroImageDrift {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 9, 27, .82) 0%, rgba(6, 12, 32, .55) 48%, rgba(6, 10, 28, .26) 76%),
    linear-gradient(0deg, rgba(3, 7, 22, .72), transparent 58%);
}

.hero-inner { z-index: 3; }
.hero-copy { position: relative; }

.hero-copy::after {
  content: "";
  position: absolute;
  top: 68px;
  left: -34px;
  width: 1px;
  height: 190px;
  background: linear-gradient(var(--gold), rgba(224, 179, 41, 0));
}

.hero h1 { max-width: 760px; }
.hero-copy > p:not(.country-badge) { color: rgba(255, 255, 255, .9); }

.country-badge {
  background: rgba(6, 13, 34, .34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.hero-stats div {
  min-width: 105px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 11px;
  background: rgba(5, 11, 30, .2);
  backdrop-filter: blur(7px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 21px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .76);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-proof span { position: relative; }
.hero-proof span + span::before { content: ""; position: absolute; top: 50%; left: -12px; width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

.hero-emblem {
  box-shadow: 0 40px 100px rgba(0, 0, 0, .3), inset 0 0 55px rgba(224, 179, 41, .08);
}

.orbit { animation: haloBreathe 4.5s ease-in-out infinite; }

@keyframes haloBreathe {
  50% { box-shadow: 0 0 0 18px rgba(15, 26, 62, .19), 0 0 45px rgba(224, 179, 41, .13); }
}

.hero-slide-dots {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(4, 9, 26, .34);
  backdrop-filter: blur(9px);
}

.welcome-ribbon {
  position: relative;
  overflow: hidden;
  padding: 105px 0 92px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(224, 179, 41, .18), transparent 25%),
    radial-gradient(circle at 8% 88%, rgba(177, 77, 44, .17), transparent 25%),
    var(--navy-deep);
}

.welcome-ribbon::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(224, 179, 41, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 62px rgba(224, 179, 41, .025), 0 0 0 124px rgba(224, 179, 41, .018);
}

.welcome-ribbon-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px 80px;
  align-items: end;
}

.welcome-heading h2 { max-width: 720px; font-size: clamp(2.8rem, 5vw, 5rem); }
.welcome-copy { padding-bottom: 8px; }
.welcome-copy p { color: #c9d0df; font-size: 1rem; }
.welcome-copy a { display: inline-flex; gap: 12px; align-items: center; color: var(--gold); font-weight: 800; text-decoration: none; }
.welcome-copy a span { transition: transform .2s; }
.welcome-copy a:hover span { transform: translateX(5px); }

.welcome-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.welcome-facts article { position: relative; display: grid; gap: 3px; padding: 25px 30px; }
.welcome-facts article + article { border-left: 1px solid rgba(255, 255, 255, .16); }
.welcome-facts span { color: var(--gold); font-size: .57rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.welcome-facts strong { font: 500 1.35rem var(--display); }
.welcome-facts small { color: #aeb8cd; font-size: .67rem; }

.story > .narrow { padding-top: 118px; }
.story .lead { color: #4e586e; font-size: 1.08rem; }

.purpose-grid article {
  min-height: 210px;
  padding: 30px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff, #f9f5ee);
  box-shadow: var(--shadow-soft);
}

.purpose-grid article:nth-child(2) { transform: translateY(20px); }
.purpose-grid article:nth-child(2):hover { transform: translateY(16px); }
.purpose-grid h3 { margin-top: 24px; font-size: 1.18rem; }

.history-card { border-color: rgba(13, 24, 61, .13); box-shadow: 0 13px 35px rgba(9, 20, 49, .065); }
.history-dot { border-width: 5px; }

.motto blockquote { color: #fff; text-shadow: 0 10px 38px rgba(0, 0, 0, .18); }
.mission-grid article { background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)); }

.portrait-track figure::after { background: linear-gradient(0deg, rgba(4, 9, 27, .9), transparent 58%); }
.portrait-track img { filter: saturate(.93) contrast(1.03); }

.legacy { background-image: radial-gradient(circle at 50% 0, rgba(224, 179, 41, .12), transparent 34%); }
.legacy h2 { text-shadow: 0 18px 45px rgba(0, 0, 0, .15); }
.donation-box { border-color: rgba(255, 255, 255, .24); }
.donate-main { min-height: 50px; text-align: center; }

.gallery-heading h2 { max-width: 700px; }
.gallery-card { box-shadow: 0 22px 50px rgba(0, 0, 0, .19); }
.gallery-filters button { min-height: 39px; }

.ceana-countdown-layout { position: relative; }
.ceana-timer-card { border-color: rgba(224, 179, 41, .35); }
.ceana-timer > div { position: relative; }
.ceana-timer > div + div::before { content: ""; position: absolute; top: 20%; bottom: 20%; left: 0; width: 1px; background: rgba(255, 255, 255, .13); }

.affiliation-stats > div { background: linear-gradient(145deg, #fff, #faf6ef); box-shadow: 0 15px 40px rgba(9, 20, 49, .06); }
.affiliation-stats strong { color: var(--navy); }
.program-grid article { min-height: 175px; }

.belong { position: relative; overflow: hidden; }
.belong::before { content: ""; position: absolute; top: 80px; right: -220px; width: 480px; height: 480px; border: 1px solid rgba(177, 77, 44, .08); border-radius: 50%; }
.belong > .shell { position: relative; }

.board-grid article:not(.board-card-photo) { min-height: 160px; display: flex; flex-direction: column; justify-content: center; }
.board-grid .board-card-photo { box-shadow: 0 26px 60px rgba(9, 20, 49, .18); }
.board-grid .board-card-profile { min-height: 230px; }
.board-profile-photo {
  width: 98px;
  aspect-ratio: 4 / 5;
  margin: 0 auto 15px;
  overflow: hidden;
  border: 2px solid var(--gold);
  border-radius: 48px 48px 14px 14px;
  background: var(--navy-deep);
  box-shadow: 0 13px 30px rgba(0, 0, 0, .25);
}
.board-profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform .45s var(--ease-out); }
.board-card-profile:hover .board-profile-photo img { transform: scale(1.035); }
.board-card-treasurer .board-profile-photo { background: #fff; }
.board-card-treasurer .board-profile-photo img { object-fit: contain; object-position: center; transform: scale(1); transform-origin: center center; }
.board-card-treasurer:hover .board-profile-photo img { transform: scale(1.02); }
.board-grid .board-card-president {
  background: var(--navy);
  color: #fff;
}
.board-grid .board-card-president span { color: var(--gold); }
.board-grid .board-card-treasurer {
  background: #fff;
  color: var(--navy);
}
.board-grid .board-card-treasurer span { color: var(--rust); }

.questions details { border: 1px solid transparent; }
.questions details[open] { border-color: rgba(177, 77, 44, .15); box-shadow: 0 12px 30px rgba(70, 46, 25, .055); }
.questions summary { align-items: center; gap: 18px; }
.questions summary::after { display: grid; place-content: center; flex: 0 0 28px; width: 28px; height: 28px; border: 1px solid rgba(177, 77, 44, .28); border-radius: 50%; }

.about::before { display: none; }
.about .about-grid { display: block; width: min(760px, calc(100% - 42px)); }
.about-grid > div:first-child { position: relative; z-index: 2; }
.about-copy { max-width: 620px; }
.about-copy h2 { margin: 0 0 25px; color: var(--gold); font-size: clamp(3.7rem, 7vw, 5.7rem); line-height: .98; }
.about-copy > p:not(.overline) { color: #fff; font-size: 1rem; line-height: 1.62; }
.about-copy .tags { margin-top: 28px; }
.contact-grid > div:first-child { padding-top: 12px; }
.contact form { backdrop-filter: blur(9px); }

.site-tool { transition: transform .2s, border-color .2s, background .2s, box-shadow .2s; }
.site-tool:hover { transform: translateX(-4px); box-shadow: 0 12px 30px rgba(5, 10, 30, .16); }

.footer { background: var(--navy-deep); }

/* Donor-centered Legacy Fund */
.legacy {
  --legacy-bg: #174d47;
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(224, 179, 41, .18), transparent 26%),
    radial-gradient(circle at 86% 76%, rgba(255, 255, 255, .07), transparent 28%),
    var(--legacy-bg);
  transition: background .45s, color .45s;
}

.legacy::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 50%;
  box-shadow: 0 0 0 68px rgba(255, 255, 255, .025), 0 0 0 136px rgba(255, 255, 255, .014);
  pointer-events: none;
}

.legacy-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .88fr);
  gap: clamp(48px, 6vw, 82px);
  align-items: start;
  padding-top: clamp(82px, 9vw, 120px);
  padding-bottom: clamp(82px, 9vw, 120px);
}

.legacy-story h2 {
  max-width: 650px;
  margin: 0 0 26px;
  color: #fff;
  font-size: clamp(3.4rem, 5.7vw, 5.8rem);
  line-height: .96;
  letter-spacing: -.05em;
  text-shadow: 0 22px 55px rgba(0, 0, 0, .18);
}

.legacy-story h2 em { color: var(--gold); }

.legacy-lead {
  max-width: 610px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.04rem;
  line-height: 1.78;
}

.legacy-photo {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 170px 18px 18px 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
  isolation: isolate;
}

.legacy-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(4, 9, 27, .91), transparent 60%);
}

.legacy-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.94) contrast(1.04);
  transition: transform 1s var(--ease-out);
}

.legacy-photo:hover img { transform: scale(1.025); }

.legacy-photo figcaption {
  position: absolute;
  right: 30px;
  bottom: 27px;
  left: 30px;
  z-index: 2;
  display: grid;
  gap: 5px;
}

.legacy-photo figcaption span {
  color: var(--gold);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.legacy-photo figcaption b { font: 500 clamp(1.3rem, 2.3vw, 2rem) var(--display); }

.legacy-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  background: rgba(7, 16, 38, .16);
  backdrop-filter: blur(9px);
}

.legacy-proof div { padding: 21px 18px; text-align: center; }
.legacy-proof div + div { border-left: 1px solid rgba(255, 255, 255, .14); }
.legacy-proof strong { display: block; color: var(--gold); font: 500 1.75rem var(--display); }
.legacy-proof span { display: block; margin-top: 3px; color: rgba(255, 255, 255, .64); font-size: .62rem; }

.legacy-giving { display: grid; gap: 18px; padding-top: 9px; }

.legacy-builder-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 26px;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 22px;
  color: var(--navy-deep);
  background: linear-gradient(145deg, #f5d66d, var(--gold));
  box-shadow: 0 28px 70px rgba(3, 9, 28, .28);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}

.legacy-builder-card:hover { transform: translateY(-4px); box-shadow: 0 34px 80px rgba(3, 9, 28, .34); }

.legacy-builder-card > div:first-child {
  display: grid;
  place-content: center;
  min-height: 126px;
  border: 1px solid rgba(13, 24, 61, .22);
  border-radius: 14px;
  text-align: center;
}

.legacy-builder-card > div:first-child span { font-size: .52rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.legacy-builder-card > div:first-child strong { font: 600 2.45rem var(--display); }
.legacy-builder-card .overline { margin-bottom: 10px; color: var(--rust) !important; }
.legacy-builder-card h3 { font-size: 1.42rem; line-height: 1.1; }
.legacy-builder-card p:not(.overline) { margin: 12px 0 15px; font-size: .74rem; line-height: 1.55; }

.legacy-builder-select {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 0;
  border: 0;
  color: var(--navy-deep);
  background: transparent;
  font: 800 .72rem var(--body);
  cursor: pointer;
}

.legacy-builder-select b { transition: transform .2s; }
.legacy-builder-select:hover b { transform: translateX(4px); }

.legacy .donation-box {
  max-width: none;
  margin: 0;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(150deg, rgba(6, 14, 40, .83), rgba(13, 26, 59, .68));
  box-shadow: 0 30px 75px rgba(3, 9, 28, .28), inset 0 1px 0 rgba(255, 255, 255, .08);
  text-align: center;
  backdrop-filter: blur(15px);
}

.donation-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 17px; }
.donation-heading > span { font: 500 1.08rem var(--display); }
.donation-heading > small { color: rgba(255, 255, 255, .53); font-size: .61rem; }
.legacy .donation-amount strong { font-size: clamp(4.3rem, 7vw, 5.6rem); line-height: 1; }
.legacy .donation-amount span { margin-top: 12px; }

.legacy .impact-label {
  margin-top: 7px;
  border-color: rgba(224, 179, 41, .54);
  color: var(--gold);
  background: rgba(224, 179, 41, .08);
  letter-spacing: .04em;
}

.legacy .donation-box > p { min-height: 48px; margin: 18px auto 21px; color: rgba(255, 255, 255, .73); font-size: .78rem; line-height: 1.55; }

.legacy .donation-box input[type="range"] {
  height: 24px;
  margin: 2px 0 6px;
  accent-color: var(--gold);
  cursor: pointer;
}

.legacy .amount-buttons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin-top: 5px;
}

.legacy .amount-buttons button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  color: rgba(255, 255, 255, .68);
  background: rgba(255, 255, 255, .045);
  font-size: .66rem;
  font-weight: 750;
  text-decoration: none;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}

.legacy .amount-buttons button:hover { transform: translateY(-2px); border-color: rgba(224, 179, 41, .56); color: #fff; }
.legacy .amount-buttons button.active { border-color: var(--gold); color: var(--navy-deep); background: var(--gold); text-decoration: none; }
.legacy .frequency { margin: 24px 0 20px; }
.legacy .frequency button { background: rgba(255, 255, 255, .28); outline-offset: 4px; }

.legacy .donate-main {
  max-width: none;
  min-height: 56px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: linear-gradient(135deg, #f0c743, var(--gold));
  box-shadow: 0 15px 35px rgba(224, 179, 41, .2);
  font-size: .9rem;
  transition: transform .25s, box-shadow .25s, filter .25s;
}

.legacy .donate-main:hover { transform: translateY(-2px); box-shadow: 0 19px 42px rgba(224, 179, 41, .28); filter: brightness(1.045); }
.legacy .donate-main b { margin-left: 6px; }

.giving-trust {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  text-align: left;
}

.giving-trust span { position: relative; padding-left: 19px; color: rgba(255, 255, 255, .68); font-size: .63rem; }
.giving-trust span::before { content: ""; position: absolute; top: .48em; left: 2px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(224, 179, 41, .1); }

.giving-question { display: block; margin-top: 16px; color: rgba(255, 255, 255, .55) !important; font-size: .62rem !important; }
.giving-question a { color: var(--gold); text-underline-offset: 3px; }
.legacy-builder-active .legacy-builder-card { box-shadow: 0 0 0 2px #fff, 0 34px 85px rgba(3, 9, 28, .38); }

/* Monthly gathering spotlight */
.gathering-feature {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(224, 179, 41, .14), transparent 30%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 70%);
}

.gathering-feature::before {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -240px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 255, 255, .025), 0 0 0 144px rgba(255, 255, 255, .018);
  pointer-events: none;
}

.gathering-feature-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(48px, 7vw, 84px);
  align-items: center;
  padding-top: clamp(76px, 9vw, 118px);
  padding-bottom: clamp(76px, 9vw, 118px);
}

.gathering-photo {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px 190px 18px 18px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .32);
  isolation: isolate;
}

.gathering-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(4, 9, 27, .9), transparent 48%);
  pointer-events: none;
}

.gathering-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.04);
  transition: transform 1s var(--ease-out), filter .7s;
}

.gathering-photo:hover img { transform: scale(1.025); filter: saturate(1) contrast(1.04); }

.gathering-photo figcaption {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.gathering-photo figcaption span {
  color: var(--gold);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.gathering-photo figcaption b {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  font-weight: 500;
}

.gathering-content { position: relative; z-index: 2; }
.gathering-content > .overline { margin-bottom: 27px; }

.gathering-content h2 {
  max-width: 520px;
  margin: 30px 0 22px;
  color: #fff;
  font-size: clamp(3.1rem, 5.5vw, 5.25rem);
  line-height: .96;
  letter-spacing: -.045em;
}

.gathering-content h2 em { color: var(--gold); font-weight: inherit; }

.gathering-content > p:not(.overline) {
  max-width: 540px;
  color: rgba(255, 255, 255, .78);
  font-size: 1rem;
  line-height: 1.78;
}

.next-gathering-date {
  display: flex;
  gap: 24px;
  align-items: center;
  width: fit-content;
  padding: 11px 22px 11px 11px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.next-gathering-date > span {
  order: 2;
  max-width: 105px;
  color: rgba(255, 255, 255, .68);
  font-size: .67rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.next-gathering-date time {
  display: grid;
  grid-template-columns: auto auto;
  place-content: center;
  width: 116px;
  min-height: 112px;
  padding: 13px;
  border-radius: 11px;
  color: var(--navy-deep);
  background: var(--gold);
  text-align: center;
}

.next-gathering-date time b,
.next-gathering-date time small {
  grid-column: 1 / -1;
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.next-gathering-date time strong {
  grid-column: 1 / -1;
  margin: 2px 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
}

.gathering-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.gathering-actions .pill { min-height: 51px; }
.gathering-actions .pill b { margin-left: 6px; font-size: 1rem; }

.gathering-note {
  display: block;
  max-width: 470px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .52);
  font-size: .7rem;
  line-height: 1.55;
}

@supports (content-visibility: auto) {
  .affiliation,
  .belong,
  .gathering-feature,
  .leadership,
  .faq,
  .about,
  .contact { content-visibility: auto; contain-intrinsic-size: 900px; }
}

.site-ready .hero-copy { animation: heroCopyIn .95s var(--ease-out) both; }
.site-ready .hero-emblem { animation: heroEmblemIn 1.1s .18s var(--ease-out) both; }

@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(24px); }
}

@keyframes heroEmblemIn {
  from { opacity: 0; transform: translateX(35px) scale(.94); }
}

.welcome-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s, transform .7s var(--ease-out);
}

.welcome-reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .nav-menu { gap: 14px; }
  .nav-menu a { font-size: .68rem; }
  .nav { gap: 22px; }
}

@media (max-width: 900px) {
  .site-header.header-hidden { transform: none; }
  .nav-menu { gap: 0; }
  .nav-menu a { font-size: 1.45rem; }
  .nav-menu a::before { display: none; }
  .hero-copy::after { display: none; }
  .welcome-ribbon-inner { grid-template-columns: 1fr; gap: 28px; }
  .welcome-copy { max-width: 660px; }
  .welcome-facts { margin-top: 15px; }
  .purpose-grid article:nth-child(2),
  .purpose-grid article:nth-child(2):hover { transform: none; }
  .legacy-stage { grid-template-columns: 1fr; }
  .legacy-story { max-width: 760px; }
  .legacy-photo { min-height: 520px; }
  .legacy-giving { grid-template-columns: minmax(0, .82fr) minmax(360px, 1.18fr); align-items: start; }
  .legacy-builder-card { grid-template-columns: 1fr; }
  .legacy-builder-card > div:first-child { min-height: 104px; }
  .gathering-feature-inner { grid-template-columns: 1fr; gap: 48px; }
  .gathering-photo { min-height: 520px; border-radius: 16px 150px 16px 16px; }
  .gathering-content { max-width: 680px; }
}

@media (max-width: 620px) {
  .hero-proof { gap: 7px 17px; max-width: 320px; }
  .hero-proof span { font-size: .54rem; }
  .hero-stats div { padding: 10px 8px; }
  .welcome-ribbon { padding: 78px 0 70px; }
  .welcome-ribbon-inner { gap: 24px; }
  .welcome-heading h2 { font-size: clamp(2.45rem, 11vw, 3.35rem); }
  .welcome-copy p { font-size: .92rem; }
  .welcome-facts { grid-template-columns: 1fr; }
  .welcome-facts article { padding: 20px 0; }
  .welcome-facts article + article { border-top: 1px solid rgba(255, 255, 255, .16); border-left: 0; }
  .purpose-grid article { min-height: 0; padding: 25px; }
  .site-tool:hover { transform: none; }
  .legacy-stage { gap: 42px; padding-top: 70px; padding-bottom: 76px; }
  .legacy-story h2 { font-size: clamp(3rem, 14vw, 4.35rem); }
  .legacy-photo { min-height: 420px; border-radius: 105px 14px 14px 14px; }
  .legacy-proof div { padding: 18px 8px; }
  .legacy-proof strong { font-size: 1.45rem; }
  .legacy-proof span { font-size: .54rem; }
  .legacy-giving { grid-template-columns: 1fr; }
  .legacy-builder-card { grid-template-columns: 96px 1fr; gap: 18px; padding: 23px; }
  .legacy-builder-card > div:first-child { min-height: 116px; }
  .legacy-builder-card > div:first-child strong { font-size: 2rem; }
  .legacy-builder-card h3 { font-size: 1.17rem; }
  .legacy .donation-box { padding: 27px 19px; }
  .donation-heading { align-items: flex-start; }
  .donation-heading > small { max-width: 90px; text-align: right; }
  .legacy .amount-buttons { gap: 4px; }
  .legacy .amount-buttons button { min-height: 36px; padding: 3px; font-size: .6rem; }
  .gathering-feature-inner { gap: 36px; padding-top: 66px; padding-bottom: 70px; }
  .gathering-photo { min-height: 430px; border-radius: 14px 100px 14px 14px; }
  .gathering-photo figcaption { right: 24px; bottom: 24px; left: 24px; }
  .gathering-content h2 { margin-top: 27px; font-size: clamp(2.8rem, 14vw, 4rem); }
  .next-gathering-date { width: 100%; justify-content: flex-start; }
  .next-gathering-date > span { max-width: 125px; }
  .gathering-actions { display: grid; }
  .gathering-actions .pill { justify-content: center; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.active,
  .orbit,
  .site-ready .hero-copy,
  .site-ready .hero-emblem { animation: none; }
  .welcome-reveal { opacity: 1; transform: none; }
  .legacy-photo img,
  .legacy-builder-card { transition: none; }
  .gathering-photo img { transition: none; }
}

@media (forced-colors: active) {
  .hero-shade { background: rgba(0, 0, 0, .65); }
  .hero-stats div,
  .welcome-facts,
  .welcome-facts article + article { border-color: CanvasText; }
}

@media print {
  .site-header,
  .site-tools,
  .mobile-dock,
  .back-top,
  .hero-slide-dots,
  .scroll-cue { display: none !important; }
  .hero { min-height: 600px; height: auto; }
  .reveal-item,
  .welcome-reveal { opacity: 1 !important; transform: none !important; }
}
