/* ── RESET & ROOT ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --rose:    #E8606A;
  --rose-lt: #FAE8EA;
  --rose-dk: #B5404A;
  --sage:    #6AAB7A;
  --sage-lt: #EBF5EE;
  --sage-dk: #3E7A4E;
  --cream:   #FDF6EC;
  --warm:    #F5E8D8;
  --gold:    #D4955A;
  --gold-lt: #FBF0E4;
  --ink:     #2C2320;
  --muted:   #7A6860;
  --light:   #FAF7F3;
  --white:   #FFFFFF;
  --radius:  16px;
  --shadow:  0 4px 24px rgba(44,35,32,0.08);
  --shadow-lg: 0 16px 48px rgba(44,35,32,0.12);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--light);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ───────────────────────────────────── */
h1,h2,h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.1rem; }
p  { color: var(--muted); line-height: 1.8; }
a  { color: var(--rose); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── BUTTONS ──────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rose); color: #fff;
  border: none; border-radius: 50px;
  padding: 0.75rem 1.8rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--rose-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,96,106,.3); text-decoration: none; color:#fff; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(44,35,32,.25); border-radius: 50px;
  padding: 0.75rem 1.8rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500;
  cursor: pointer; transition: border-color .2s, color .2s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--rose); color: var(--rose); text-decoration: none; }
.btn-white {
  display: inline-block;
  background: #fff; color: var(--rose-dk);
  border: none; border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); text-decoration: none; color: var(--rose-dk); }
.btn-sage {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage); color: #fff;
  border: none; border-radius: 50px;
  padding: 0.75rem 1.8rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn-sage:hover { background: var(--sage-dk); transform: translateY(-2px); text-decoration: none; color:#fff; }

/* ── NAVBAR ───────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,246,236,.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,149,90,.2);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(44,35,32,.1); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 1.5rem;
}
.nav-logo {
  text-decoration: none; flex-shrink: 0; display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo:hover { text-decoration: none; opacity: 0.9; }
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--rose-dk);
  line-height: 1.2;
}
.nav-logo-sub { color: var(--sage-dk); display: block; font-size: 0.85rem; font-weight: 600; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-link {
  font-size: 0.88rem; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color .2s; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--rose); text-decoration: none; }
.nav-cta { flex-shrink: 0; font-size: 0.88rem; padding: 0.55rem 1.3rem; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ── SECTION SCAFFOLD ─────────────────────────────── */
.section { padding: 90px 5vw; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--rose); margin-bottom: .7rem; display: block;
}
.section-title { color: var(--ink); margin-bottom: .9rem; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 540px; line-height: 1.8; margin-bottom: 2.5rem; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--cream) 0%, var(--warm) 55%, #F0E4D4 100%);
  display: flex; align-items: center;
  padding: 100px 5vw 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,96,106,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(106,171,122,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rose-lt); color: var(--rose-dk);
  font-size: 0.78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero h1 { margin-bottom: 1.2rem; color: var(--ink); }
.hero h1 em { font-style: italic; color: var(--rose); }
.hero .lead { font-size: 1.05rem; color: var(--muted); max-width: 480px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
/* hero visual card stack */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card-stack { position: relative; width: 360px; height: 420px; }
.hcard {
  position: absolute; background: var(--white);
  border-radius: 24px; padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.hcard-1 { width: 280px; bottom: 0; left: 0; background: var(--sage-lt); border: 1px solid rgba(106,171,122,.3); transform: rotate(-4deg); }
.hcard-2 { width: 300px; top: 0; right: 0; transform: rotate(2deg); }
.hcard-3 { width: 270px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--rose-lt); border: 1px solid rgba(232,96,106,.2); z-index: 2; }
.hcard-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--rose-dk); line-height: 1; }
.hcard-label { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
.hcard-motto { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: var(--sage-dk); font-weight: 600; }
.hcard-sub { font-size: 0.82rem; color: var(--muted); margin-top: 10px; line-height: 1.5; }
.hcard-icon { font-size: 1.8rem; margin-bottom: 8px; }

/* ── STATS BAR ────────────────────────────────────── */
.stats-bar { background: var(--white); padding: 48px 5vw; border-bottom: 1px solid rgba(44,35,32,.06); }
.stats-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--rose); }
.stat-label { font-size: 0.88rem; color: var(--muted); }

/* ── STORY SECTION ────────────────────────────────── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 2rem; }
.story-quote {
  background: var(--cream); border-left: 4px solid var(--rose);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.8rem; margin: 1.5rem 0;
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; color: var(--ink); line-height: 1.7;
}
.founder-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 1.5rem; }
.founder-chip { display: flex; align-items: center; gap: 10px; background: var(--sage-lt); border-radius: 50px; padding: .45rem 1rem .45rem .45rem; }
.fc-avatar { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .82rem; color: #fff; }
.founder-chip span { font-size: .85rem; font-weight: 600; color: var(--sage-dk); }

/* ── VALUES GRID ──────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.value-card { background: var(--light); border-radius: var(--radius); padding: 1.2rem; border: 1px solid rgba(44,35,32,.07); transition: transform .2s, box-shadow .2s; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card.featured { background: var(--rose); }
.value-card.featured .value-name { color: #fff; }
.value-card.featured .value-desc { color: rgba(255,255,255,.8); }
.value-icon { font-size: 1.5rem; margin-bottom: .4rem; }
.value-name { font-weight: 700; font-size: .9rem; color: var(--ink); margin-bottom: 3px; }
.value-desc { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* ── MISSION SECTION ──────────────────────────────── */
.bg-ink { background: var(--ink); }
.bg-ink .section-tag { color: var(--gold); }
.bg-ink .section-title { color: #fff; }
.bg-ink .section-sub { color: rgba(255,255,255,.6); }
.mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.mission-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 1.8rem; transition: background .2s, transform .2s;
}
.mission-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.mission-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--rose); margin-bottom: .4rem; }
.mission-card h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: .6rem; }
.mission-card p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.65; }
.mission-card .italic-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,.9); }

/* ── PROGRAMS ─────────────────────────────────────── */
.bg-cream { background: var(--cream); }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 1.5rem; }
.program-card { background: var(--white); border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(44,35,32,.07); transition: transform .2s, box-shadow .2s; }
.program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.prog-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; }
.ic-rose { background: var(--rose-lt); }
.ic-sage { background: var(--sage-lt); }
.ic-gold { background: var(--gold-lt); }
.program-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.program-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── GOVERNANCE ───────────────────────────────────── */
.bg-warm { background: var(--warm); }
.gov-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.gov-card { background: var(--white); border-radius: var(--radius); padding: 1.8rem; border: 1px solid rgba(44,35,32,.07); }
.gov-card h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem; }
.gov-list { list-style: none; }
.gov-list li { font-size: .88rem; color: var(--muted); padding: 5px 0; border-bottom: 1px solid rgba(44,35,32,.06); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.gov-list li::before { content: '→'; color: var(--rose); font-size: .8rem; margin-top: 2px; flex-shrink: 0; }
.gov-list li:last-child { border-bottom: none; }

/* ── TEAM ─────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 1.5rem; }
.team-card { background: var(--light); border-radius: var(--radius); padding: 1.5rem; text-align: center; border: 1px solid rgba(44,35,32,.06); transition: transform .2s; }
.team-card:hover { transform: translateY(-4px); }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto .9rem; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: #fff; }
.team-card h3 { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.team-role { font-size: .8rem; color: var(--muted); }
.team-dept { display: inline-block; margin-top: 8px; font-size: .72rem; font-weight: 600; border-radius: 50px; padding: 2px 10px; }
.dept-rose { background: var(--rose-lt); color: var(--rose-dk); }
.dept-sage { background: var(--sage-lt); color: var(--sage-dk); }
.dept-gold { background: var(--gold-lt); color: var(--gold); }

/* ── DONATE SECTION ───────────────────────────────── */
.bg-rose { background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dk) 100%); }
.bg-rose .section-tag { color: rgba(255,255,255,.75); }
.bg-rose .section-title { color: #fff; }
.bg-rose .section-sub { color: rgba(255,255,255,.8); }
.donate-ways { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.donate-way {
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.3);
  border-radius: var(--radius); padding: 1.4rem 2rem; min-width: 190px;
  text-align: center; cursor: pointer; transition: background .2s, transform .2s;
  color: #fff; text-decoration: none;
}
.donate-way:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); text-decoration: none; color: #fff; }
.dw-icon { font-size: 2rem; margin-bottom: .4rem; }
.dw-label { font-size: .9rem; font-weight: 700; }
.dw-sub { font-size: .78rem; opacity: .75; margin-top: 3px; }

/* ── CONTACT FORM ─────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info p { margin-bottom: .5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1.4rem; }
.contact-item .ci-icon { width: 44px; height: 44px; background: var(--rose-lt); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item h4 { font-size: .88rem; font-weight: 700; color: var(--ink); }
.contact-item p { font-size: .88rem; color: var(--muted); margin: 0; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid rgba(44,35,32,.15); border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: .95rem; color: var(--ink);
  background: var(--white); transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(232,96,106,.12); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.alert { padding: .9rem 1.2rem; border-radius: 10px; font-size: .9rem; margin-bottom: 1.2rem; }
.alert-success { background: var(--sage-lt); color: var(--sage-dk); border: 1px solid rgba(106,171,122,.3); }
.alert-error   { background: var(--rose-lt);  color: var(--rose-dk);  border: 1px solid rgba(232,96,106,.3); }

/* ── PAGE HERO (inner pages) ──────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--cream) 0%, var(--warm) 100%);
  padding: 130px 5vw 70px;
  text-align: center;
}
.page-hero .section-tag { justify-content: center; display: flex; }
.page-hero h1 { margin-bottom: .8rem; color: var(--ink); }
.page-hero .lead { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ── BREADCRUMB ───────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--muted); margin-bottom: 1rem; justify-content: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--rose); }
.breadcrumb span { color: var(--muted); }

/* ── FOOTER ───────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.65); padding: 60px 5vw 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 1.8rem; }
.footer-brand h2 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.25rem; margin-bottom: .6rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; }
.footer-motto { display: block; font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); font-size: .9rem; margin-top: 1rem; }
.footer-col h4 { color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: .9rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--rose); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.35); }

/* ── FADE-UP ANIMATION ────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission-grid, .gov-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 5vw; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 68px; left: 0; right: 0; background: rgba(253,246,236,.97); border-bottom: 1px solid rgba(212,149,90,.2); padding: 1rem 5vw; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .mission-grid, .gov-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-inner { gap: 1.5rem; }
}
