/* =========================================================
   Suneeta Suman Foundation — Design System
   Cream / Deep Blue / Mustard / Soft Green
   Headings: Playfair Display · Body: Inter
   ========================================================= */

:root {
  /* Brand palette */
  --cream:        #FAF6ED;
  --cream-deep:   #F3ECDC;
  --cream-card:   #FCFAF4;
  --navy:         #16324F;
  --navy-soft:    #1E456B;
  --mustard:      #F2B84B;
  --mustard-dark: #D99A2B;
  --green:        #6FA77A;
  --green-dark:   #4E7B57;
  --green-tint:   #E7EFE6;
  --charcoal:     #222222;
  --muted:        #5C6470;
  --line:         #E4DcC9;
  --white:        #ffffff;

  --shadow-sm: 0 2px 10px rgba(22,50,79,.06);
  --shadow-md: 0 10px 30px rgba(22,50,79,.10);
  --shadow-lg: 0 24px 60px rgba(22,50,79,.16);

  --radius:   14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --ff-head: "Playfair Display", Georgia, serif;
  --ff-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }

h1,h2,h3,h4 { font-family: var(--ff-head); color: var(--navy); line-height: 1.15; font-weight: 700; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }
.bg-cream-deep { background: var(--cream-deep); }
.bg-white { background: var(--white); }
.text-center { text-align: center; }
.green-word { color: var(--green-dark); }
.mustard-word { color: var(--mustard-dark); }

/* Decorative sprig + rule used above headings */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.eyebrow .sprig { width: 26px; height: 26px; color: var(--green); flex: none; }
.eyebrow .rule { height: 2px; width: 64px; background: var(--mustard); border-radius: 2px; }
.eyebrow.center { justify-content: center; }

.section-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: -.01em; }
.section-intro { color: var(--muted); max-width: 56ch; margin-top: 14px; font-size: 1.05rem; }
.section-intro.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: .98rem; padding: 14px 26px;
  border-radius: var(--radius-pill); transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--mustard); color: #3a2a05; box-shadow: 0 8px 20px rgba(217,154,43,.32); }
.btn--primary:hover { background: var(--mustard-dark); color: #2c2003; }
.btn--outline { background: transparent; color: var(--navy); border: 1.6px solid var(--green); }
.btn--outline:hover { background: var(--green-tint); }
.btn--ghost-light { background: transparent; color: var(--white); border: 1.6px solid rgba(255,255,255,.55); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-soft); }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,246,237,.88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; gap: 18px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand .logo { width: 52px; height: 52px; flex: none; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand .wordmark b {
  font-family: var(--ff-head); font-size: 1.18rem; color: var(--navy);
  letter-spacing: .04em; font-weight: 700;
}
.brand .wordmark span {
  font-size: .6rem; letter-spacing: .42em; color: var(--green-dark);
  margin-top: 5px; font-weight: 600;
}
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: .95rem; font-weight: 500; color: var(--navy);
  position: relative; padding: 6px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--mustard); transition: width .25s var(--ease);
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { width: 100%; }
.main-nav a[aria-current="page"] { color: var(--green-dark); }
/* Dropdown */
.main-nav .has-dropdown { position: relative; }
.dd-toggle {
  font-size: .95rem; font-weight: 500; color: var(--navy); display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 0; cursor: pointer; font-family: inherit;
}
.dd-toggle.active { color: var(--green-dark); }
.dd-toggle svg { transition: transform .2s var(--ease); }
.has-dropdown:hover .dd-toggle svg, .has-dropdown:focus-within .dd-toggle svg { transform: rotate(180deg); }
.dropdown {
  display: block; position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md);
  padding: 8px; min-width: 180px; opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease); z-index: 70;
}
.main-nav .dropdown { gap: 0; }
.dropdown li { width: 100%; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown li a { display: block; padding: 10px 14px; border-radius: 8px; font-size: .93rem; font-weight: 500; color: var(--navy); }
.dropdown li a::after { display: none; }
.dropdown li a:hover, .dropdown li a[aria-current="page"] { background: var(--green-tint); color: var(--green-dark); }

.header-cta { display: flex; align-items: center; gap: 12px; flex: none; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  align-items: center; justify-content: center; color: var(--navy);
  border: 1px solid var(--line);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); letter-spacing: -.015em; }
.hero p.lead { color: var(--muted); font-size: 1.12rem; margin-top: 20px; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute; left: -18px; bottom: 28px; background: var(--white);
  border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px; max-width: 230px;
}
.hero-badge .dot { width: 42px; height: 42px; border-radius: 50%; background: var(--green-tint); color: var(--green-dark); display: grid; place-items: center; flex: none; }
.hero-badge .dot svg { width: 22px; height: 22px; }
.hero-badge b { display: block; color: var(--navy); font-size: 1.05rem; font-family: var(--ff-head); }
.hero-badge span { font-size: .82rem; color: var(--muted); }

/* ---------- Full-width hero BANNER slider ---------- */
.hero-banner { position: relative; width: 100%; overflow: hidden; background: var(--navy); }
.banner-slides { position: relative; height: 640px; }
.hero-banner .slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s var(--ease); pointer-events: none; }
.hero-banner .slide.active { opacity: 1; pointer-events: auto; }
.hero-banner .slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(18,40,63,.9) 0%, rgba(18,40,63,.66) 42%, rgba(18,40,63,.28) 78%, rgba(18,40,63,.12) 100%);
}
.banner-slide .container { position: relative; height: 100%; display: flex; align-items: center; }
.banner-content { max-width: 640px; color: #fff; padding: 40px 0; }
.banner-content .tagline-pill { background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(4px); }
.banner-content .tagline-pill .hindi { color: #fff; }
.banner-content h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.5rem); letter-spacing: -.015em; }
.banner-content h1 .green-word { color: #F2B84B; }
.banner-content p.lead { color: rgba(255,255,255,.9); font-size: 1.12rem; margin-top: 18px; max-width: 52ch; }
.banner-content .hero-actions { margin-top: 28px; }
.hero-banner .slider-arrow { z-index: 4; background: rgba(255,255,255,.9); }
.hero-banner .slider-dots { bottom: 22px; z-index: 4; }
.hero-banner .slider-dots button { background: rgba(255,255,255,.5); }
.hero-banner .slider-dots button.active { background: #fff; }
.banner-stats {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  background: rgba(18,40,63,.55); backdrop-filter: blur(6px); border-top: 1px solid rgba(255,255,255,.12);
}
.banner-stats .container { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 10px; padding: 14px 20px; }
.banner-stats .bstat { color: #fff; text-align: center; }
.banner-stats .bstat b { font-family: var(--ff-head); font-size: 1.35rem; color: #F2B84B; display: block; line-height: 1; }
.banner-stats .bstat span { font-size: .82rem; color: rgba(255,255,255,.8); }

@media (max-width: 980px) {
  .banner-slides { height: 560px; }
}
@media (max-width: 680px) {
  .banner-slides { height: 600px; }
  .banner-overlay { background: linear-gradient(180deg, rgba(18,40,63,.55) 0%, rgba(18,40,63,.82) 100%); }
  .banner-content { text-align: left; }
  .banner-stats { display: none; }
}

/* ---------- Hero image slider ---------- */
.slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.slider .slides { position: relative; height: 520px; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .55s var(--ease); pointer-events: none; }
.slide.active { opacity: 1; pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 46px 20px 20px; color: #fff;
  font-size: .95rem; font-weight: 500; background: linear-gradient(transparent, rgba(22,50,79,.75));
}
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.85); color: var(--navy);
  display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: background .2s, transform .2s;
}
.slider-arrow:hover { background: #fff; }
.slider-arrow.prev { left: 14px; }
.slider-arrow.next { right: 14px; }
.slider-arrow svg { width: 22px; height: 22px; }
.slider-dots { position: absolute; left: 0; right: 0; bottom: 16px; z-index: 3; display: flex; justify-content: center; gap: 8px; }
.slider-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.55); transition: all .25s; }
.slider-dots button.active { background: #fff; width: 26px; border-radius: 6px; }

/* ---------- Intro / Rooted ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.prose p + p { margin-top: 16px; }
.prose p { color: var(--muted); }
.values-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px;
  background: var(--green-tint); color: var(--green-dark); border-radius: var(--radius-pill);
  font-size: .9rem; font-weight: 600;
}

/* ---------- Where support goes (list) ---------- */
.support-list { display: grid; gap: 0; }
.support-item {
  display: flex; gap: 18px; align-items: flex-start; padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}
.support-item:last-child { border-bottom: 0; }
.support-item .ic {
  width: 52px; height: 52px; border-radius: 50%; background: var(--green-tint);
  color: var(--green-dark); display: grid; place-items: center; flex: none;
}
.support-item .ic svg { width: 26px; height: 26px; }
.support-item h4 { font-size: 1.12rem; margin-bottom: 3px; }
.support-item p { color: var(--muted); font-size: .96rem; }

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

.focus-card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.focus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.focus-card .ic { width: 50px; height: 50px; color: var(--green-dark); margin-bottom: 14px; }
.focus-card .ic svg { width: 100%; height: 100%; }
.focus-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.focus-card p { color: var(--muted); font-size: .96rem; }

/* ---------- Impact stats ---------- */
.stat-card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 18px; text-align: center;
}
.stat-card .ic { width: 40px; height: 40px; margin: 0 auto 12px; color: var(--green-dark); }
.stat-card .num { font-family: var(--ff-head); font-size: 2.3rem; font-weight: 800; color: var(--mustard-dark); line-height: 1; }
.stat-card .label { color: var(--muted); font-size: .9rem; margin-top: 8px; }

/* ---------- Why this matters ---------- */
.reason-card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px;
}
.reason-card .ic { width: 38px; height: 38px; color: var(--mustard-dark); margin-bottom: 12px; }
.reason-card h4 { color: var(--mustard-dark); font-size: 1.05rem; margin-bottom: 8px; }
.reason-card p { color: var(--muted); font-size: .94rem; }

/* ---------- Gallery ---------- */
.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.link-arrow { color: var(--green-dark); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.link-arrow svg { width: 18px; height: 18px; transition: transform .2s; }
.link-arrow:hover svg { transform: translateX(4px); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.gallery-grid.dense { grid-template-columns: repeat(3,1fr); }
.gallery-grid figure {
  margin: 0; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  position: relative; aspect-ratio: 4/3; box-shadow: var(--shadow-sm);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 14px 12px; color: #fff; font-size: .85rem;
  background: linear-gradient(transparent, rgba(22,50,79,.78)); opacity: 0; transition: opacity .25s;
}
.gallery-grid figure:hover figcaption { opacity: 1; }
.dignity-note {
  margin-top: 22px; color: var(--muted); font-size: .92rem; font-style: italic;
  display: inline-flex; align-items: center; gap: 10px;
}
.dignity-note svg { width: 18px; height: 18px; color: var(--green-dark); flex: none; }

/* ---------- Founder note ---------- */
.founder {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; display: grid; grid-template-columns: 140px 1fr; gap: 28px; align-items: center;
}
.founder img { width: 140px; height: 140px; border-radius: var(--radius); object-fit: cover; }
.founder h3 { font-size: 1.3rem; margin-bottom: 12px; }
.founder blockquote { color: var(--charcoal); font-size: 1.08rem; font-style: italic; line-height: 1.7; }
.founder .sign { color: var(--green-dark); font-weight: 700; margin-top: 14px; font-family: var(--ff-head); font-size: 1.05rem; }
.founder .sign small { display: block; font-family: var(--ff-body); font-weight: 500; color: var(--muted); font-size: .82rem; }

/* ---------- Get involved 3-up ---------- */
.involve-card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column;
}
.involve-card .ic { width: 46px; height: 46px; color: var(--mustard-dark); margin-bottom: 14px; }
.involve-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.involve-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.involve-card .link-arrow { margin-top: 16px; }

/* ---------- Final CTA banner ---------- */
.cta-banner {
  background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  padding: 56px 48px; position: relative; overflow: hidden;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem,3vw,2.3rem); max-width: 22ch; }
.cta-banner p { color: rgba(255,255,255,.8); margin-top: 10px; }
.cta-banner .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.cta-banner .leaf-bg {
  position: absolute; right: -30px; bottom: -50px; width: 280px; color: rgba(255,255,255,.06);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--cream-deep); padding: 64px 0 56px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
.page-hero p { color: var(--muted); max-width: 60ch; margin-top: 14px; font-size: 1.08rem; }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--green-dark); }

/* Page hero with background image */
.page-hero.has-img { position: relative; overflow: hidden; background: var(--navy); border-bottom: 0; padding: 92px 0 80px; }
.page-hero.has-img .ph-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero.has-img .ph-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(16,36,57,.92) 0%, rgba(16,36,57,.72) 50%, rgba(16,36,57,.42) 100%);
}
.page-hero.has-img .container { position: relative; z-index: 2; }
.page-hero.has-img h1 { color: #fff; }
.page-hero.has-img p { color: rgba(255,255,255,.9); }
.page-hero.has-img .breadcrumb { color: rgba(255,255,255,.72); }
.page-hero.has-img .breadcrumb a:hover { color: #fff; }
.page-hero.has-img .eyebrow .sprig { color: #F2B84B; }
.page-hero.has-img .eyebrow .rule { background: #F2B84B; }
.page-hero.has-img .dignity-note { color: rgba(255,255,255,.85); }
.page-hero.has-img .dignity-note svg { color: #F2B84B; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 7px; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.4px solid var(--line); border-radius: 11px;
  font: inherit; font-size: .98rem; background: #fff; color: var(--charcoal); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(111,167,122,.18);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-success {
  display: none; background: var(--green-tint); color: var(--green-dark); border: 1px solid var(--green);
  border-radius: 12px; padding: 16px; margin-bottom: 18px; font-weight: 600;
}
.form-success.show { display: block; }

/* Amount selector */
.amount-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 8px; }
.amount-grid button {
  border: 1.4px solid var(--line); background: #fff; border-radius: 11px; padding: 14px 8px;
  font-weight: 700; color: var(--navy); transition: all .15s;
}
.amount-grid button.active, .amount-grid button:hover { border-color: var(--mustard-dark); background: #FFF6E4; }
.freq-toggle { display: inline-flex; background: var(--cream-deep); border-radius: var(--radius-pill); padding: 4px; margin-bottom: 18px; }
.freq-toggle button { padding: 9px 22px; border-radius: var(--radius-pill); font-weight: 600; font-size: .9rem; color: var(--muted); }
.freq-toggle button.active { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }

/* ---------- FAQ accordion ---------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--cream-card); }
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 22px; font-weight: 600; color: var(--navy); font-size: 1.02rem;
}
.faq-q .pm { width: 22px; height: 22px; flex: none; color: var(--green-dark); transition: transform .25s; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { padding: 0 22px 20px; color: var(--muted); }

/* ---------- Transparency / info cards ---------- */
.info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.info-card { background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.info-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.info-card .v { color: var(--green-dark); font-weight: 700; font-size: 1.05rem; }
.info-card p { color: var(--muted); font-size: .94rem; }

/* contact info list */
.contact-list { display: grid; gap: 16px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--green-tint); color: var(--green-dark); display: grid; place-items: center; flex: none; }
.contact-list .ic svg { width: 22px; height: 22px; }
.contact-list b { color: var(--navy); display: block; font-size: .95rem; }
.contact-list span { color: var(--muted); font-size: .95rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--cream-deep); border-top: 1px solid var(--line); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: .94rem; max-width: 34ch; }
.footer-contact { display: grid; gap: 10px; margin-top: 18px; }
.footer-contact li { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: .92rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--green-dark); flex: none; }
.footer-col h5 { font-family: var(--ff-head); color: var(--navy); font-size: 1.05rem; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted); font-size: .93rem; padding: 5px 0; }
.footer-col a:hover { color: var(--green-dark); }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a { width: 38px; height: 38px; border-radius: 10px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--navy); }
.social a:hover { background: var(--navy); color: #fff; }
.social svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: .86rem;
}
.footer-bottom .seal { display: flex; align-items: center; gap: 8px; color: var(--green-dark); font-weight: 600; }
.footer-bottom .seal svg { width: 30px; height: 30px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(22,50,79,.55); backdrop-filter: blur(3px);
  z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--cream); border-radius: var(--radius-lg); max-width: 760px; width: 100%;
  max-height: 92vh; overflow: auto; box-shadow: var(--shadow-lg); position: relative;
}
.modal img.modal-photo { width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--radius-lg); background:#000; }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--navy); display: grid; place-items: center; z-index: 2;
}
.modal-close svg { width: 22px; height: 22px; }
.modal-body { padding: 30px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mobile nav drawer ---------- */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 90; display: none;
}
.mobile-drawer.open { display: block; }
.mobile-drawer .scrim { position: absolute; inset: 0; background: rgba(22,50,79,.5); }
.mobile-drawer .panel {
  position: absolute; right: 0; top: 0; height: 100%; width: min(82%, 340px);
  background: var(--cream); padding: 24px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 6px; transform: translateX(100%); transition: transform .3s var(--ease);
}
.mobile-drawer.open .panel { transform: none; }
.mobile-drawer .panel a { padding: 14px 6px; font-size: 1.05rem; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--line); }
.mobile-drawer .panel .btn { margin-top: 18px; }
.mobile-drawer .panel .close { align-self: flex-end; width: 44px; height: 44px; display: grid; place-items: center; color: var(--navy); }
.mobile-drawer .panel .close svg { width: 26px; height: 26px; }

/* ---------- Hindi tagline ---------- */
.hindi { font-family: "Tiro Devanagari Hindi", "Noto Serif Devanagari", var(--ff-head); }
.tagline-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px;
  background: var(--green-tint); color: var(--green-dark); border-radius: var(--radius-pill);
  font-weight: 600; font-size: .92rem; margin-bottom: 20px; white-space: nowrap;
}
.tagline-pill svg { width: 18px; height: 18px; flex: none; }
@media (max-width: 480px){ .tagline-pill { white-space: normal; } }
.brand .wordmark span.org { font-size: .54rem; letter-spacing: .24em; }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-top: 30px; padding-left: 8px; }
.timeline::before { content: ""; position: absolute; left: 21px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding: 0 0 28px 56px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item .yr {
  position: absolute; left: 0; top: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--mustard); color: #3a2a05; display: grid; place-items: center;
  font-family: var(--ff-head); font-weight: 700; font-size: .82rem; box-shadow: var(--shadow-sm);
}
.tl-item h4 { font-size: 1.1rem; margin-bottom: 4px; }
.tl-item p { color: var(--muted); font-size: .96rem; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.team-card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; text-align: center; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card img, .team-card .avatar {
  width: 104px; height: 104px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px;
  border: 3px solid var(--green-tint);
}
.team-card .avatar {
  display: grid; place-items: center; background: var(--green-tint); color: var(--green-dark);
  font-family: var(--ff-head); font-weight: 700; font-size: 2rem;
}
.team-card h4 { font-size: 1.05rem; margin-bottom: 3px; }
.team-card .role { color: var(--green-dark); font-size: .85rem; font-weight: 600; }
.team-chip-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

/* ---------- Partners ---------- */
.partners-row { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: 28px; }
.partners-row a, .partners-row .plogo {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 32px; box-shadow: var(--shadow-sm); min-width: 220px; min-height: 150px;
  transition: transform .25s, box-shadow .25s;
}
.partners-row .plogo:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.partners-row img { height: 110px; width: auto; max-width: 240px; object-fit: contain; }
@media (max-width: 680px){ .partners-row { gap: 18px; } .partners-row .plogo { min-width: 140px; min-height: 110px; padding: 16px; } .partners-row img { height: 78px; } }

/* ---------- Program detail block ---------- */
.program {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  padding: 36px 0; border-bottom: 1px solid var(--line);
}
.program:last-child { border-bottom: 0; }
.program.flip .program-media { order: 2; }
.program-media img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.program .tag { display: inline-flex; align-items: center; gap: 8px; color: var(--green-dark); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.program .tag svg { width: 18px; height: 18px; }
.program h3 { font-size: 1.5rem; margin-bottom: 10px; }
.program p { color: var(--muted); }
.program ul.ticks { margin-top: 14px; display: grid; gap: 8px; }
.program ul.ticks li { display: flex; gap: 10px; color: var(--charcoal); font-size: .95rem; }
.program ul.ticks svg { width: 18px; height: 18px; color: var(--green-dark); flex: none; margin-top: 3px; }

/* ---------- Mini slider (inside cards / media boxes) ---------- */
.event-card .media, .program-media, .about-slider { position: relative; overflow: hidden; }
.event-card .media .slide, .program-media .slide, .about-slider .slide { position: absolute; inset: 0; }
.event-card .meta { z-index: 5; }
.event-card .media .slider-dots, .program-media .slider-dots, .about-slider .slider-dots { z-index: 5; bottom: 12px; }
.event-card .media .slider-dots button, .program-media .slider-dots button, .about-slider .slider-dots button { width: 7px; height: 7px; }
.event-card .media .slider-dots button.active, .program-media .slider-dots button.active, .about-slider .slider-dots button.active { width: 20px; }
.program-media { height: 340px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.program-media .slide img { border-radius: 0; }
.about-slider { height: 460px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
@media (max-width: 980px){ .program-media { height: 280px; } .about-slider { height: 360px; } }

/* ---------- Event cards ---------- */
.events-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.event-card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.event-card .media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.event-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.event-card:hover .media img { transform: scale(1.06); }
.event-card .meta {
  position: absolute; top: 12px; left: 12px; background: rgba(250,246,237,.94);
  color: var(--green-dark); font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.event-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.event-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.event-card p { color: var(--muted); font-size: .95rem; flex: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .events-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(3,1fr); }
  .program, .program.flip { grid-template-columns: 1fr; gap: 22px; }
  .program.flip .program-media { order: 0; }
}
@media (max-width: 680px) {
  .events-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .partners-row { gap: 26px; }
}
/* ---------- Responsive (base) ---------- */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-media img { height: 380px; }
  .slider .slides { height: 380px; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse .split-media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-grid.dense { grid-template-columns: repeat(2,1fr); }
  .field-row { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .founder img { width: 120px; height: 120px; }
  .cta-banner { padding: 40px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand .wordmark b { font-size: 1.05rem; }
  .header-cta .btn span.hide-sm { display: none; }
}
@media (max-width: 560px) {
  .site-header .container { gap: 10px; }
  .brand .logo { width: 42px; height: 42px; }
  .brand .wordmark b { font-size: .9rem; letter-spacing: .02em; }
  .brand .wordmark span.org { display: none; }
  .header-cta { gap: 8px; }
  .header-cta .btn--primary { padding: 12px 16px; }
  .nav-toggle { width: 42px; height: 42px; }
  .amount-grid { grid-template-columns: repeat(3,1fr); }
}
