
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #020261;
  --purple: #6630e4;
  --warm: #f5f0e8;
  --cream: #faf7f2;
  --sand: #ede8df;
  --text: #111;
  --muted: #666;
  --light: #f0eee9;
  --border: #ddd8cf;
  --white: #fff;
  --teal: #0e8a7a;
  --teal-light: #e6f4f2;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--cream); line-height: 1.75; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: 64px; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); text-decoration: none; font-weight: 700; letter-spacing: 0.01em; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.nav-donate { background: var(--navy); color: var(--white); padding: 9px 22px; font-size: 14px; text-decoration: none; transition: background 0.2s; }
.nav-donate:hover { background: var(--purple); }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 22px; height: 1.5px; background: var(--text); display: block; }
.mobile-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 99; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 2rem; flex-direction: column; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--text); text-decoration: none; font-size: 0.95rem; padding: 0.65rem 0; border-bottom: 1px solid var(--border); }

/* HERO */
.hero { padding: 140px 2rem 100px; background: var(--cream); border-bottom: 1px solid var(--border); }
.hero-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.hero-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--purple); margin-bottom: 1.25rem; }
.hero h1 { font-size: clamp(2.6rem, 4.5vw, 3.8rem); color: var(--navy); font-weight: 700; }
.hero h1 em { font-style: italic; color: var(--purple); }
.hero-sub { font-size: 1rem; color: var(--muted); margin: 1.5rem 0 2.5rem; max-width: 440px; line-height: 1.85; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn { display: inline-block; padding: 12px 28px; font-size: 14px; text-decoration: none; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--purple); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.stat-n { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy); font-weight: 700; }
.stat-l { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* === PHOTO SLIDESHOW === */
.hero-img { position: relative; }
.slideshow { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; background: var(--light); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 10; }
.slide-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.45); border: none; cursor: pointer; transition: background 0.3s; padding: 0; }
.slide-dot.active { background: rgba(255,255,255,0.95); }
.slide-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(2,2,97,0.55); color: #fff; border: none; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; font-size: 13px; transition: background 0.2s; }
.slide-btn:hover { background: rgba(102,48,228,0.8); }
.slide-btn.prev { left: 12px; }
.slide-btn.next { right: 12px; }
.img-caption { margin-top: 0.75rem; font-size: 12px; color: var(--muted); }

/* GALLERY SLIDESHOW STRIP */
.gallery { background: var(--sand); padding: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.g-item { aspect-ratio: 4/3; overflow: hidden; background: var(--light); position: relative; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.04); }

/* SECTIONS */
section { padding: 90px 2rem; }
.container { max-width: 1160px; margin: 0 auto; }
.sec-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--purple); margin-bottom: 0.75rem; }
.sec-title { font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--navy); margin-bottom: 0.75rem; }
.sec-line { width: 40px; height: 2px; background: var(--purple); margin: 1rem 0 1.5rem; }
.sec-lead { font-size: 0.97rem; color: var(--muted); max-width: 580px; line-height: 1.85; }

/* MISSION */
.mission { background: var(--warm); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.mission-body p { font-size: 0.95rem; color: #333; line-height: 1.85; margin-bottom: 1rem; }
.quote-block { margin-top: 2rem; padding: 1.75rem; border-left: 3px solid var(--navy); background: var(--white); }
.quote-block p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; color: var(--navy); line-height: 1.75; }
.quote-block cite { display: block; margin-top: 1rem; font-size: 12px; color: var(--muted); font-style: normal; letter-spacing: 0.04em; }
.mission-aside { display: flex; flex-direction: column; gap: 1.5rem; }
.aside-img { width: 100%; aspect-ratio: 3/2; background: var(--border); overflow: hidden; }
.aside-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aside-note { padding: 1.5rem; background: var(--navy); color: rgba(255,255,255,0.75); font-size: 0.875rem; line-height: 1.8; }
.aside-note strong { color: var(--white); }

/* AIMS */
.aims { background: var(--cream); }
.aims-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 3rem; background: var(--border); border: 1px solid var(--border); }
.aim { background: var(--white); padding: 2rem; }
.aim-icon { font-size: 1.1rem; color: var(--purple); margin-bottom: 1rem; }
.aim h3 { font-size: 0.95rem; font-family: 'DM Sans', sans-serif; font-weight: 500; color: var(--navy); margin-bottom: 0.4rem; }
.aim p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; }

/* OBJECTIVES */
.objectives { background: var(--teal-light); }
.obj-list { margin-top: 3rem; border: 1px solid #c5deda; }
.obj { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.5rem 2rem; background: var(--white); border-bottom: 1px solid #c5deda; }
.obj:last-child { border-bottom: none; }
.obj-n { flex-shrink: 0; font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #b0ceca; font-weight: 700; min-width: 36px; }
.obj h4 { font-size: 0.9rem; font-family: 'DM Sans', sans-serif; font-weight: 500; color: var(--navy); margin-bottom: 0.3rem; }
.obj p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; }

/* IMPACT — dark band */
.impact { background: var(--navy); padding: 80px 2rem; }
.impact .sec-label { color: rgba(102,48,228,0.8); }
.impact .sec-title { color: var(--white); }
.impact .sec-line { background: var(--purple); }
.impact .sec-lead { color: rgba(255,255,255,0.5); }
.impact-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 3rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); }
.impact-cell { background: var(--navy); padding: 2rem 1.5rem; text-align: center; }
.impact-n { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--white); font-weight: 700; }
.impact-l { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.25rem; }

/* PEOPLE */
.people { background: var(--warm); }
.people-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.people-text p { font-size: 0.95rem; color: #333; line-height: 1.85; margin-bottom: 1rem; }
.people-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.p-photo { aspect-ratio: 3/4; background: var(--light); overflow: hidden; }
.p-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.p-photo:nth-child(odd) { margin-top: 1.5rem; }

/* FOUNDERS */
.founders { background: var(--sand); }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.founder { background: var(--white); border: 1px solid var(--border); display: flex; flex-direction: column; overflow: hidden; transition: box-shadow 0.25s ease, transform 0.25s ease; }
.founder:hover { box-shadow: 0 14px 32px rgba(2,2,97,0.10); transform: translateY(-3px); }
.founder-photo { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--light); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.photo-fallback { position: absolute; inset: 0; background: var(--navy); color: var(--white); align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; }
.founder-body { padding: 1.75rem 2rem 2rem; }
.founder-name { font-size: 1.1rem; font-family: 'Playfair Display', serif; color: var(--navy); }
.founder-role { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--purple); margin: 4px 0 0.75rem; }
.founder-bio { font-size: 0.85rem; color: var(--muted); line-height: 1.75; }
.registered { margin-top: 2rem; padding: 1.25rem 1.75rem; border-left: 2px solid var(--purple); background: var(--white); font-size: 0.875rem; color: var(--muted); }
.registered strong { color: var(--navy); }

/* === DONATE + BANK ACCOUNT === */
.donate { background: var(--navy); padding: 100px 2rem; }
.donate-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.donate .sec-label { color: rgba(102,48,228,0.8); }
.donate .sec-title { color: var(--white); }
.donate .sec-line { background: var(--purple); margin: 1rem auto 1.5rem; }
.donate .sec-lead { color: rgba(255,255,255,0.5); margin: 0 auto 2.5rem; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); margin-bottom: 2.5rem; }
.tier { background: var(--navy); padding: 2rem 1rem; cursor: pointer; transition: background 0.2s; }
.tier:hover, .tier.active { background: rgba(102,48,228,0.2); }
.tier-amt { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); }
.tier-desc { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.4rem; line-height: 1.6; }
.btn-donate { background: var(--purple); color: var(--white); padding: 14px 44px; font-size: 0.95rem; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-donate:hover { background: #7a42f5; }
.donate-note { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 1.25rem; }

/* Bank Account Box */
.bank-box { margin-top: 3rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 2rem; text-align: left; }
.bank-box-title { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.1rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.6rem; }
.bank-box-title i { color: var(--purple); font-size: 1rem; }
.bank-box-sub { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-bottom: 1.5rem; }
.bank-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); }
.bank-field { background: rgba(2,2,61,0.6); padding: 1rem 1.25rem; }
.bank-field-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 5px; }
.bank-field-val { font-size: 0.9rem; color: var(--white); font-weight: 500; letter-spacing: 0.03em; }
.bank-field-val.mono { font-family: 'Courier New', monospace; font-size: 1rem; font-weight: 500; color:   #f5f0ff; letter-spacing: 0.08em; }
.bank-note { margin-top: 1rem; font-size: 11px; color: rgba(255,255,255,0.2); line-height: 1.7; }

/* CONTACT */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.c-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.c-icon { flex-shrink: 0; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 15px; border: 1px solid var(--border); background: var(--white); }
.c-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 3px; }
.c-val { font-size: 0.9rem; color: var(--text); }
.c-val a { color: var(--purple); text-decoration: none; }
.map-box { background: var(--warm); border: 1px solid var(--border); min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; color: var(--muted); padding: 2rem; text-align: center; }
.map-box i { font-size: 2rem; color: var(--border); }
.map-box strong { color: var(--navy); font-size: 1rem; display: block; margin-bottom: 0.25rem; }
.map-box p { font-size: 0.85rem; line-height: 1.7; }

/* FOOTER */
footer { background: #02023f; color: rgba(255,255,255,0.45); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.f-brand { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--white); margin-bottom: 0.75rem; }
.f-tag { font-size: 0.83rem; line-height: 1.8; color: rgba(255,255,255,0.3); }
.f-col h5 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(102,48,228,0.8); margin-bottom: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.f-col a { display: block; font-size: 0.83rem; color: rgba(255,255,255,0.35); text-decoration: none; margin-bottom: 0.5rem; transition: color 0.2s; }
.f-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1160px; margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.2); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero-label   { animation: fadeUp 0.6s ease 0.1s both; }
.hero h1      { animation: fadeUp 0.7s ease 0.25s both; }
.hero-sub     { animation: fadeUp 0.7s ease 0.4s both; }
.hero-actions { animation: fadeUp 0.7s ease 0.55s both; }
.hero-stats   { animation: fadeUp 0.7s ease 0.7s both; }
.hero-img     { animation: fadeIn 1s ease 0.3s both; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner, .mission-grid, .people-grid, .contact-grid, .founders-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-sub { max-width: 100%; }
  .impact-row { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .aims-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .g-item:last-child { display: none; }
  .tiers { grid-template-columns: 1fr; }
  .bank-fields { grid-template-columns: 1fr; }
  .people-photos { grid-template-columns: 1fr 1fr; }
  .p-photo:nth-child(odd) { margin-top: 0; }
}
@media (max-width: 600px) {
  .nav-links, .nav-donate { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 1.25rem 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  section { padding: 60px 1.25rem; }
  .aims-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .g-item:last-child { display: block; }
  .gallery-grid .g-item:nth-child(2) { display: none; }
  .impact-row { grid-template-columns: repeat(2, 1fr); }
  .founders-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; }
  .obj { padding: 1.25rem; gap: 1rem; }
  .obj-n { font-size: 1.1rem; min-width: 28px; }
  .quote-block { padding: 1.25rem; }
  .aside-note { padding: 1.25rem; }
  .sec-title { font-size: 1.7rem; }
  .people-photos { grid-template-columns: 1fr 1fr; gap: 4px; }
  .p-photo:nth-child(odd) { margin-top: 0; }
  .map-box { min-height: 200px; }
  .donate { padding: 60px 1.25rem; }
  .donate-inner { max-width: 100%; }
  .contact-grid { gap: 2rem; }
  .founder-body { padding: 1.5rem 1.5rem 1.75rem; }
  .bank-fields { grid-template-columns: 1fr; }
  .slideshow { aspect-ratio: 3/4; }
}