:root {
  --blue: #073b79;
  --blue-2: #155a9d;
  --blue-soft: #eaf2fa;
  --gold: #f4b642;
  --olive: #7a8237;
  --paper: #ffffff;
  --cream: #f6f1e7;
  --soft: #f7f9fb;
  --line: #dbe5ef;
  --text: #17202a;
  --muted: #52606d;
  --shadow: 0 18px 45px rgb(7 59 121 / 12%);
  --radius: 24px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--soft);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
[tabindex="-1"]:focus-visible {
  outline: 3px solid var(--blue-2);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  color: var(--blue);
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 14vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  max-width: 760px;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

h3 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 4vw, 1.55rem);
}

p {
  margin: 0;
  font-size: 1.04rem;
}

main {
  width: min(100% - 32px, var(--max));
  margin: -44px auto 0;
  position: relative;
  z-index: 2;
}

section {
  scroll-margin-top: 82px;
  margin-block: 22px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: white;
  color: var(--blue);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 20;
}

.skip-link:focus {
  left: 12px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  width: min(100% - 28px, var(--max));
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand-mini {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--blue);
  font-weight: 750;
  padding: 8px 10px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 0.92rem;
}

.nav a:hover,
.nav a:focus {
  background: var(--blue-soft);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--blue);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 8px 22px rgb(7 59 121 / 8%);
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  background: linear-gradient(135deg, #e6edf4, #c7d7e4);
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: 56px 18px;
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 26px;
  border-radius: 32px;
  overflow: hidden;
  background: #dce6ef;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgb(255 255 255 / 96%) 0%, rgb(255 255 255 / 86%) 45%, rgb(255 255 255 / 52%) 100%),
    linear-gradient(135deg, rgb(255 255 255 / 8%), rgb(7 59 121 / 12%));
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgb(255 255 255 / 82%);
  color: var(--blue);
  font-weight: 850;
  box-shadow: 0 8px 24px rgb(0 0 0 / 8%);
  margin-bottom: 16px;
}

.lead {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 750;
  color: var(--blue);
  max-width: 760px;
  margin-top: 16px;
}

.sublead {
  max-width: 690px;
  margin-top: 16px;
  font-size: 1.12rem;
  color: #27384a;
}

.muted {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  background: var(--blue);
  color: white;
  box-shadow: var(--shadow);
}

.button.secondary {
  background: white;
  color: var(--blue);
  border: 1px solid var(--line);
}

.button.gold {
  background: var(--gold);
  color: #1d2731;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pad {
  padding: clamp(22px, 5vw, 36px);
}

.two-col {
  display: grid;
  gap: 18px;
}

.section-head {
  text-align: left;
  padding: 26px 4px 8px;
}

.section-head p {
  max-width: 760px;
}

.kicker {
  color: var(--olive);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.kicker-accent {
  color: #ffd67a;
}

.quote-card {
  background: var(--blue);
  color: white;
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 38px);
  box-shadow: var(--shadow);
}

.quote-card h2 {
  color: white;
}

.quote-card p {
  color: rgb(255 255 255 / 88%);
}

.roles,
.support-options,
.event-grid,
.transparency-grid,
.donation-boxes {
  display: grid;
  gap: 14px;
}

.role,
.support-option,
.event-fact,
.transparency-item {
  padding: 22px;
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 1.9rem;
  background: var(--blue-soft);
  color: var(--blue);
  flex: none;
  margin-bottom: 14px;
}

.icon-image {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.icon.gold {
  background: #fff4d8;
  color: #b97800;
}

.icon.olive {
  background: #f0f2df;
  color: var(--olive);
}

.support-highlight {
  background: linear-gradient(135deg, var(--cream), white);
  border: 1px solid #eadfc8;
}

.donation-boxes {
  margin-top: 18px;
}

.donation-box {
  border: 1px solid var(--line);
  background: white;
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.qr-placeholder {
  min-height: 120px;
  border: 2px dashed rgb(7 59 121 / 28%);
  border-radius: 16px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgb(7 59 121 / 55%);
  font-weight: 800;
  padding: 16px;
  background: #fbfdff;
}

.qr-asset-box {
  min-height: 220px;
  padding: 18px;
}

.qr-asset {
  display: block;
  width: min(100%, 212px);
  max-width: 212px;
  height: auto;
}

.benefits {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.benefits li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  align-items: start;
}

.benefits li::before {
  content: "✓";
  color: var(--olive);
  font-weight: 950;
}

.event-card {
  background: var(--blue);
  color: white;
}

.event-card h2,
.event-card h3 {
  color: white;
}

.event-card .muted {
  color: rgb(255 255 255 / 78%);
}

.event-fact {
  background: rgb(255 255 255 / 10%);
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 18px;
}

.note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff8e8;
  border: 1px solid #f1d999;
  color: #423414;
}

.contact {
  background: var(--blue);
  color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 36px);
}

.contact-logo {
  display: block;
  width: min(100%, 240px);
  height: auto;
  margin-bottom: 18px;
}

.contact h2 {
  color: white;
}

.contact a {
  color: white;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

footer {
  margin-top: 26px;
  padding: 30px 18px;
  color: white;
  background: var(--blue);
  text-align: center;
  font-weight: 750;
}

footer strong {
  color: var(--gold);
}

.mt-14 {
  margin-top: 14px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-18 {
  margin-top: 18px;
}

@media (min-width: 760px) {
  .two-col {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .roles {
    grid-template-columns: repeat(3, 1fr);
  }

  .support-options {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .transparency-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .donation-boxes {
    grid-template-columns: 1fr 1fr;
  }

  .role,
  .support-option {
    min-height: 100%;
  }
}

@media (min-width: 980px) {
  .topbar-inner {
    padding: 14px 0;
  }

  .nav a {
    font-size: 1rem;
    padding-inline: 14px;
  }

  section {
    margin-block: 28px;
  }

  .card {
    border-radius: 30px;
  }

  .role,
  .support-option,
  .event-fact,
  .transparency-item {
    padding: 28px;
  }

  .icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    font-size: 2.25rem;
  }

  .icon-image {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 700px) {
  .topbar-inner {
    width: min(100% - 22px, var(--max));
    position: relative;
  }

  .brand-mini {
    max-width: calc(100% - 58px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 1rem;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 660px;
    padding: 42px 14px;
  }

  .hero-media {
    inset: 14px;
    border-radius: 22px;
  }

  main {
    width: min(100% - 22px, var(--max));
  }

  .cta-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .lead {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
