/* ==========================================================================
   Apna Sansaar Charitable Trust — Design System
   "Badlenge Hum, Badlega Sansaar" — We will change, the world will change.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Color tokens — drawn from the trust's mark */
  --forest: #1B5E20;        /* deep green — roof / primary */
  --forest-dark: #123D15;   /* darkest shade, footer/nav */
  --leaf: #4CAF50;          /* mid green — figures */
  --leaf-light: #7CC47F;    /* light accent */
  --ivory: #FBF9F4;         /* warm background */
  --ivory-deep: #F3EFE4;    /* section alternation */
  --charcoal: #22281F;      /* body text */
  --charcoal-soft: #4A5245; /* secondary text */
  --gold: #C9A050;          /* impact / donation accent */
  --gold-soft: #E8D6A8;
  --white: #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-soft: 0 4px 24px rgba(27, 94, 32, 0.08);
  --shadow-lift: 0 12px 40px rgba(27, 94, 32, 0.16);

  --max-width: 1180px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest-dark);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
}
p { margin: 0 0 1em; }

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--deep { background: var(--ivory-deep); }
.section--forest {
  background: var(--forest-dark);
  color: #E9F1E5;
}
.section--forest h2, .section--forest h3 { color: #F5F1E4; }

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

.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.section-head p { color: var(--charcoal-soft); font-size: 1.06rem; }

.text-lede { font-size: 1.18rem; color: var(--charcoal-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest-dark);
  box-shadow: 0 6px 20px rgba(201, 160, 80, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201, 160, 80, 0.45); }
.btn-outline {
  border-color: currentColor;
  color: var(--forest);
  background: transparent;
}
.btn-outline:hover { background: var(--forest); color: var(--white); transform: translateY(-2px); }
.section--forest .btn-outline { color: #F5F1E4; }
.section--forest .btn-outline:hover { background: var(--leaf); color: var(--forest-dark); }
.btn-ghost {
  color: var(--forest);
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid var(--gold-soft);
  border-radius: 0;
}
.btn-ghost:hover { border-color: var(--gold); }
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 94, 32, 0.1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 52px; width: 52px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: var(--forest-dark);
  font-weight: 700;
}
.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest-dark);
  margin: 5px 0;
  transition: 0.25s;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px 32px;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-140%);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.3s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-toggle { display: block; }
  .nav-cta .btn-outline { display: none; }
}

/* ==========================================================================
   Hero (home page)
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 110px;
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(76, 175, 80, 0.14), transparent 60%),
    var(--ivory);
}
.hero-roofline {
  position: absolute;
  top: -40px; right: -60px;
  width: 620px;
  opacity: 0.07;
  color: var(--forest);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--leaf);
  margin-bottom: 18px;
  display: block;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--leaf);
  font-weight: 500;
}
.hero-underline {
  position: relative;
  display: inline-block;
}
.hero-underline svg {
  position: absolute;
  left: 0; bottom: -10px;
  width: 100%;
  height: 14px;
}
.hero p.text-lede { max-width: 500px; margin-top: 22px; }
.hero-actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(27, 94, 32, 0.14);
}
.hero-stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--forest-dark);
  display: block;
}
.hero-stat span {
  font-size: 0.82rem;
  color: var(--charcoal-soft);
}

/* Hero visual: hands cradling the community, echoing the mark */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-visual .frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .badge {
  position: absolute;
  bottom: -26px; left: -26px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lift);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}
.hero-visual .badge .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--leaf-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-visual .badge strong { display: block; font-family: var(--font-display); color: var(--forest-dark); font-size: 1rem; }
.hero-visual .badge span { font-size: 0.78rem; color: var(--charcoal-soft); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 20px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}

/* ==========================================================================
   Pillars / programs cards
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-top: 3px solid transparent;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-top-color: var(--gold);
}
.pillar-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--leaf-light), var(--leaf));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}
.pillar-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.pillar-card p { color: var(--charcoal-soft); font-size: 0.96rem; margin-bottom: 0; }

@media (max-width: 860px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Impact counters — signature element
   ========================================================================== */
.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.impact-item { text-align: center; padding: 0 10px; }
.impact-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 600;
  color: var(--gold);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px;
}
.impact-label {
  font-size: 0.85rem;
  color: #C9D6C4;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
@media (max-width: 760px) {
  .impact-strip { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
}

/* ==========================================================================
   Story / mission split
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.1fr 0.9fr; }
.split.reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.split-copy p { color: var(--charcoal-soft); }
.check-list { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
}
.check-list .tick {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--white);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-soft);
  position: absolute;
  top: 6px; left: 20px;
  line-height: 1;
}
.testimonial-card p { position: relative; z-index: 1; color: var(--charcoal-soft); font-style: italic; margin-top: 14px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial-person img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-person strong { display: block; font-size: 0.92rem; color: var(--forest-dark); }
.testimonial-person span { font-size: 0.78rem; color: var(--charcoal-soft); }

@media (max-width: 900px) {
  .testimonial-track { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CTA banner (hands motif)
   ========================================================================== */
.cta-band {
  background: var(--forest-dark);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  right: -40px; bottom: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(76,175,80,0.28), transparent 70%);
}
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 2.6vw, 2.2rem); max-width: 480px; }
.cta-band p { color: #C9D6C4; max-width: 460px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 800px) {
  .cta-band { flex-direction: column; text-align: center; padding: 40px 28px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--forest-dark);
  color: #C9D6C4;
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 48px; width: 48px; }
.footer-brand strong { font-family: var(--font-display); color: var(--white); font-size: 1.15rem; display: block; }
.footer-brand span { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--leaf-light); }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-note p { font-size: 0.9rem; margin-bottom: 14px; }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--leaf); border-color: var(--leaf); }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #8FA688;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Page banner (interior pages)
   ========================================================================== */
.page-banner {
  background: var(--forest-dark);
  color: var(--ivory);
  padding: 64px 0 54px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 400px at 90% 0%, rgba(76,175,80,0.22), transparent 60%);
}
.breadcrumb {
  font-size: 0.85rem;
  color: #9FB897;
  margin-bottom: 14px;
  position: relative;
}
.breadcrumb a:hover { color: var(--gold-soft); }
.page-banner h1 { color: var(--white); font-size: clamp(2rem, 3.4vw, 2.8rem); position: relative; margin-bottom: 8px; }
.page-banner p { color: #C9D6C4; max-width: 560px; position: relative; margin-bottom: 0; }

/* ==========================================================================
   Generic content components (about/programs/gallery/contact pages)
   ========================================================================== */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card {
  padding: 26px 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.value-card .pillar-icon { margin: 0 auto 16px; }
.value-card h3 { font-size: 1.02rem; }
.value-card p { font-size: 0.88rem; color: var(--charcoal-soft); margin-bottom: 0; }
@media (max-width: 900px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .value-grid { grid-template-columns: 1fr; } }

.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: '';
  position: absolute; left: 8px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--gold-soft);
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute; left: -34px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--ivory);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.timeline-item .year { color: var(--leaf); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; }
.timeline-item p { color: var(--charcoal-soft); margin-top: 6px; margin-bottom: 0; font-size: 0.95rem; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card { text-align: center; }
.team-card .photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1.05;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 1rem; margin-bottom: 2px; }
.team-card span { font-size: 0.82rem; color: var(--leaf); font-weight: 600; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.program-list { display: flex; flex-direction: column; gap: 22px; }
.program-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  align-items: stretch;
}
.program-row .photo { overflow: hidden; }
.program-row .photo img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }
.program-row .content { padding: 26px 30px 26px 0; display: flex; flex-direction: column; justify-content: center; }
.program-row .tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.program-row h3 { font-size: 1.28rem; margin-bottom: 8px; }
.program-row p { color: var(--charcoal-soft); margin-bottom: 14px; }
@media (max-width: 760px) {
  .program-row { grid-template-columns: 1fr; }
  .program-row .content { padding: 22px; }
  .program-row .photo img { min-height: 200px; }
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 20px;
}
.gallery-grid figure {
  margin: 0 0 20px;
  break-inside: avoid;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.gallery-grid img { width: 100%; display: block; transition: transform 0.4s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(18,61,21,0.85), transparent);
  color: var(--white);
  font-size: 0.82rem;
  padding: 30px 16px 12px;
}

.faq-item {
  border-bottom: 1px solid rgba(27,94,32,0.14);
}
.faq-item:first-child { border-top: 1px solid rgba(27,94,32,0.14); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--forest-dark);
  gap: 20px;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.3s var(--ease);
}
.faq-q .plus::before, .faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--gold);
}
.faq-q .plus::before { width: 10px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 10px; }
.faq-item.open .faq-q .plus { transform: rotate(135deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a p { padding: 0 4px 22px; color: var(--charcoal-soft); max-width: 700px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(27,94,32,0.18);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--ivory);
  color: var(--charcoal);
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--leaf);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field-error { font-size: 0.8rem; color: #B3261E; margin-top: 6px; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #B3261E; }
.field.has-error .field-error { display: block; }

.amount-picker { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.amount-picker button {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(27,94,32,0.2);
  background: var(--ivory);
  font-weight: 600;
  color: var(--forest-dark);
  transition: all 0.2s;
}
.amount-picker button.active, .amount-picker button:hover {
  background: var(--leaf);
  border-color: var(--leaf);
  color: var(--white);
}

.form-msg {
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.92rem;
  margin-bottom: 22px;
  display: none;
}
.form-msg.show { display: block; }
.form-msg.success { background: #E4F3E5; color: var(--forest-dark); border: 1px solid var(--leaf); }
.form-msg.error { background: #FBEAEA; color: #8A1D14; border: 1px solid #E39A93; }

/* ---------- Stats bar (about page) ---------- */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
.stat-bar .item { text-align: center; }
.stat-bar strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--forest); }
.stat-bar span { font-size: 0.82rem; color: var(--charcoal-soft); }
@media (max-width: 760px) { .stat-bar { grid-template-columns: 1fr 1fr; } }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.tag-pill {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--forest-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.back-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  z-index: 150;
  border: none;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
