:root {
  --bg: #091a34;
  --bg2: #10274c;
  --panel: rgba(255,255,255,0.08);
  --panel-border: rgba(255,255,255,0.12);
  --text: #f7fbff;
  --muted: #d0daea;
  --gold: #f2c46d;
  --rose: #ec6787;
  --shadow: 0 24px 70px rgba(0,0,0,0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #08172f, #10274c 45%, #0a1730 100%);
}
.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(242,196,109,0.16), transparent 20%),
    radial-gradient(circle at 84% 12%, rgba(236,103,135,0.16), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(242,196,109,0.08), transparent 20%);
}
.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.glass {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.topbar {
  position: sticky;
  top: 14px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: 28px;
  background: rgba(9, 26, 52, 0.82);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 14px; color: var(--text); }
.brand-logo { width: 58px; height: 58px; border-radius: 16px; }
.brand-title { display: block; font-weight: 800; letter-spacing: 0.02em; }
.brand-subtitle { display: block; color: var(--muted); font-size: 0.9rem; }
.nav { display: flex; gap: 18px; }
.nav a { color: var(--muted); font-weight: 600; }
.nav a:hover { color: var(--text); }
.menu-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  min-height: 78vh;
  padding: 42px 0 20px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 800;
}
h1, h2, h3, .footer-title { font-family: 'Playfair Display', serif; }
h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.96;
  margin: 10px 0 18px;
}
h1 span { color: var(--gold); display: block; }
.lead, .section-subtext, .card p, .impact-card p, .fine-print, .footer p { color: var(--muted); line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), #ffde95); color: #0d2142; }
.btn-secondary { border: 1px solid rgba(255,255,255,0.15); color: var(--text); }
.wide { width: 100%; }
.hero-card, .card, .impact-card, .donate-band, .contact-card { border-radius: 28px; }
.hero-card { padding: 28px; }
.hero-logo { width: 160px; max-width: 100%; display: block; margin: 0 auto 20px; }
.stat-list { display: grid; gap: 16px; }
.stat-list div { padding: 16px; border-radius: 20px; background: rgba(255,255,255,0.04); }
.stat-list strong { display: block; margin-bottom: 6px; color: var(--gold); }
.stat-list span { color: var(--muted); }
.section { padding: 92px 0; }
.grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card { padding: 28px; }
.rose-glow { background: linear-gradient(180deg, rgba(236,103,135,0.14), rgba(255,255,255,0.06)); }
.section-heading { max-width: 820px; margin: 0 auto 28px; }
.center { text-align: center; }
.section-heading h2 { margin: 8px 0 12px; font-size: clamp(2.2rem, 4vw, 3.4rem); }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.impact-card { padding: 24px; }
.impact-card h3 { margin-top: 0; font-size: 1.6rem; }
.donate-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 34px;
}
.left { margin-left: 0; }
.donate-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
}
.contact-card { max-width: 860px; margin: 0 auto; padding: 28px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: flex; flex-direction: column; gap: 10px; font-weight: 600; }
input, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font: inherit;
}
input::placeholder, textarea::placeholder { color: #b8c5d7; }
.full-width { grid-column: 1 / -1; }
.footer {
  text-align: center;
  padding: 28px 0 70px;
}
.footer-logo { width: 84px; height: 84px; }
.footer-title { font-size: 1.5rem; margin: 6px 0; }

@media (max-width: 920px) {
  .hero, .grid-two, .impact-grid, .donate-band, .contact-form { grid-template-columns: 1fr; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 16px;
    border-radius: 24px;
    background: rgba(9, 26, 52, 0.98);
    border: 1px solid var(--panel-border);
  }
  .nav.open { display: flex; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-size: 1.2rem;
  }
  .topbar { position: relative; }
  .brand-subtitle { display: none; }
}
