:root {
  --bg: #080808;
  --bg-2: #10100f;
  --panel: rgba(18, 18, 16, 0.94);
  --text: #f5f1e8;
  --muted: #c9c0ae;
  --soft: #8c8579;
  --line: rgba(185, 154, 91, 0.34);
  --gold: #b99a5b;
  --gold-2: #ddc987;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.08), transparent 34rem),
    linear-gradient(180deg, #151513 0%, #090908 64%, #050505 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.06) 49%, transparent 52% 100%),
    repeating-radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--gold-2);
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--gold-2);
  color: #12110d;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(190px, 230px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.25rem);
  min-height: 150px;
  padding: 1.55rem clamp(1.4rem, 2.45vw, 2.4rem);
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.98), rgba(8, 8, 8, 0.97)),
    radial-gradient(circle at 12% 0, rgba(185, 154, 91, 0.12), transparent 24rem);
  border-bottom: 1px solid rgba(185, 154, 91, 0.32);
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  width: min(220px, 22vw);
  min-width: 185px;
}

.brand-frame {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.42));
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2.55vw, 2.65rem);
  min-width: 0;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(0.7rem, 0.82vw, 0.9rem);
  color: rgba(245, 241, 232, 0.85);
}

.primary-nav a {
  position: relative;
  padding: 0.9rem 0;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.2em;
  bottom: 0.22rem;
  height: 1px;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.primary-nav a[aria-current="page"] {
  color: var(--gold-2);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid rgba(221, 201, 135, 0.6);
  padding: 0.9rem 1.55rem;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--gold-2);
  background: rgba(185, 154, 91, 0.045);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-cta {
  min-width: 256px;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: rgba(185, 154, 91, 0.14);
  border-color: rgba(221, 201, 135, 0.9);
  color: #f7eed1;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(221, 201, 135, 0.55);
  border-radius: 4px;
  background: rgba(18, 15, 9, 0.96);
  color: var(--gold-2);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(6px);
}

.site-header.is-nav-open .nav-toggle span {
  background: transparent;
}

.site-header.is-nav-open .nav-toggle span::before {
  transform: translateY(1px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle span::after {
  transform: translateY(0) rotate(-45deg);
}

.homepage-mockup {
  position: relative;
  display: block;
  overflow: hidden;
  background: #050505;
}

.homepage-mockup-image {
  width: 100%;
  height: auto;
}

.mockup-hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hotspot {
  position: absolute;
  display: block;
  border-radius: 2px;
}

.hotspot:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
  background: rgba(221, 201, 135, 0.08);
}

.hotspot-logo {
  left: 2.2%;
  top: 3.1%;
  width: 14.5%;
  height: 9.4%;
}

.hotspot-home {
  left: 23.1%;
  top: 5.6%;
  width: 4%;
  height: 4.5%;
}

.hotspot-about {
  left: 29.2%;
  top: 5.6%;
  width: 4.7%;
  height: 4.5%;
}

.hotspot-mission {
  left: 36.1%;
  top: 5.6%;
  width: 8.8%;
  height: 4.5%;
}

.hotspot-initiatives {
  left: 47.1%;
  top: 5.6%;
  width: 7.9%;
  height: 4.5%;
}

.hotspot-impact {
  left: 56.7%;
  top: 5.6%;
  width: 5.2%;
  height: 4.5%;
}

.hotspot-news {
  left: 64.1%;
  top: 5.6%;
  width: 4.4%;
  height: 4.5%;
}

.hotspot-contact {
  left: 70.1%;
  top: 5.6%;
  width: 6.2%;
  height: 4.5%;
}

.hotspot-support {
  left: 79.7%;
  top: 5%;
  width: 16.9%;
  height: 5.6%;
}

.mockup-anchor {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
}

.mission-anchor {
  top: 76%;
}

.home-page .site-header,
.hero-fallback,
.mission-fallback {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(640px, calc(100vh - 112px), 860px);
  overflow: hidden;
  isolation: isolate;
  padding: 6rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.1) 0%, rgba(8, 8, 7, 0.36) 74%, rgba(4, 4, 4, 0.88) 100%),
    url("/assets/design/premium-architecture-background.png") center top / cover no-repeat,
    linear-gradient(90deg, #070706, #151513 18%, #171715 50%, #11110f 82%, #050505);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: 0.32;
  background:
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.035) 43px 44px, transparent 45px 86px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 30%);
  mask-image: radial-gradient(ellipse at center, transparent 0 37%, #000 67%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), transparent 22%, transparent 76%, rgba(0, 0, 0, 0.88)),
    radial-gradient(ellipse at 50% 74%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.78) 71%);
}

.hero-pillars {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -3;
  width: min(19vw, 290px);
  opacity: 0.42;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.045), transparent),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0 12px, rgba(255, 255, 255, 0.06) 14px 18px, rgba(0, 0, 0, 0.45) 20px 34px),
    linear-gradient(180deg, transparent 0 22%, #0c0c0b 23% 86%, #050505 100%);
  filter: drop-shadow(0 45px 55px rgba(0, 0, 0, 0.75));
}

.hero-pillars-left {
  left: 0;
}

.hero-pillars-right {
  right: 0;
  transform: scaleX(-1);
}

.hero-content {
  width: min(960px, 94vw);
  text-align: center;
}

.hero-wordmark {
  width: min(500px, 76vw);
  margin: 0 auto 1.4rem;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
}

.ornament {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: min(370px, 64vw);
  margin: 1rem auto 1.45rem;
  opacity: 0.9;
}

.ornament span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(221, 201, 135, 0.62));
}

.ornament span:last-child {
  background: linear-gradient(90deg, rgba(221, 201, 135, 0.62), transparent);
}

.ornament i {
  width: 9px;
  height: 9px;
  background: var(--gold-2);
  transform: rotate(45deg);
  box-shadow: 0 0 30px rgba(221, 201, 135, 0.45);
}

.hero-kicker,
.eyebrow {
  margin: 0 0 0.9rem;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-2);
  font-size: 0.78rem;
}

.hero h1,
.hero h2,
.page-hero h1,
.policy-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.15rem, 5vw, 5.25rem);
  line-height: 1.08;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.94);
  text-shadow: 0 15px 28px rgba(0, 0, 0, 0.65);
}

.hero-copy,
.page-copy {
  width: min(820px, 92vw);
  margin: 1.45rem auto 0;
  color: rgba(245, 241, 232, 0.78);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.85;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.3rem;
}

.button-primary {
  background: linear-gradient(180deg, rgba(221, 201, 135, 0.18), rgba(185, 154, 91, 0.07));
  color: #f7eed1;
}

.button-secondary {
  color: rgba(245, 241, 232, 0.8);
  border-color: rgba(245, 241, 232, 0.26);
}

.mission-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.25rem, 6vw, 7rem);
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.96), rgba(8, 8, 7, 0.99)),
    radial-gradient(circle at 50% 0%, rgba(185, 154, 91, 0.1), transparent 28rem);
  border-top: 1px solid rgba(185, 154, 91, 0.18);
  border-bottom: 1px solid rgba(185, 154, 91, 0.18);
}

.pillar-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 150px;
  gap: 1rem;
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(221, 201, 135, 0.24);
}

.pillar-card:last-child {
  border-right: 0;
}

.pillar-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.74);
}

.section-shell {
  padding: clamp(4.25rem, 7vw, 7rem) clamp(1.25rem, 6vw, 7rem);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(10, 10, 9, 0.98), rgba(5, 5, 5, 0.98)),
    radial-gradient(circle at 20% 0, rgba(185, 154, 91, 0.09), transparent 26rem);
}

.section-warm {
  background:
    linear-gradient(135deg, rgba(185, 154, 91, 0.12), transparent 34%),
    linear-gradient(180deg, #0a0a09, #050505);
}

.section-intro {
  width: min(820px, 100%);
  margin-bottom: clamp(2rem, 4vw, 3.4rem);
}

.section-intro.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-intro h2,
.feature h2,
.closing-panel h2,
.contact-strip h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
  color: var(--text);
}

.section-intro h2,
.feature h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.75rem);
}

.section-intro p:not(.eyebrow),
.feature p,
.body-copy p,
.note {
  margin: 1.1rem 0 0;
  color: rgba(245, 241, 232, 0.76);
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.85;
}

.feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(221, 201, 135, 0.24);
}

.card-grid,
.two-grid,
.donation-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.two-grid,
.donation-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-card,
.info-card,
.donation-card {
  min-height: 210px;
  padding: clamp(1.35rem, 2.2vw, 1.75rem);
  border: 1px solid rgba(221, 201, 135, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(15, 15, 14, 0.82);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
}

.detail-card h3,
.info-card h3,
.donation-card h2,
.donation-card h3 {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.45;
  text-transform: uppercase;
  color: var(--text);
}

.donation-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  color: var(--gold-2);
}

.detail-card p,
.info-card p,
.donation-card p,
.policy-list li {
  margin: 0;
  color: rgba(245, 241, 232, 0.72);
  line-height: 1.75;
}

.detail-card p + p,
.info-card p + p {
  margin-top: 0.8rem;
}

.fact-list {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 20, 18, 0.92), rgba(10, 10, 9, 0.92));
  box-shadow: var(--shadow);
}

.fact-list div {
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid rgba(221, 201, 135, 0.17);
}

.fact-list div:last-child {
  border-bottom: 0;
}

.fact-list dt {
  margin-bottom: 0.32rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.fact-list dd {
  margin: 0;
  color: rgba(245, 241, 232, 0.84);
  line-height: 1.55;
}

.page-hero,
.policy-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8rem) clamp(1.25rem, 6vw, 7rem);
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.8), rgba(4, 4, 4, 0.96)),
    radial-gradient(circle at 50% 20%, rgba(221, 201, 135, 0.12), transparent 34rem),
    linear-gradient(90deg, #070706, #151513 22%, #080808 100%);
  border-bottom: 1px solid rgba(185, 154, 91, 0.18);
}

.page-hero-inner,
.policy-hero-inner {
  width: min(930px, 100%);
}

.page-hero h1,
.policy-hero h1 {
  font-size: clamp(2rem, 4.6vw, 4.8rem);
}

.content-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.content-columns .body-copy p:first-child {
  margin-top: 0;
}

.zeffy-donation-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
  align-items: center;
}

.zeffy-embed-card {
  width: min(100%, 520px);
  justify-self: end;
  padding: clamp(0.7rem, 1.6vw, 1rem);
  border: 1px solid rgba(221, 201, 135, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(15, 15, 14, 0.86);
  box-shadow: var(--shadow);
}

.zeffy-embed-card [data-zeffy-embed],
.zeffy-embed-card [data-zeffy-embed-fallback] {
  min-height: 450px;
}

.zeffy-embed-card iframe {
  display: block;
  max-width: 100%;
}

.sponsor-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(221, 201, 135, 0.24);
  border-radius: 8px;
  background: rgba(15, 15, 14, 0.84);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
}

.sponsor-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.sponsor-table th,
.sponsor-table td {
  padding: 1.1rem 1.2rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(221, 201, 135, 0.16);
}

.sponsor-table th {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--gold-2);
}

.sponsor-table td {
  color: rgba(245, 241, 232, 0.78);
  line-height: 1.6;
}

.sponsor-table tr:last-child td {
  border-bottom: 0;
}

.note {
  padding: 1rem 1.1rem;
  border-left: 2px solid var(--gold);
  background: rgba(185, 154, 91, 0.08);
}

.policy-list {
  margin: 1.5rem 0 0;
  padding-left: 1.25rem;
}

.policy-list li + li {
  margin-top: 0.8rem;
}

.closing-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(320px, 1.25fr) auto;
  gap: clamp(1.3rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5.4rem) clamp(1.25rem, 6vw, 7rem);
  background:
    linear-gradient(135deg, rgba(185, 154, 91, 0.1), transparent 34%),
    linear-gradient(180deg, #0a0a09, #050505);
  border-top: 1px solid rgba(185, 154, 91, 0.16);
}

.closing-panel h2 {
  font-size: clamp(1.25rem, 2vw, 2rem);
}

.closing-panel p {
  margin: 0;
  color: rgba(245, 241, 232, 0.78);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.9;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2.4rem, 5vw, 4rem) clamp(1.25rem, 6vw, 7rem);
  color: rgba(245, 241, 232, 0.68);
  background: #050505;
  border-top: 1px solid rgba(185, 154, 91, 0.18);
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text);
}

.site-footer p {
  margin: 0.35rem 0;
  line-height: 1.6;
}

.site-footer a {
  color: var(--gold-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  margin-top: 1rem;
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-transform: uppercase;
}

.footer-social a {
  color: rgba(245, 241, 232, 0.78);
  text-decoration: none;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--gold-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.25rem;
  align-content: start;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: minmax(180px, 230px) minmax(0, 1fr) auto;
    min-height: 98px;
  }

  .brand {
    width: min(220px, 36vw);
  }

  .nav-toggle {
    display: grid;
    grid-column: 3;
    grid-row: 1;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 0.8rem clamp(1rem, 4vw, 3rem) 1.35rem;
    background: rgba(8, 8, 7, 0.985);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-125%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .site-header.is-nav-open .primary-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .mission-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar-card:nth-child(2) {
    border-right: 0;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .closing-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .home-page .site-header {
    display: grid;
  }

  .homepage-mockup {
    display: none;
  }

  .hero-fallback,
  .mission-fallback {
    display: grid;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
    min-height: 88px;
    padding: 0.8rem 4.8rem 0.8rem 1rem;
  }

  .brand {
    width: min(310px, calc(100vw - 5.5rem));
    min-width: 0;
  }

  .brand-frame {
    padding: 0;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid !important;
    grid-column: 2;
    position: absolute;
    top: 50%;
    right: 1rem;
    z-index: 2;
    transform: translateY(-50%);
    border-color: rgba(221, 201, 135, 0.9);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  }

  .feature,
  .content-columns,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .two-grid,
  .donation-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .detail-card,
  .info-card,
  .donation-card {
    min-height: auto;
  }

  .zeffy-embed-card {
    width: min(100%, 560px);
    justify-self: stretch;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 700px;
    padding: 4.6rem 1rem;
  }

  .brand {
    width: min(268px, calc(100vw - 6.4rem));
  }

  .brand-frame {
    padding: 0.36rem 0.46rem;
  }

  .hero-pillars {
    width: 24vw;
    opacity: 0.2;
  }

  .hero-wordmark {
    width: min(310px, 82vw);
  }

  .hero h1,
  .hero h2,
  .page-hero h1,
  .policy-hero h1 {
    font-size: clamp(1.72rem, 9vw, 2.65rem);
    letter-spacing: 0.035em;
  }

  .hero-kicker,
  .eyebrow {
    letter-spacing: 0.14em;
    line-height: 1.6;
  }

  .hero-copy,
  .page-copy {
    width: min(100%, 22rem);
    font-size: 0.95rem;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .mission-band {
    grid-template-columns: 1fr;
    padding: 3.2rem 1.1rem;
  }

  .pillar-card {
    min-height: 125px;
    border-right: 0;
    border-top: 1px solid rgba(221, 201, 135, 0.18);
  }

  .pillar-card:first-child {
    border-top: 0;
  }

  .section-shell,
  .closing-panel,
  .page-hero,
  .policy-hero,
  .site-footer {
    padding-right: 1.1rem;
    padding-left: 1.1rem;
  }

  .section-intro h2,
  .feature h2 {
    letter-spacing: 0.08em;
  }
}

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