
:root {
  --maroon: #5a1414;
  --maroon-deep: #5a1414;
  --maroon-soft: #5a1414;
  --gold: #ffd21a;
  --gold-warm: #ffbf00;
  --cream: #fff8e7;
  --paper: #fffdf8;
  --ink: #251820;
  --muted: #695b62;
  --line: rgba(90, 20, 20, 0.14);
  --shadow: 0 28px 80px rgba(90, 20, 20, 0.18);
  --header-height: 78px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.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: fixed;
  inset: 0 0 auto 0;
  height: var(--header-height);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(20, 3, 11, 0.78), rgba(20, 3, 11, 0.22));
  backdrop-filter: blur(12px);
  color: white;
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(90, 20, 20, 0.94);
  box-shadow: 0 8px 30px rgba(20, 3, 11, .16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.brand img {
  width: 43px;
  height: 43px;
  object-fit: contain;
  border-radius: 9px;
  background: rgba(255, 255, 255, .94);
  padding: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  opacity: .88;
  transition: opacity .2s ease, color .2s ease;
}

.site-nav a:not(.nav-donate)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transition: right .2s ease;
}

.site-nav a:hover { opacity: 1; }
.site-nav a:hover::after { right: 0; }

.nav-donate {
  padding: 10px 16px;
  border: 1px solid rgba(255, 210, 26, .5);
  border-radius: 999px;
  color: var(--gold) !important;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 11px 8px;
}

.menu-button > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.parallax-layer {
  position: absolute;
  inset: -8%;
  z-index: -2;
  pointer-events: none;
  will-change: transform;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  color: white;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 210, 26, .14), transparent 32%),
    radial-gradient(circle at 20% 70%, rgba(255,255,255,.05), transparent 34%),
    linear-gradient(135deg, rgba(0,0,0,.50), rgba(0,0,0,.10) 48%, rgba(0,0,0,.42)),
    #5a1414;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(13, 2, 7, .48), rgba(13, 2, 7, .07) 55%, rgba(13, 2, 7, .24));
}

.field-lines {
  opacity: .33;
  background:
    linear-gradient(42deg, transparent 0 49.7%, rgba(255,255,255,.22) 49.8% 50.2%, transparent 50.3%),
    linear-gradient(-42deg, transparent 0 49.7%, rgba(255,255,255,.22) 49.8% 50.2%, transparent 50.3%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 2px, transparent 2px 88px);
  transform: scale(1.05);
}

.hero-glow {
  position: absolute;
  width: 44vw;
  aspect-ratio: 1;
  right: -6vw;
  top: 12vh;
  border: 1px solid rgba(255, 210, 26, .22);
  border-radius: 50%;
  box-shadow:
    0 0 0 5vw rgba(255, 210, 26, .025),
    0 0 0 10vw rgba(255, 210, 26, .018);
  opacity: .8;
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  padding: calc(var(--header-height) + 60px) 0 86px;
}

.hero-mark {
  width: 88px;
  padding: 9px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .2);
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .19em;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 980px;
  margin-bottom: 26px;
  font-size: clamp(3.6rem, 8vw, 8.6rem);
  line-height: .86;
  letter-spacing: -.055em;
  text-transform: uppercase;
  font-weight: 950;
}

h1 span { color: var(--gold); }

.hero-copy {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border-radius: 999px;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: var(--gold);
  color: var(--maroon-deep);
  box-shadow: 0 16px 42px rgba(255, 199, 0, .2);
}

.button-primary:hover {
  background: #ffdc45;
  box-shadow: 0 20px 52px rgba(255, 199, 0, .28);
}

.button-ghost {
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(8px);
}

.button-ghost.light {
  border-color: rgba(255,255,255,.28);
}

.scroll-cue {
  position: absolute;
  left: clamp(20px, 4vw, 64px);
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .58);
  text-decoration: none;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 56px;
  height: 1px;
  background: rgba(255,255,255,.38);
  position: relative;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-right: 1px solid rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.7);
  transform: rotate(-45deg);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mission {
  padding: clamp(100px, 12vw, 170px) 0;
  background:
    radial-gradient(circle at 85% 70%, rgba(255, 210, 26, .15), transparent 26%),
    linear-gradient(180deg, #fffdf8, #fbf3e1);
}

.diamond-pattern {
  opacity: .34;
  background:
    linear-gradient(45deg, transparent 48.5%, rgba(90,20,20,.07) 49% 51%, transparent 51.5%),
    linear-gradient(-45deg, transparent 48.5%, rgba(90,20,20,.07) 49% 51%, transparent 51.5%);
  background-size: 96px 96px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

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

.section-heading h2,
.donate-copy h2,
.details-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  line-height: .96;
  letter-spacing: -.045em;
  text-transform: uppercase;
  font-weight: 950;
}

.section-heading p:last-child,
.donate-copy > p,
.details-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.goal-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 18px;
}

.stat-card,
.info-card {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(26px, 3vw, 38px);
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 42px rgba(90, 20, 20, .06);
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  border: none;
  background:
    radial-gradient(circle at 75% 20%, rgba(255,210,26,.22), transparent 30%),
    linear-gradient(145deg, var(--maroon), var(--maroon-deep));
}

.stat-number {
  font-size: clamp(4.6rem, 8vw, 7.8rem);
  line-height: .8;
  letter-spacing: -.07em;
  font-weight: 950;
  color: var(--gold);
}

.stat-label {
  display: block;
  margin: 20px 0 14px;
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.stat-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,.68);
}

.card-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 70px;
  background: var(--cream);
  color: var(--maroon);
  font-weight: 950;
  font-size: .76rem;
}

.info-card h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
  letter-spacing: -.025em;
}

.info-card p { color: var(--muted); }

.small-note {
  font-size: .91rem;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  color: var(--maroon);
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.benefits {
  padding: clamp(105px, 12vw, 160px) 0;
  color: white;
  background:
    radial-gradient(circle at 15% 30%, rgba(255,255,255,.055), transparent 28%),
    linear-gradient(145deg, rgba(0,0,0,.38), rgba(0,0,0,.10) 45%, rgba(0,0,0,.42)),
    #5a1414;
}

.stripes {
  opacity: .5;
  background: repeating-linear-gradient(
    120deg,
    transparent 0 80px,
    rgba(255,255,255,.025) 81px 82px
  );
}

.benefits .section-heading p:last-child { color: rgba(255,255,255,.66); }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.tier-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tier-card.featured {
  border-color: rgba(255,210,26,.5);
  background:
    linear-gradient(180deg, rgba(255,210,26,.08), rgba(255,255,255,.055));
  box-shadow: inset 0 0 0 1px rgba(255,210,26,.06), 0 26px 70px rgba(0,0,0,.18);
}

.tier-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--maroon-deep);
  background: var(--gold);
  font-size: .69rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.tier-value {
  color: var(--gold);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 950;
  margin-bottom: 18px;
}

.tier-card h3 {
  margin-bottom: 8px;
  font-size: 1.38rem;
}

.tier-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,.62);
}

.donate {
  padding: clamp(105px, 12vw, 165px) 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(255,210,26,.12), transparent 30%),
    linear-gradient(180deg, #fffaf0, #fffdf8);
}

.arcs {
  background:
    radial-gradient(circle at 12% 50%, transparent 0 160px, rgba(90,20,20,.04) 161px 163px, transparent 164px 230px, rgba(90,20,20,.03) 231px 233px, transparent 234px),
    radial-gradient(circle at 86% 25%, transparent 0 170px, rgba(255,190,0,.08) 171px 173px, transparent 174px 245px, rgba(255,190,0,.05) 246px 248px, transparent 249px);
}

.donate-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.logo-panel {
  position: relative;
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: white;
  box-shadow: var(--shadow);
}

.logo-panel::before,
.logo-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.logo-panel::before {
  width: 170px;
  height: 170px;
  top: -40px;
  left: -52px;
  background: var(--gold);
  opacity: .26;
}

.logo-panel::after {
  width: 115px;
  height: 115px;
  right: -34px;
  bottom: -36px;
  background: var(--maroon);
  opacity: .18;
}

.donate-copy { max-width: 610px; }

.paypal-button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin: 34px 0 18px;
  padding: 18px 20px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, #003087, #0070e0);
  box-shadow: 0 18px 40px rgba(0, 77, 159, .22);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.paypal-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0, 77, 159, .3);
}

.paypal-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.14);
  font-size: 1.7rem;
  font-weight: 950;
  font-style: italic;
}

.paypal-button span:nth-child(2) {
  font-size: 1.08rem;
  font-weight: 900;
}

.paypal-button small {
  display: block;
  margin-bottom: 2px;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
  opacity: .68;
}

.paypal-button strong { font-size: 1.35rem; }

.mail-card {
  padding: 24px 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
}

.mail-card p { margin-bottom: 10px; }
.mail-card address { font-style: normal; color: var(--muted); }
.mail-label {
  color: var(--maroon);
  font-size: .75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}


.mail-questions {
  margin: 18px 0 0 !important;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
}

.mail-questions a {
  color: var(--maroon);
  font-weight: 850;
  text-underline-offset: 4px;
}

.details {
  min-height: 82svh;
  display: grid;
  align-items: center;
  padding: clamp(110px, 13vw, 180px) 0;
  color: white;
  background:
    radial-gradient(circle at 75% 50%, rgba(255,210,26,.18), transparent 26%),
    linear-gradient(135deg, rgba(0,0,0,.26), rgba(0,0,0,.02) 56%, rgba(0,0,0,.34)),
    #5a1414;
}

.rings {
  opacity: .4;
  background:
    radial-gradient(circle at 75% 50%, transparent 0 160px, rgba(255,255,255,.07) 161px 162px, transparent 163px 230px, rgba(255,255,255,.045) 231px 232px, transparent 233px 300px, rgba(255,255,255,.03) 301px 302px, transparent 303px);
}

.details-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: clamp(50px, 9vw, 110px);
}

.details-copy .lead {
  color: white;
  font-size: clamp(1.2rem, 2vw, 1.52rem);
  font-weight: 800;
}

.details-copy > p:not(.eyebrow):not(.lead) { color: rgba(255,255,255,.68); }

.ma-badge {
  width: min(390px, 76vw);
  aspect-ratio: 1;
  margin-left: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  box-shadow:
    0 0 0 22px rgba(255,210,26,.08),
    0 0 0 44px rgba(255,210,26,.04),
    0 35px 80px rgba(20,0,8,.28);
}

.ma-badge img {
  width: 63%;
  border-radius: 22px;
}

footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  padding: 36px clamp(20px, 4vw, 64px);
  background: linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)), #5a1414;
  color: rgba(255,255,255,.58);
  font-size: .8rem;
}

footer > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

footer img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  padding: 4px;
  border-radius: 8px;
  background: white;
}

footer p { margin: 0; }
footer a { color: var(--gold); font-weight: 800; text-decoration: none; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s cubic-bezier(.2,.65,.2,1), transform .75s cubic-bezier(.2,.65,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .goal-grid,
  .tier-grid {
    grid-template-columns: 1fr;
  }

  .stat-card,
  .info-card,
  .tier-card {
    min-height: auto;
  }

  .tier-card.featured {
    padding-top: 88px;
  }

  .card-number { margin-bottom: 36px; }

  .donate-shell,
  .details-layout {
    grid-template-columns: 1fr;
  }

  .logo-panel { max-width: 570px; }
  .ma-badge { margin: 30px auto 0; }

  footer {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 820px) {
  :root { --header-height: 70px; }

  .site-header {
    padding-inline: 18px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .brand span { display: none; }

  .menu-button { display: block; }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0 0;
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px 20px;
    background:
      linear-gradient(rgba(0,0,0,.46), rgba(0,0,0,.46)),
      #5a1414;
    transform: translateX(100%);
    transition: transform .25s ease;
  }

  .site-nav.open { transform: translateX(0); }

  .site-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255,255,255,.09);
    font-size: .9rem;
  }

  .nav-donate {
    margin-top: 18px;
    text-align: center;
    border: 1px solid rgba(255,210,26,.45) !important;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-content { padding-top: 130px; }
  .hero-mark { width: 72px; }
  .hero-glow { width: 90vw; right: -40vw; }

  .scroll-cue { display: none; }

  .text-link {
    padding: 8px 0;
  }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(3.25rem, 18vw, 5rem); }

  .hero-actions,
  .detail-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button { width: 100%; }

  .section-shell,
  .donate-shell,
  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  .stat-card,
  .info-card,
  .tier-card,
  .mail-card {
    border-radius: 20px;
  }

  .logo-panel { border-radius: 24px; }

  .paypal-button {
    grid-template-columns: auto 1fr;
  }

  .paypal-button > strong { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .parallax-layer { transform: none !important; }
  .reveal { opacity: 1; transform: none; }
}
