/* =========================================================================
   Bye Bye Kid's Cancer — Stylesheet
   You usually won't need to touch this file.
   To change TEXT, edit the .html pages.
   To change EVENTS / DONATE LINK / STATS, edit  data/content.js
   ========================================================================= */

/* ---- 1. Brand colors & design tokens ------------------------------------ */
:root {
  /* The five handprint colors from your logo (tuned for a richer, cohesive feel) */
  --red:    #ee3d3d;
  --orange: #f79019;
  --yellow: #ffc637;
  --green:  #7dbd2c;
  --blue:   #1ea4dd;
  --purple: #ab319a;

  /* Core palette */
  --ink:        #221d37;   /* main text — deeper for premium contrast */
  --ink-soft:   #585272;   /* secondary text */
  --cream:      #fff9f0;   /* warm page background */
  --cream-2:    #fff1e0;   /* slightly deeper cream for bands */
  --white:      #ffffff;
  --line:       #efe6da;   /* hairline borders */

  /* The button gradient (warm + hopeful) */
  --grad-warm:  linear-gradient(135deg, #ff7a59 0%, #ef4136 55%, #f7941e 110%);
  --grad-cool:  linear-gradient(135deg, #29abe2 0%, #8cc63f 100%);
  --grad-rainbow: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple));

  /* Shape & depth */
  --radius:     18px;
  --radius-lg:  28px;
  --shadow:     0 10px 30px rgba(43, 39, 64, .08);
  --shadow-md:  0 18px 45px rgba(43, 39, 64, .14);
  --shadow-lg:  0 30px 70px rgba(43, 39, 64, .20);

  --container: 1140px;

  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;
}

/* ---- 2. Base ------------------------------------------------------------ */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--red); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

p { margin-bottom: 1rem; }
.lead { font-size: 1.2rem; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

section { position: relative; }
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--cream { background: var(--cream-2); }
.section--white { background: var(--white); }

.center { text-align: center; }
.narrow { max-width: 760px; margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  background: #ffe9e4;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-title { margin-bottom: 14px; }
.section-intro { color: var(--ink-soft); font-size: 1.12rem; max-width: 640px; }
.center .section-intro { margin-inline: auto; }

/* ---- 3. Buttons --------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: #fff;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: #fff; }
.btn:active { transform: translateY(-1px); }

.btn--donate { background: var(--grad-warm); background-size: 160% 160%; }
.btn--donate:hover { animation: shimmer 1.6s ease infinite; }
.btn--cool { background: var(--grad-cool); }
.btn--white { background: #fff; color: var(--red); }
.btn--white:hover { color: var(--red); }
.btn--outline {
  background: transparent; color: var(--ink);
  border-color: var(--ink); box-shadow: none;
}
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--ghost-white {
  background: rgba(255,255,255,.12); color: #fff;
  border-color: rgba(255,255,255,.6); backdrop-filter: blur(4px);
}
.btn--ghost-white:hover { background: #fff; color: var(--red); }
.btn--lg { padding: 17px 38px; font-size: 1.12rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

@keyframes shimmer { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* ---- 4. Navigation ------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 249, 241, .85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, background .25s ease, border-color .25s;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(43,39,64,.07);
  border-color: var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.18rem; color: var(--ink);
}
.brand-text span { font-size: .72rem; color: var(--ink-soft); letter-spacing: .04em; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500;
  color: var(--ink); padding: 9px 14px; border-radius: 999px;
  font-size: 1rem; transition: background .18s, color .18s;
}
.nav-links a:hover { background: #fff; color: var(--red); }
.nav-links a.active { color: var(--red); background: #ffe9e4; }

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

.hamburger {
  display: none; width: 46px; height: 46px; border: none; cursor: pointer;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow);
  position: relative;
}
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: ''; position: absolute; left: 12px; width: 22px; height: 2.5px;
  background: var(--ink); border-radius: 2px; transition: .25s;
}
.hamburger span { top: 22px; }
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }
body.menu-open .hamburger span { background: transparent; }
body.menu-open .hamburger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .hamburger span::after { top: 0; transform: rotate(-45deg); }

/* Mobile slide-in menu */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(82%, 340px);
  background: #fff; z-index: 200; padding: 90px 26px 30px;
  transform: translateX(100%); transition: transform .3s ease;
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 6px;
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 600; font-size: 1.2rem;
  color: var(--ink); padding: 12px 4px; border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--red); }
.mobile-menu .btn { margin-top: 18px; }
.scrim {
  position: fixed; inset: 0; background: rgba(43,39,64,.45); z-index: 150;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
body.menu-open .scrim { opacity: 1; pointer-events: auto; }

/* ---- 5. Hero ------------------------------------------------------------ */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(115% 125% at 88% -10%, #ffe6d2 0%, #fff3e7 40%, var(--cream) 72%);
  padding: clamp(40px, 7vw, 80px) 0 clamp(60px, 9vw, 110px);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .hl { position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ''; position: absolute; left: -2%; right: -2%; bottom: 6%;
  height: 38%; background: rgba(140,198,63,.32); border-radius: 8px; z-index: -1;
  transform: rotate(-1.5deg);
}
.hero p.lead { margin-bottom: 26px; max-width: 520px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--line); color: var(--ink-soft);
  padding: 8px 15px; border-radius: 999px; font-weight: 700; font-size: .9rem;
  box-shadow: var(--shadow);
}
.pill .dot { width: 9px; height: 9px; border-radius: 50%; }

.hero-art { position: relative; display: grid; place-items: center; }
.hero-photo {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; object-fit: cover; border: 6px solid #fff;
}
.hero-logo-float {
  position: absolute; width: 130px; left: -26px; bottom: -26px;
  background: #fff; border-radius: 24px; padding: 14px; box-shadow: var(--shadow-md);
  animation: bob 5s ease-in-out infinite;
}
.hero-stat-float {
  position: absolute; top: -22px; right: -10px; background: #fff;
  border-radius: 18px; padding: 14px 18px; box-shadow: var(--shadow-md);
  animation: bob 5s ease-in-out infinite .8s; text-align: center;
}
.hero-stat-float b { font-family: var(--font-display); font-size: 1.5rem; color: var(--green); display: block; }
.hero-stat-float span { font-size: .78rem; color: var(--ink-soft); font-weight: 700; }

@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* Floating decorative glows (sit BEHIND the text) */
.hero-grid { position: relative; z-index: 1; }
.floaty {
  position: absolute; border-radius: 50%; filter: blur(48px);
  opacity: .38; z-index: 0; animation: bob 7s ease-in-out infinite;
  pointer-events: none;
}
.floaty:nth-of-type(2) { animation-delay: 1.2s; }
.floaty:nth-of-type(3) { animation-delay: 2.1s; }
.floaty:nth-of-type(4) { animation-delay: .6s; }

/* ---- 6. Stat strip ------------------------------------------------------ */
.stats-strip { background: var(--ink); color: #fff; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.1rem); line-height: 1;
  background: var(--grad-rainbow); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.stat .label { color: #c9c5da; font-weight: 700; margin-top: 6px; font-size: .98rem; }

/* ---- 7. Cards / grids --------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  margin-bottom: 16px; color: #fff;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); margin: 0; }
.card-top-bar { position: absolute; top: 0; left: 0; right: 0; height: 6px; }

/* Press page bits */
.press-meta { font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.press-link { display: inline-block; margin-top: 16px; font-family: var(--font-display); font-weight: 700; }
.press-strip { color: var(--ink-soft); font-weight: 700; }
.press-strip a { font-weight: 800; }

.bg-red{background:var(--red)} .bg-orange{background:var(--orange)}
.bg-green{background:var(--green)} .bg-blue{background:var(--blue)}
.bg-purple{background:var(--purple)} .bg-yellow{background:var(--yellow)}

/* Numbered "how it works" steps */
.step { text-align: center; }
.step .step-num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
  display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 800; font-size: 1.6rem; color: #fff;
}

/* ---- 8. Two-column feature (image + text) ------------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.feature.reverse .feature-media { order: 2; }
.feature-media img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  width: 100%; object-fit: cover; aspect-ratio: 4/3; border: 6px solid #fff;
}
.feature-body h2 { margin-bottom: 14px; }

/* Polished panel for showcasing the logo (no awkward white box) */
.logo-showcase {
  background: radial-gradient(circle at 50% 42%, #ffffff 0%, var(--cream-2) 80%);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  border: 1px solid var(--line); aspect-ratio: 1 / 1;
  display: grid; place-items: center; padding: 12%;
}
.logo-showcase img {
  width: 80%; aspect-ratio: auto; object-fit: contain;
  border: none; box-shadow: none; border-radius: 0;
  filter: drop-shadow(0 12px 22px rgba(43, 39, 64, .12));
}
.tick-list { list-style: none; margin-top: 18px; display: grid; gap: 12px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; }
.tick-list .tick {
  flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); color: #fff; display: grid; place-items: center;
  font-size: .8rem; margin-top: 3px;
}

/* ---- 9. Timeline (Our Story) ------------------------------------------- */
.timeline { position: relative; max-width: 820px; margin: 40px auto 0; }
.timeline::before {
  content: ''; position: absolute; left: 31px; top: 6px; bottom: 6px; width: 4px;
  background: var(--grad-rainbow); border-radius: 4px;
}
.tl-item { position: relative; padding: 0 0 36px 76px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 16px; top: 2px; width: 34px; height: 34px;
  border-radius: 50%; background: #fff; border: 4px solid var(--red);
  display: grid; place-items: center; font-weight: 800; color: var(--red);
  font-family: var(--font-display); font-size: .8rem;
}
.tl-year { font-family: var(--font-display); font-weight: 700; color: var(--red); font-size: 1.1rem; }
.tl-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow); margin-top: 6px;
}
.tl-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.tl-card p { margin: 0; color: var(--ink-soft); }

/* ---- 10. Impact slider (Donate) ---------------------------------------- */
.impact-box {
  background: #fff; border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.impact-amount {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 4rem); color: var(--red); text-align: center; line-height: 1;
}
.impact-amount small { font-size: 1.4rem; color: var(--ink-soft); }
.impact-result {
  text-align: center; font-size: 1.2rem; margin: 14px auto 26px; max-width: 460px;
  min-height: 56px; color: var(--ink);
}
.impact-result b { color: var(--green); }
input[type=range].slider {
  -webkit-appearance: none; appearance: none; width: 100%; height: 14px;
  border-radius: 999px; background: linear-gradient(90deg, var(--orange), var(--red));
  outline: none; cursor: pointer;
}
input[type=range].slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 34px; height: 34px;
  border-radius: 50%; background: #fff; border: 5px solid var(--red);
  box-shadow: var(--shadow); cursor: grab;
}
input[type=range].slider::-moz-range-thumb {
  width: 34px; height: 34px; border-radius: 50%; background: #fff;
  border: 5px solid var(--red); cursor: grab;
}
.slider-ends { display: flex; justify-content: space-between; color: var(--ink-soft); font-weight: 700; font-size: .85rem; margin-top: 8px; }
.preset-amts { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 22px 0 6px; }
.preset-amts button {
  font-family: var(--font-display); font-weight: 600; cursor: pointer;
  border: 2px solid var(--line); background: #fff; color: var(--ink);
  padding: 8px 18px; border-radius: 999px; transition: .18s;
}
.preset-amts button:hover, .preset-amts button.active {
  border-color: var(--red); background: #ffe9e4; color: var(--red);
}

/* ---- 11. Events -------------------------------------------------------- */
.event-card {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 22px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event-date {
  text-align: center; background: var(--cream-2); border-radius: 14px; padding: 12px 6px;
  line-height: 1;
}
.event-date .mon { font-family: var(--font-display); font-weight: 700; color: var(--red); text-transform: uppercase; font-size: .9rem; letter-spacing: .05em; }
.event-date .day { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--ink); }
.event-date .yr { font-size: .75rem; color: var(--ink-soft); font-weight: 700; }
.event-info h3 { font-size: 1.25rem; margin-bottom: 4px; }
.event-info .meta { color: var(--ink-soft); font-weight: 700; font-size: .92rem; display: flex; flex-wrap: wrap; gap: 14px; }
.event-info p { margin: 8px 0 0; color: var(--ink-soft); }
.event-tag {
  font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 999px; display: inline-block;
}
.tag-up { background: #e7f7d8; color: #4f8a1d; }
.tag-past { background: #efeaf3; color: #7a5a8e; }
.event-actions { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }

/* Featured next event */
.next-event {
  background: var(--ink); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px); box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.next-event::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-rainbow); opacity: .14; mix-blend-mode: screen;
}
.next-event > * { position: relative; }
.next-event h2 { color: #fff; }
.next-event .meta-grid { display: grid; grid-template-columns: repeat(3, auto); gap: 28px; margin: 22px 0 28px; }
.next-event .meta-grid .mlabel { color: #b8b3cc; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.next-event .meta-grid .mval { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }

/* ---- 12. Forms --------------------------------------------------------- */
.form-card {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .95rem; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 16px; border: 2px solid var(--line); border-radius: 14px;
  background: var(--cream); transition: border-color .18s, box-shadow .18s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(41,171,226,.15);
  background: #fff;
}
.form-note { font-size: .9rem; color: var(--ink-soft); margin-top: 4px; }
.form-status { margin-top: 16px; padding: 14px 18px; border-radius: 14px; font-weight: 700; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #e7f7d8; color: #3f7016; }
.form-status.err { background: #ffe2dd; color: #c0392b; }

/* ---- 13. FAQ accordion -------------------------------------------------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; margin-bottom: 14px; box-shadow: var(--shadow); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 22px; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { flex: 0 0 auto; transition: transform .25s; color: var(--red); font-size: 1.4rem; line-height: 1; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a .faq-a-inner { padding: 0 22px 20px; color: var(--ink-soft); }

/* ---- 14. CTA band ------------------------------------------------------- */
.cta-band {
  background: var(--grad-warm); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px); text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 1.15rem; max-width: 560px; margin: 0 auto 24px; }

/* ---- 15. Contact info cards -------------------------------------------- */
.info-card { display: flex; gap: 16px; align-items: flex-start; }
.info-card .info-icon { flex: 0 0 50px; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color: #fff; }
.info-card h4 { font-family: var(--font-display); margin-bottom: 2px; }
.info-card p, .info-card a { margin: 0; color: var(--ink-soft); }

/* ---- 16. Page header (interior pages) ---------------------------------- */
.page-hero { padding: clamp(48px, 7vw, 86px) 0 clamp(36px, 5vw, 56px); text-align: center; background: radial-gradient(120% 130% at 50% 0%, #fff3e6 0%, var(--cream) 60%); }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); font-size: 1.15rem; max-width: 620px; margin-inline: auto; }
.breadcrumb { font-weight: 700; color: var(--ink-soft); font-size: .9rem; margin-bottom: 14px; }
.breadcrumb a { color: var(--ink-soft); }

/* ---- 17. Footer --------------------------------------------------------- */
.site-footer { background: #211e33; color: #cfcade; padding: 64px 0 26px; margin-top: 10px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand img { width: 66px; margin-bottom: 14px; filter: drop-shadow(0 6px 14px rgba(0,0,0,.25)); }
.footer-brand b { font-family: var(--font-display); color: #fff; font-size: 1.2rem; display: block; }
.footer-brand p { font-size: .95rem; color: #aaa3c2; margin-top: 8px; }
.footer-col h4 { font-family: var(--font-display); color: #fff; font-size: 1rem; margin-bottom: 14px; letter-spacing: .03em; }
.footer-col ul { list-style: none; display: grid; gap: 9px; }
.footer-col a { color: #cfcade; font-weight: 600; font-size: .96rem; }
.footer-col a:hover { color: var(--orange); }
.social-row { display: flex; gap: 10px; margin-top: 6px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: #fff; transition: .2s;
}
.social-row a:hover { background: var(--grad-warm); transform: translateY(-3px); }
.footer-thanks {
  text-align: center; font-family: var(--font-display); font-weight: 700;
  font-size: 1.35rem; color: #fff; margin: 40px 0 22px;
}
.footer-rainbow { height: 5px; background: var(--grad-rainbow); border-radius: 5px; margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: #8d87a6; border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; }

/* ---- 18. Scroll-reveal animation --------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---- 19. Responsive ----------------------------------------------------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-cta .btn--donate { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 440px; margin-inline: auto; }
  .feature, .feature.reverse { grid-template-columns: 1fr; gap: 30px; }
  .feature.reverse .feature-media { order: -1; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .next-event .meta-grid { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 620px) {
  body { font-size: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 70px 1fr; }
  .event-actions { grid-column: 1 / -1; flex-direction: row; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stat-float { right: 6px; top: -14px; }
  .hero-logo-float { width: 96px; left: -10px; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
