/* ===================================================================
   SEHER — design system
   Palette drawn from the logo: teal, sunrise orange, gold, coral,
   navy ink on warm cream.
=================================================================== */
:root {
  --cream:      #FDF6EC;
  --cream-deep: #F7ECDB;
  --teal:       #1E8A8A;
  --teal-deep:  #136A6A;
  --orange:     #F2811D;
  --gold:       #F9B94E;
  --coral:      #EE7E6B;
  --blue:       #6EA8C9;
  --navy:       #233456;
  --ink:        #2B3447;
  --muted:      #5C6678;
  --white:      #ffffff;

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 32px;
  --shadow:    0 18px 40px -22px rgba(35, 52, 86, .35);
  --shadow-sm: 0 8px 24px -16px rgba(35, 52, 86, .45);

  --maxw: 1140px;
  --sunrise: linear-gradient(120deg, var(--gold) 0%, var(--orange) 48%, var(--coral) 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-deep); }

h1, h2, h3 { font-family: "Poppins", sans-serif; line-height: 1.15; color: var(--navy); margin: 0; }

.container { width: min(var(--maxw), 92%); margin-inline: auto; }

/* ---------- Page fade transition (between pages) ---------- */
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageIn .5s ease; }
body.is-leaving { opacity: 0; transition: opacity .28s ease; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary { background: var(--sunrise); color: #fff; box-shadow: 0 12px 24px -12px rgba(242,129,29,.7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -12px rgba(242,129,29,.8); }
.btn-ghost { background: rgba(255,255,255,.7); color: var(--teal-deep); border-color: var(--teal); }
.btn-ghost:hover { background: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header (floating rounded pill) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  padding: .85rem 0;
  background: transparent;
}
.header-inner {
  display: flex; align-items: center; justify-content: center;
  width: fit-content; max-width: 100%; margin-inline: auto;
  gap: clamp(1.4rem, 4vw, 3rem);
  padding: .45rem .6rem .45rem 1.1rem;
  background: rgba(253, 246, 236, .92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(35,52,86,.08);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; }
.brand-logo { height: 50px; width: auto; mix-blend-mode: multiply; }
.brand-word {
  font-family: "Poppins", sans-serif; font-weight: 800; letter-spacing: 1.5px;
  font-size: 1.3rem; color: var(--teal-deep);
}
.brand-fallback {
  font-family: "Poppins", sans-serif; font-weight: 800; letter-spacing: 2px;
  font-size: 1.5rem; color: var(--teal-deep);
}
.nav { display: flex; align-items: center; gap: 1.3rem; }
.nav a {
  text-decoration: none; color: var(--ink); font-weight: 500; font-size: .96rem;
  position: relative; transition: color .15s;
}
.nav a:not(.nav-cta):hover { color: var(--teal-deep); }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--orange); transition: width .2s ease;
}
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--teal); color: #fff !important; padding: .5rem 1.1rem;
  border-radius: 999px; font-weight: 600;
}
.nav-cta:hover { background: var(--teal-deep); }
.nav-support { background: var(--orange); }
.nav-support:hover { background: var(--coral); }
#support { scroll-margin-top: 96px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; margin: 5px 0; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(4rem, 9vw, 7rem); }
.hero-art { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-art .sun {
  position: absolute; top: -120px; right: -60px; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(249,185,78,.55), rgba(242,129,29,.18) 55%, transparent 70%);
  filter: blur(2px);
}
.blob { position: absolute; border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%; opacity: .5; filter: blur(6px); }
.blob-1 { width: 280px; height: 240px; top: 8%; left: -90px; background: var(--blue); opacity: .22; }
.blob-2 { width: 220px; height: 200px; bottom: -60px; right: 12%; background: var(--coral); opacity: .2; }
.blob-3 { width: 180px; height: 160px; bottom: 4%; left: 6%; background: var(--gold); opacity: .3; }
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(150px, 200px) 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem); align-items: center;
}
.hero-logo-col { display: flex; justify-content: flex-start; }
.hero-logo {
  width: 100%; max-width: 210px; aspect-ratio: 1 / 1; height: auto;
  border-radius: 50%; object-fit: cover; mix-blend-mode: multiply;
  margin-left: -18px;
}
.hero-text { min-width: 0; }
.eyebrow {
  font-family: "Poppins", sans-serif; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  font-size: .82rem; color: var(--teal-deep); margin: 0 0 1rem;
}
.hero-title { font-size: clamp(2.1rem, 5.4vw, 3.7rem); font-weight: 800; letter-spacing: -.5px; }
.hero-title .accent {
  background: var(--sunrise); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); margin: 1.4rem 0 2.2rem; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Meaning strip ---------- */
.meaning { background: var(--navy); color: #fff; padding: 2.4rem 0; }
.meaning p { margin: 0; text-align: center; font-size: clamp(1.05rem, 2.2vw, 1.3rem); max-width: 820px; margin-inline: auto; color: rgba(255,255,255,.92); }
.meaning strong { color: var(--gold); }
.meaning-word {
  display: inline-block; font-size: 1.6em; color: var(--gold); margin-right: .5rem; vertical-align: -.12em;
  font-family: "Poppins", sans-serif;
}

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-tint { background: var(--cream-deep); }
.section-eyebrow {
  font-family: "Poppins", sans-serif; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  font-size: .8rem; color: var(--orange); margin: 0 0 .6rem;
}
.section-eyebrow.light { color: var(--gold); }
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 700; letter-spacing: -.3px; }
.section-title.light { color: #fff; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-lead { color: var(--muted); margin-top: .8rem; font-size: 1.08rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3.2rem; align-items: center; }
.about-copy p { color: var(--muted); }
.about-copy .btn { margin-top: 1rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.stat-card {
  background: #fff; border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow);
  border: 1px solid rgba(35,52,86,.05);
}
.stat-wide { grid-column: 1 / -1; }
.stat-num { display: block; font-family: "Poppins", sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--teal-deep); line-height: 1.1; }
.stat-label { display: block; color: var(--muted); font-size: .94rem; margin-top: .4rem; }

/* ---------- Founder / CEO ---------- */
.founder-card {
  display: grid; grid-template-columns: 280px 1fr; gap: clamp(1.8rem, 4vw, 3.2rem);
  align-items: center; background: #fff; border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow);
  border: 1px solid rgba(35,52,86,.05);
}
.founder-photo-col { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.founder-photo {
  position: relative; width: 220px; height: 220px; border-radius: 50%; overflow: hidden;
  background: var(--sunrise); display: grid; place-items: center;
  box-shadow: 0 16px 36px -18px rgba(242,129,29,.6);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-initials { display: none; font-family: "Poppins", sans-serif; font-weight: 800; font-size: 4.5rem; color: #fff; }
.founder-photo.no-photo .founder-initials { display: block; }
.founder-highlights {
  list-style: none; margin: 1.3rem 0 1.4rem; padding: 0; display: grid; gap: .75rem; text-align: left;
}
.founder-highlights li { display: flex; align-items: flex-start; gap: .65rem; color: var(--ink); font-size: .98rem; }
.founder-highlights svg { flex-shrink: 0; width: 21px; height: 21px; color: var(--teal); margin-top: .15rem; }
.founder-highlights strong { color: var(--teal-deep); }
.founder-li { gap: .5rem; }
.founder-role { font-family: "Poppins", sans-serif; font-weight: 600; color: var(--teal-deep); margin: .1rem 0 1.1rem; }
.founder-copy p { color: var(--muted); }
.founder-copy .section-title { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.founder-note {
  background: var(--cream); border-left: 4px solid var(--gold);
  padding: .9rem 1.2rem; border-radius: 0 12px 12px 0; color: var(--ink) !important; font-style: italic;
}

/* ---------- Impact / Voices into Action ---------- */
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: center; margin-bottom: 2.4rem; }
.impact-photo {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(150deg, var(--teal), var(--blue));
  display: grid; place-items: center; box-shadow: var(--shadow);
}
.impact-photo img { width: 100%; height: 100%; object-fit: cover; }
.impact-photo-ph { display: none; flex-direction: column; align-items: center; gap: .6rem; color: rgba(255,255,255,.85); font-size: .95rem; font-weight: 500; }
.impact-photo-ph svg { width: 42px; height: 42px; }
.impact-photo.no-photo .impact-photo-ph { display: flex; }
.impact-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-bottom: 1.8rem; }
.impact-stat {
  background: var(--cream-deep); border-radius: var(--radius); padding: 1.1rem 1.2rem;
  border: 1px solid rgba(35,52,86,.05);
}
.impact-num { display: block; font-family: "Poppins", sans-serif; font-weight: 800; font-size: 1.9rem; color: var(--orange); line-height: 1; }
.impact-lbl { display: block; color: var(--muted); font-size: .9rem; margin-top: .35rem; }
.impact-copy p { color: var(--muted); }
.impact-quote {
  margin: 0 0 2rem; padding: 2rem clamp(1.5rem, 4vw, 3rem); border-radius: var(--radius-lg);
  background: var(--navy); color: #fff; font-family: "Poppins", sans-serif; font-weight: 500;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem); line-height: 1.5; text-align: center; position: relative;
}
.impact-quote cite { display: block; margin-top: 1rem; font-size: .95rem; font-style: normal; font-weight: 600; color: var(--gold); }
.impact-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; }
.impact-credits { margin: 0; color: var(--muted); font-size: .95rem; }
.impact-credits strong { color: var(--ink); }
.impact-text { margin-bottom: 2rem; }
.impact-text p { color: var(--muted); }
.impact-text p + p { margin-top: 1rem; }

/* ---------- Camp photo gallery ---------- */
.camp-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin: 1.8rem 0; }
.camp-shot {
  margin: 0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3; background: var(--cream-deep);
}
.camp-shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.camp-shot:hover img { transform: scale(1.06); }
.camp-feature { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
@media (min-width: 700px) {
  .camp-gallery { grid-template-columns: repeat(4, 1fr); }
  .camp-feature { aspect-ratio: 2.6 / 1; }
}

/* ---------- Pillars ---------- */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.pillar-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2.2rem; text-align: center;
  box-shadow: var(--shadow); border: 1px solid rgba(35,52,86,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pillar-card:hover { transform: translateY(-6px); }
.pillar-icon {
  width: 68px; height: 68px; border-radius: 20px; margin: 0 auto 1.2rem;
  display: grid; place-items: center; color: #fff;
}
.pillar-icon svg { width: 32px; height: 32px; }
.icon-strength { background: linear-gradient(135deg, var(--teal), var(--teal-deep)); }
.icon-empower  { background: linear-gradient(135deg, var(--gold), var(--orange)); }
.icon-hope     { background: linear-gradient(135deg, var(--coral), var(--orange)); }
.pillar-card h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.pillar-card p { color: var(--muted); margin: 0; }

/* ---------- Mission & Vision ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.mv-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2.4rem;
  box-shadow: var(--shadow); border-left: 6px solid var(--teal);
}
.mv-card-alt { border-left-color: var(--orange); }
.mv-text { font-size: 1.08rem; color: var(--ink); margin: 0; }

/* ---------- Programs ---------- */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.program-card {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(35,52,86,.05);
  transition: transform .2s ease;
}
.program-card:hover { transform: translateY(-5px); }
.program-tag {
  display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: var(--cream-deep); color: var(--orange); font-family: "Poppins", sans-serif;
  font-weight: 700; margin-bottom: 1rem;
}
.program-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.program-card p { color: var(--muted); margin: 0; font-size: .97rem; }
.program-card-feature { background: var(--sunrise); color: #fff; }
.program-card-feature h3 { color: #fff; }
.program-card-feature p { color: rgba(255,255,255,.94); }
.program-card-feature .program-tag { background: rgba(255,255,255,.25); color: #fff; }

/* ---------- Who we serve ---------- */
.serve { background: linear-gradient(150deg, var(--teal-deep), var(--teal) 60%, var(--blue)); position: relative; overflow: hidden; }
.serve::after {
  content: ""; position: absolute; top: -100px; right: -80px; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,185,78,.4), transparent 65%);
}
.serve-inner { position: relative; z-index: 1; max-width: 760px; }
.serve-lead { color: rgba(255,255,255,.92); font-size: 1.12rem; margin: 1.2rem 0 2rem; }
.serve-list {
  list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid;
  grid-template-columns: 1fr 1fr; gap: .8rem 1.6rem; max-width: 620px;
}
.serve-list li {
  position: relative; padding-left: 1.8rem; color: #fff; font-weight: 500;
}
.serve-list li::before {
  content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 1rem;
}
.serve-note { color: rgba(255,255,255,.92); font-style: italic; margin: 0; }

/* ---------- Get involved ---------- */
.involved-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-bottom: 3rem; }
.involved-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2.2rem; text-align: center;
  box-shadow: var(--shadow); border: 1px solid rgba(35,52,86,.05);
  transition: transform .2s ease;
}
.involved-card:hover { transform: translateY(-6px); }
.involved-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1.1rem;
  display: grid; place-items: center; background: var(--cream-deep); color: var(--teal-deep);
}
.involved-icon svg { width: 28px; height: 28px; }
.involved-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.involved-card p { color: var(--muted); margin: 0; font-size: .97rem; }

/* ---------- Form ---------- */
.form-wrap {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow); display: grid; grid-template-columns: .85fr 1.15fr; gap: 2.6rem; align-items: start;
}
.form-intro h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.form-intro p { color: var(--muted); margin: 0; }
.contact-form { display: grid; gap: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field span { font-weight: 600; font-size: .9rem; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; padding: .8rem 1rem; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(35,52,86,.16); background: var(--cream); color: var(--ink);
  transition: border-color .15s, box-shadow .15s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(30,138,138,.15); background: #fff;
}
.form-status { margin: .2rem 0 0; font-size: .94rem; font-weight: 500; min-height: 1.2em; }
.form-status.ok { color: var(--teal-deep); }
.form-status.err { color: #c0432f; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.85); padding: 3.5rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2.4rem; align-items: start; }
.footer-logo {
  height: 64px; width: auto; margin-bottom: 1rem;
  background: #fff; padding: 10px; border-radius: 18px;
  box-shadow: 0 10px 24px -14px rgba(0,0,0,.6);
}
.footer-brand .brand-fallback { color: #fff; display: block; margin-bottom: .8rem; }
.footer-brand p { margin: 0; font-size: .95rem; color: rgba(255,255,255,.7); max-width: 320px; }
.footer-links { display: grid; gap: .7rem; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,.8); text-decoration: none; transition: color .15s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact { display: grid; gap: 1rem; }
.socials { display: flex; gap: .8rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: grid; place-items: center; color: #fff; transition: background .15s, transform .15s;
}
.socials a:hover { background: var(--teal); transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 3rem; padding: 1.4rem 0; text-align: center; }
.footer-bottom p { margin: 0; font-size: .88rem; color: rgba(255,255,255,.6); }

/* ---------- Page hero (interior pages) ---------- */
.nav a.active { color: var(--orange); }
.nav a.active::after { width: 100%; background: var(--orange); }
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.6rem, 6vw, 4.5rem);
  background: var(--cream-deep);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero-title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -.5px; }
.page-hero-title .accent {
  background: var(--sunrise); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero-sub { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--muted); margin: 1.2rem 0 1.8rem; }
.page-jump { display: flex; flex-wrap: wrap; gap: .7rem; }
.page-jump a {
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .9rem; text-decoration: none;
  color: var(--teal-deep); background: #fff; padding: .5rem 1.1rem; border-radius: 999px;
  border: 1.5px solid rgba(35,52,86,.08); box-shadow: var(--shadow-sm); transition: transform .15s, color .15s;
}
.page-jump a:hover { transform: translateY(-2px); color: var(--orange); }

/* ---------- Team ---------- */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem; max-width: 760px; margin-inline: auto;
}
.team-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2.2rem 1.8rem; text-align: center;
  box-shadow: var(--shadow); border: 1px solid rgba(35,52,86,.05);
  display: flex; flex-direction: column; align-items: center;
}
.team-photo {
  position: relative; width: 132px; height: 132px; border-radius: 50%; overflow: hidden;
  margin-bottom: 1.2rem; background: var(--sunrise); display: grid; place-items: center;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo.no-photo img { display: none; }
.team-initials {
  font-family: "Poppins", sans-serif; font-weight: 800; font-size: 2.4rem; color: #fff;
}
.team-photo.no-photo .team-initials { display: block; }
.team-photo:not(.no-photo) .team-initials { display: none; }
.team-card h3 { font-size: 1.3rem; margin-bottom: .25rem; }
.team-role { font-family: "Poppins", sans-serif; font-weight: 600; color: var(--orange); font-size: .92rem; margin: 0 0 .7rem; }
.team-bio { color: var(--muted); font-size: .96rem; margin: 0 0 1.1rem; }
.team-li {
  width: 40px; height: 40px; border-radius: 50%; background: var(--cream-deep); color: var(--teal-deep);
  display: grid; place-items: center; transition: background .15s, color .15s, transform .15s; margin-top: auto;
}
.team-li:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.team-card-join { background: var(--cream); border: 1.5px dashed rgba(30,138,138,.35); box-shadow: var(--shadow-sm); }
.team-photo-join { background: #fff; border: 1.5px dashed rgba(30,138,138,.35); color: var(--teal); }
.team-photo-join svg { width: 52px; height: 52px; }
.btn-sm { padding: .6rem 1.2rem; font-size: .9rem; margin-top: auto; }

/* ---------- What We Do: home teaser band ---------- */
.cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  background: #fff; border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow); border: 1px solid rgba(35,52,86,.05);
}
.cta-band-text { max-width: 640px; }
.cta-band-text .section-lead { margin-top: .6rem; }
.cta-band .btn { flex-shrink: 0; }

/* ---------- Projects ---------- */
.project {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.8rem);
  box-shadow: var(--shadow); border: 1px solid rgba(35,52,86,.05);
}
.project-head { max-width: 760px; margin-bottom: 2rem; }
.project-title { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: .7rem 0 .6rem; }
.project-intro { color: var(--muted); margin: 0; }
.project-status {
  display: inline-block; font-family: "Poppins", sans-serif; font-weight: 600;
  font-size: .78rem; letter-spacing: .5px; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 999px;
}
.status-past { background: rgba(30,138,138,.12); color: var(--teal-deep); }
.status-soon { background: rgba(242,129,29,.14); color: var(--orange); }

/* ---------- What's next card ---------- */
.next-card {
  text-align: center; max-width: 720px; margin-inline: auto;
  background: var(--cream-deep); border: 1.5px dashed rgba(242,129,29,.4);
  border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.2rem);
}
.next-card .section-title { margin: 1rem 0 .8rem; }
.next-card p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.next-cta-line { font-weight: 600; color: var(--navy) !important; margin-top: 1.4rem !important; }
.next-card .btn { margin-top: 1.2rem; }

/* ===================================================================
   Responsive
=================================================================== */
@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 0 auto 0 0; width: min(82%, 300px);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: .25rem; background: var(--cream); padding: 5.5rem 1.5rem 2rem;
    box-shadow: 18px 0 60px -24px rgba(35,52,86,.55);
    border-right: 1px solid rgba(35,52,86,.1);
    transform: translateX(-100%); visibility: hidden;
    transition: transform .3s ease, visibility 0s linear .3s; z-index: 10;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); visibility: visible; transition: transform .3s ease; }
  .nav a {
    font-size: 1.1rem; padding: .85rem .6rem; border-radius: 12px;
    border-bottom: 1px solid rgba(35,52,86,.08);
  }
  .nav a::after { display: none !important; }
  .nav a.active { color: var(--orange); background: rgba(242,129,29,.08); }
  .nav-cta { text-align: center; margin-top: .9rem; border-bottom: 0; }
  /* dim the page behind the open menu */
  body.menu-open::before {
    content: ""; position: fixed; inset: 0; background: rgba(35,52,86,.5);
    z-index: 55;
  }
  body.menu-open { overflow: hidden; }
  .header-inner { width: 100%; justify-content: space-between; gap: 1rem; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-toggle { display: block; z-index: 20; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .hero-inner { grid-template-columns: 1fr; gap: 1.4rem; }
  .hero-logo-col { justify-content: flex-start; }
  .hero-logo { max-width: 160px; margin-left: 0; }
  .about-grid, .mv-grid, .form-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .founder-card { grid-template-columns: 1fr; gap: 1.8rem; text-align: center; }
  .founder-note { text-align: left; }
  .founder-highlights { max-width: 440px; margin-inline: auto; }
  .impact-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .impact-footer { flex-direction: column; align-items: flex-start; }
  .pillars-grid, .programs-grid, .involved-grid { grid-template-columns: 1fr; }
}
@media (min-width: 560px) and (max-width: 900px) {
  .pillars-grid, .programs-grid, .involved-grid { grid-template-columns: 1fr 1fr; }
  .program-card-feature { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .hero-logo { max-width: 140px; }
  .field-row { grid-template-columns: 1fr; }
  .serve-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-actions .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  body { animation: none !important; }
  body.is-leaving { opacity: 1 !important; }
}
