:root {
  --ink-900: #0a0a0a;
  --ink-700: #1f1f1f;
  --mist-100: #f7f7f7;
  --mint-300: #f98ca0;
  --mint-500: #c1121f;
  --sun-300: #e8c76d;
  --sun-500: #c9a227;
  --sky-300: #a3a3a3;
  --sky-500: #171717;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: #111111;
  background:
    radial-gradient(circle at 8% 10%, rgba(193, 18, 31, 0.24), transparent 24%),
    radial-gradient(circle at 95% 18%, rgba(201, 162, 39, 0.24), transparent 24%),
    radial-gradient(circle at 30% 80%, rgba(0, 0, 0, 0.14), transparent 26%),
    linear-gradient(155deg, #fff9fa 0%, #fffdf5 50%, #ffffff 100%);
}

::selection {
  color: #fff7da;
  background: rgba(159, 11, 29, 0.72);
}

.brand-lockup {
  letter-spacing: -0.02em;
}

.nav-link {
  position: relative;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #3f3f46;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-link:hover {
  color: #111111;
  background: rgba(255, 255, 255, 0.76);
}

.nav-link.is-active {
  color: #7f0b1b;
  background: linear-gradient(135deg, rgba(255, 141, 161, 0.42), rgba(201, 160, 71, 0.3));
}

.mobile-nav-link {
  border-radius: 0.75rem;
  padding: 0.7rem 0.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #262626;
}

.mobile-nav-link:hover {
  background: #f5f5f5;
  color: #111111;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 0.9rem;
  padding: 0.78rem 1.1rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn-primary {
  color: #fff3d5;
  background: linear-gradient(135deg, var(--mint-500), #e11d2e);
  box-shadow: 0 10px 26px rgba(159, 11, 29, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(159, 11, 29, 0.34);
}

.btn-secondary {
  color: #111111;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.74);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -24% -45% auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(201, 162, 39, 0.24), transparent 68%);
  pointer-events: none;
}

.photo-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 0.9rem;
}

.photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
}

.photo-stack .tall {
  grid-row: span 2;
  min-height: 18rem;
}

.photo-stack .short {
  min-height: 8.3rem;
}

.hero-single-photo img {
  width: 100%;
  min-height: 19rem;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
}

.kicker {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.36rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #111111;
}

.stat-panel {
  border-radius: 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.86);
  padding: 1rem;
}

.stat-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111111;
}

.section-shell {
  border-radius: 1.55rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.77);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.1);
}

.feature-card {
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.1rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(193, 18, 31, 0.35);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
}

.media-card .overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 0.95rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
  color: #f5f5f5;
  font-size: 0.8rem;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 720ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.float-orb {
  position: absolute;
  z-index: -1;
  width: 17rem;
  height: 17rem;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.44;
  animation: drift 8s ease-in-out infinite;
}

.float-orb.a {
  left: -5rem;
  top: 5rem;
  background: rgba(209, 15, 37, 0.66);
}

.float-orb.b {
  right: -4rem;
  top: 18rem;
  background: rgba(201, 160, 71, 0.62);
  animation-delay: -2.4s;
}

.float-orb.c {
  left: 45%;
  bottom: -4rem;
  width: 15rem;
  height: 15rem;
  background: rgba(0, 0, 0, 0.32);
  animation-delay: -1.2s;
}

.metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(209, 15, 37, 0.24);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.36rem 0.72rem;
  font-size: 0.73rem;
  font-weight: 700;
  color: #8f0d1f;
}

.timeline-step {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.88);
  padding: 1rem;
}

.timeline-step::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c1121f, #e8c76d);
  color: #fff4d8;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 0.86rem;
}

.quote-block {
  border-radius: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(255, 243, 213, 0.76));
  padding: 1rem 1.1rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.page-hero img {
  width: 100%;
  height: clamp(16rem, 45vh, 22rem);
  object-fit: cover;
}

.page-hero .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(100, 7, 18, 0.78), rgba(0, 0, 0, 0.34));
}

.page-hero .content {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(1.1rem, 3vw, 2rem);
  color: #f8fafc;
}

.value-badge {
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.9rem;
}

.tab-btn,
.year-btn {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.18);
  padding: 0.52rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2b2b2b;
  background: rgba(255, 255, 255, 0.95);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.tab-btn.is-active,
.year-btn.is-active {
  color: #8a0d1d;
  background: linear-gradient(135deg, rgba(255, 141, 161, 0.86), rgba(227, 192, 106, 0.72));
  border-color: rgba(201, 160, 71, 0.46);
}

.progress-track {
  height: 0.42rem;
  border-radius: 999px;
  background: #e5e7eb;
}

.progress-bar {
  height: 100%;
  width: 0;
  border-radius: 999px;
  transition: width 420ms ease;
}

.page-footer {
  margin-top: 5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.7);
}

.footer-copy {
  display: grid;
  gap: 0.45rem;
}

.footer-map-shell {
  overflow: hidden;
  border-radius: 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.footer-map-shell iframe {
  display: block;
  width: 100%;
  height: 170px;
  border: 0;
}

.donation-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(4px);
}

.donation-modal-panel {
  width: min(42rem, 100%);
  border-radius: 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(255, 243, 213, 0.82));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  padding: 1.1rem;
  outline: none;
}

.donation-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.donation-modal-close {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.85);
  color: #262626;
  padding: 0.48rem 0.72rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.donation-modal-grid {
  display: grid;
  gap: 0.65rem;
}

.donation-detail {
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.85rem;
}

.donation-detail-label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
}

.donation-detail-value {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  word-break: break-word;
}

.donation-copy-btn {
  margin-top: 0.7rem;
  width: auto;
  padding: 0.55rem 0.8rem;
  font-size: 0.72rem;
}

.video-embed-shell {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #000000;
}

.video-embed-shell iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-coming-soon {
  border-radius: 1rem;
  border: 1px dashed rgba(0, 0, 0, 0.24);
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -8px, 0) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .float-orb,
  .progress-bar,
  .feature-card {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .hero-single-photo img {
    min-height: 13rem;
  }

  .photo-stack {
    grid-template-columns: 1fr;
  }

  .photo-stack .tall {
    grid-row: span 1;
  }

  .photo-stack .tall,
  .photo-stack .short {
    min-height: 10.5rem;
  }

  .hero-card::after {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 640px) {
  .brand-lockup img {
    width: 2rem;
    height: 2rem;
  }

  .kicker {
    padding: 0.33rem 0.62rem;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .hero-card {
    border-radius: 1.2rem;
  }

  .donation-modal-panel {
    padding: 0.9rem;
  }

  .donation-detail-value {
    font-size: 0.92rem;
  }
}
