/* ==========================================================================
   Elevation Learning & Development Foundation
   Design System — v1.0
   A refined, premium identity built on the logo's color story:
   deep navy, teal, emerald, gold, and purple — the colors of the ring.
   ========================================================================== */

/* ---- Fonts: Fraunces (display, characterful serif) + Mulish (body) ---- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,500&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ---- Design Tokens ---- */
:root {
  /* Brand colors pulled from the logo */
  --navy:      #14254C;
  --navy-deep: #0B1733;
  --sapphire:  #2A4F9E;
  --teal:      #2E9C92;
  --teal-deep: #1E7A72;
  --emerald:   #6FB04A;
  --gold:      #E4B53D;
  --gold-deep: #C9962A;
  --purple:    #7A4A9E;
  --purple-deep:#5E3680;

  /* Neutrals */
  --ink:       #16202E;
  --slate:     #4A5568;
  --mist:      #8A95A5;
  --cloud:     #F6F8FB;
  --paper:     #FFFFFF;
  --line:      #E4E9F0;

  /* Functional */
  --bg:        #FFFFFF;
  --bg-alt:    #F6F8FB;
  --bg-ink:    #0B1733;

  /* Type */
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body:    'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Rhythm */
  --container: 1200px;
  --container-narrow: 880px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 10px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11,23,51,.06), 0 4px 12px rgba(11,23,51,.04);
  --shadow:    0 4px 20px rgba(11,23,51,.08), 0 12px 40px rgba(11,23,51,.06);
  --shadow-lg: 0 20px 60px rgba(11,23,51,.16), 0 8px 24px rgba(11,23,51,.08);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--navy); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.12; color: var(--navy); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1.1rem; color: var(--slate); }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.55; color: var(--slate); font-weight: 400; }

.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold);
  display: inline-block;
}

.script-accent { font-style: italic; font-family: var(--display); color: var(--teal-deep); font-weight: 500; }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.container-narrow { max-width: var(--container-narrow); }
section { padding-block: clamp(4rem, 9vw, 8rem); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }

.bg-alt { background: var(--bg-alt); }
.bg-ink {
  background: var(--bg-ink);
  background-image:
    radial-gradient(1100px 500px at 80% -10%, rgba(46,156,146,.22), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(122,74,158,.22), transparent 60%);
  color: #D6DEEC;
}
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }
.bg-ink p { color: #AEB9CC; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--body); font-weight: 700; font-size: .98rem;
  padding: .92rem 1.7rem; border-radius: 100px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  cursor: pointer; white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff; box-shadow: 0 8px 24px rgba(46,156,146,.32);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(46,156,146,.42); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--navy-deep); box-shadow: 0 8px 24px rgba(228,181,61,.34);
}
.btn-gold:hover { color: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(228,181,61,.46); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn-outline:hover { color: var(--navy); border-color: var(--teal); background: var(--cloud); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.25); }
.btn-ghost-light:hover { background: rgba(255,255,255,.18); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.1rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 2rem;
}
.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .b1 { font-family: var(--display); font-weight: 700; font-size: 1.12rem; color: var(--navy); letter-spacing: -.01em; }
.brand-text .b2 { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-deep); font-weight: 700; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; }
.nav-links a {
  color: var(--ink); font-weight: 600; font-size: .96rem;
  padding: .55rem .85rem; border-radius: 8px; position: relative;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: var(--teal-deep); background: var(--cloud); }
.nav-links a.active { color: var(--teal-deep); }
.nav-links a.active::after {
  content: ''; position: absolute; left: .85rem; right: .85rem; bottom: .15rem;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: .6rem; }

/* Mobile nav */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); position: relative; transition: .3s var(--ease); }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--navy); transition: .3s var(--ease); }
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav-links, .nav-cta { display: none; }
  .mobile-menu.open ~ .nav .nav-toggle { }
  .mobile-menu {
    position: fixed; inset: 76px 0 auto 0; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-120%); transition: transform .4s var(--ease);
    padding: 1.25rem var(--gutter) 2rem; z-index: 99; max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { display: block; padding: .95rem .5rem; font-weight: 600; font-size: 1.1rem; color: var(--navy); border-bottom: 1px solid var(--line); }
  .mobile-menu a:last-of-type { border-bottom: none; }
  .mobile-menu .btn { margin-top: 1rem; }
}
@media (min-width: 981px) { .mobile-menu { display: none; } }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; background: var(--cloud); }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1000px 600px at 85% 8%, rgba(46,156,146,.14), transparent 55%),
    radial-gradient(800px 600px at 10% 95%, rgba(122,74,158,.12), transparent 55%),
    radial-gradient(700px 500px at 60% 100%, rgba(228,181,61,.10), transparent 55%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; padding-block: clamp(2rem, 4vw, 3.5rem) clamp(3rem, 6vw, 5rem);
}
.hero-copy h1 { margin-bottom: 1.4rem; }
.hero-copy h1 .grad {
  background: linear-gradient(115deg, var(--teal) 0%, var(--emerald) 45%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-copy .lead { margin-bottom: 2rem; max-width: 33ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.4rem; }
.hero-stats { display: flex; gap: 2.2rem; flex-wrap: wrap; }
.hero-stats .stat { }
.hero-stats .num { font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.hero-stats .lbl { font-size: .82rem; color: var(--mist); font-weight: 600; margin-top: .3rem; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-logo-card {
  position: relative; background: #fff; border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); width: 100%; max-width: 480px;
}
.hero-logo-card img { width: 100%; height: auto; }
.hero-logo-card::before {
  content: ''; position: absolute; inset: -2px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal), var(--emerald), var(--gold), var(--purple));
  z-index: -1; opacity: .5; filter: blur(18px);
}
.hero-float {
  position: absolute; background: #fff; border-radius: 14px; padding: .85rem 1.1rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: .65rem;
  font-weight: 700; font-size: .9rem; color: var(--navy); border: 1px solid var(--line);
  text-decoration: none; transition: box-shadow .25s var(--ease); z-index: 2;
}
a.hero-float:hover { color: var(--navy); box-shadow: var(--shadow-lg); }

.hero-float .dot { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.hero-float.f1 { top: 8%; left: -6%; animation: floaty 5s ease-in-out infinite; }
.hero-float.f2 { bottom: 10%; right: -5%; animation: floaty 6s ease-in-out infinite .8s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { order: -1; padding-block: 3rem 2.6rem; }
  .hero-float.f1 { top: 0.4rem; left: 0; }
  .hero-float.f2 { bottom: 0.4rem; right: 0; }
}
@media (max-width: 420px) {
  .hero-float { font-size: .8rem; padding: .7rem .9rem; }
  .hero-float .dot { width: 28px; height: 28px; }
  .hero-logo-card { max-width: 300px; }
}

/* ---- Section header ---- */
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 1rem; }

/* ---- Pillars / cards grid ---- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card .icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 1.3rem; color: #fff;
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.card p { font-size: .98rem; }

/* Pillar accent colors */
.accent-teal    { background: linear-gradient(135deg, var(--teal), var(--teal-deep)); }
.accent-emerald { background: linear-gradient(135deg, var(--emerald), #4E8F33); }
.accent-gold    { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); }
.accent-purple  { background: linear-gradient(135deg, var(--purple), var(--purple-deep)); }
.accent-navy    { background: linear-gradient(135deg, var(--sapphire), var(--navy)); }

.pillar-card { padding-top: 2.2rem; }
.pillar-card .ptag { font-family: var(--display); font-style: italic; font-size: .9rem; color: var(--mist); margin-bottom: .3rem; display: block; }
.pillar-card .bar { height: 4px; width: 46px; border-radius: 4px; margin-bottom: 1.3rem; }

/* ---- Feature split ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.rev .split-media { order: 2; }
@media (max-width: 860px) { .split, .split.rev { grid-template-columns: 1fr; } .split.rev .split-media { order: 0; } }
.split-media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--navy), var(--sapphire)); aspect-ratio: 4/3;
  display: grid; place-items: center; position: relative;
}
.split-media.gradient-warm { background: linear-gradient(135deg, var(--gold), var(--purple)); }
.split-media.gradient-cool { background: linear-gradient(135deg, var(--teal), var(--emerald)); }
.split-media .emblem-watermark { width: 60%; opacity: .9; filter: drop-shadow(0 10px 30px rgba(0,0,0,.2)); }

.checklist { list-style: none; margin-top: 1.4rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: .9rem; color: var(--slate); }
.checklist li svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* ---- Stats band ---- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
@media (max-width: 760px) { .stats-band { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; } }
.stat-big .num { font-family: var(--display); font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 700; color: #fff; line-height: 1; }
.stat-big .num .unit { color: var(--gold); }
.stat-big .lbl { color: #AEB9CC; font-weight: 600; margin-top: .5rem; font-size: .95rem; }

/* ---- CTA band ---- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 5rem); text-align: center; }
.cta-band .container-narrow { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: #C7D0E0; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }

/* ---- Footer ---- */
.site-footer { background: var(--navy-deep); color: #AEB9CC; padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 54px; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 1.1rem; }
.footer-brand p { color: #8A95A5; font-size: .95rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-family: var(--body); font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul li { margin-bottom: .65rem; }
.footer-col a { color: #AEB9CC; font-size: .96rem; }
.footer-col a:hover { color: var(--gold); }
.footer-newsletter input {
  width: 100%; padding: .8rem 1rem; border-radius: 10px; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06); color: #fff; font-family: inherit; font-size: .95rem; margin-bottom: .7rem;
}
.footer-newsletter input::placeholder { color: #6B7689; }
.footer-newsletter input:focus { outline: none; border-color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.6rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem; color: #6B7689;
}
.footer-bottom a { color: #8A95A5; } .footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* ---- Page hero (interior pages) ---- */
.page-hero { background: var(--bg-ink); padding-block: clamp(3.5rem, 7vw, 6rem) clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; max-width: 18ch; }
.page-hero p { color: #AEB9CC; max-width: 56ch; font-size: 1.15rem; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: #6B7689; margin-bottom: 1.5rem; font-weight: 600; }
.breadcrumb a { color: var(--teal); } .breadcrumb span { color: #46506680; }

/* ---- Prose ---- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 2rem; margin-bottom: .75rem; }
.prose p, .prose li { color: var(--slate); }
.prose ul { list-style: none; margin: 1rem 0 1.5rem; }
.prose ul li { position: relative; padding-left: 1.6rem; margin-bottom: .6rem; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; border-radius: 2px; background: var(--gold); }
.prose blockquote { border-left: 4px solid var(--teal); padding: .5rem 0 .5rem 1.5rem; margin: 1.5rem 0; font-family: var(--display); font-style: italic; font-size: 1.3rem; color: var(--navy); }

/* ---- Donate page ---- */
.donate-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .donate-grid { grid-template-columns: 1fr; } }
.donate-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.5rem); box-shadow: var(--shadow); position: sticky; top: 100px;
}
@media (max-width: 900px) { .donate-card { position: static; } }
.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-bottom: 1rem; }
.amount-btn {
  padding: 1rem .5rem; border-radius: 12px; border: 1.5px solid var(--line); background: #fff;
  font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: var(--navy);
  transition: all .2s var(--ease); position: relative;
}
.amount-btn .sub { display: block; font-family: var(--body); font-size: .68rem; font-weight: 600; color: var(--mist); margin-top: .2rem; letter-spacing: .02em; }
.amount-btn:hover { border-color: var(--teal); background: var(--cloud); }
.amount-btn.selected { border-color: var(--teal); background: var(--teal); color: #fff; box-shadow: 0 8px 20px rgba(46,156,146,.3); }
.amount-btn.selected .sub { color: rgba(255,255,255,.85); }
.freq-toggle { display: flex; gap: .4rem; background: var(--cloud); padding: .35rem; border-radius: 100px; margin-bottom: 1.4rem; }
.freq-toggle button { flex: 1; padding: .65rem; border-radius: 100px; font-weight: 700; font-size: .92rem; color: var(--slate); transition: all .2s var(--ease); }
.freq-toggle button.active { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.custom-amount { position: relative; margin-bottom: 1.2rem; }
.custom-amount span { position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%); font-weight: 700; color: var(--mist); font-size: 1.1rem; }
.custom-amount input {
  width: 100%; padding: 1rem 1rem 1rem 2.2rem; border-radius: 12px; border: 1.5px solid var(--line);
  font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: var(--navy);
}
.custom-amount input:focus { outline: none; border-color: var(--teal); }
.impact-note { background: var(--cloud); border-radius: 12px; padding: 1rem 1.2rem; font-size: .92rem; color: var(--slate); margin-bottom: 1.4rem; display: flex; gap: .7rem; align-items: flex-start; }
.impact-note svg { width: 20px; height: 20px; color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; }

.impact-tier { display: flex; gap: 1rem; align-items: flex-start; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.impact-tier:last-child { border-bottom: none; }
.impact-tier .amt { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--teal-deep); flex-shrink: 0; width: 90px; }
.impact-tier h4 { margin-bottom: .25rem; }
.impact-tier p { font-size: .92rem; margin: 0; }

/* ---- Forms ---- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; font-size: .88rem; color: var(--navy); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 10px; border: 1.5px solid var(--line);
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(46,156,146,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: .82rem; color: var(--mist); margin-top: .35rem; }
.form-note { font-size: .85rem; color: var(--mist); margin-top: 1rem; }

/* ---- FAQ accordion ---- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; padding: 1.4rem 0; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; font-family: var(--display); font-weight: 600; font-size: 1.2rem; color: var(--navy);
}
.faq-q .chev { width: 26px; height: 26px; flex-shrink: 0; color: var(--teal); transition: transform .3s var(--ease); }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding-bottom: 1.4rem; color: var(--slate); }
.faq-item.open .faq-a { max-height: 600px; }

/* ---- Pillbadge / chips ---- */
.chip { display: inline-flex; align-items: center; gap: .4rem; padding: .35rem .85rem; border-radius: 100px; font-size: .8rem; font-weight: 700; background: var(--cloud); color: var(--teal-deep); border: 1px solid var(--line); }

/* ---- Team / board ---- */
.person { text-align: center; }
.person .avatar {
  width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 1rem; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 2.2rem; color: #fff; box-shadow: var(--shadow);
}
.person h4 { margin-bottom: .15rem; }
.person .role { color: var(--teal-deep); font-weight: 700; font-size: .88rem; }

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-item::before { content: ''; position: absolute; left: -2rem; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: var(--teal); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--teal); }
.timeline-item .yr { font-family: var(--display); font-weight: 700; color: var(--teal-deep); font-size: 1.1rem; margin-bottom: .3rem; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--line); border: none; margin-block: 3rem; }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--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; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---- Toast ---- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--navy); color: #fff; padding: 1rem 1.5rem; border-radius: 12px;
  box-shadow: var(--shadow-lg); font-weight: 600; z-index: 200; transition: transform .4s var(--ease);
  display: flex; align-items: center; gap: .7rem; max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 22px; height: 22px; color: var(--emerald); flex-shrink: 0; }
