/* ============================================================
   SAHAS — Global Federation of Afghan Hindus & Sikhs
   Shared Stylesheet
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  /* Primary palette — saffron & deep earth tones */
  --color-saffron:        #D4820C;
  --color-saffron-light:  #F2A92C;
  --color-saffron-glow:   #FFF3DC;
  --color-burgundy:       #6B1D2A;
  --color-burgundy-deep:  #4A0E1A;
  --color-earth:          #3B2F2F;
  --color-earth-light:    #5C4A42;
  --color-cream:          #FDF8F0;
  --color-cream-dark:     #F5EDE0;
  --color-white:          #FFFFFF;
  --color-text:           #2C2420;
  --color-text-light:     #6B5E56;
  --color-border:         #E0D5C8;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Source Sans 3', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: clamp(3rem, 6vw, 6rem);
  --content-max: 1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-saffron); text-decoration: none; transition: color 0.3s var(--ease-out); }
a:hover { color: var(--color-burgundy); }

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-earth);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-saffron);
  margin-bottom: 0.75rem;
}

/* ---- Decorative line (used under headings) ---- */
.heading-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-saffron), var(--color-saffron-light));
  border: none;
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}

.heading-line--center { margin-left: auto; margin-right: auto; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.4s var(--ease-out);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(59, 47, 47, 0.1);
}

.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  height: 48px;
  width: auto;
}

.header-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-earth);
  line-height: 1.2;
}

.header-logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  text-transform: uppercase;
}

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-earth);
  padding: 0.5rem 0.85rem;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s var(--ease-out);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-saffron);
  transition: width 0.3s var(--ease-out), left 0.3s var(--ease-out);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-saffron);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 70%;
  left: 15%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.65em;
  opacity: 0.6;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(59, 47, 47, 0.12);
  padding: 0.5rem 0;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease-out);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.45rem 1.2rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

.nav-dropdown-menu a::after { display: none !important; }

.nav-dropdown-menu a:hover {
  background: var(--color-saffron-glow);
}

/* Donate button in nav */
.nav-donate-btn {
  background: var(--color-saffron);
  color: var(--color-white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 6px;
  font-weight: 700 !important;
  margin-left: 0.5rem;
  transition: background 0.3s var(--ease-out), transform 0.2s var(--ease-out) !important;
}

.nav-donate-btn::after { display: none !important; }

.nav-donate-btn:hover {
  background: var(--color-burgundy);
  color: var(--color-white) !important;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-earth);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.hero {
  position: relative;
  height: clamp(400px, 65vh, 700px);
  margin-top: 72px;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(74, 14, 26, 0.3) 0%,
    rgba(59, 47, 47, 0.55) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--color-white);
  z-index: 2;
}

.hero-content h1 {
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  opacity: 0.9;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  right: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-indicator {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.hero-indicator.active {
  background: var(--color-saffron-light);
  width: 48px;
}

/* ============================================================
   SECTIONS — General
   ============================================================ */
.section {
  padding: var(--section-pad) 0;
}

.section--cream { background: var(--color-cream); }
.section--white { background: var(--color-white); }

.section--burgundy {
  background: linear-gradient(135deg, var(--color-burgundy-deep) 0%, var(--color-burgundy) 100%);
  color: var(--color-cream);
}

.section--burgundy h2,
.section--burgundy h3,
.section--burgundy h4 {
  color: var(--color-saffron-light);
}

.section--burgundy .heading-line {
  background: linear-gradient(90deg, var(--color-saffron-light), var(--color-saffron));
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-top: 1rem;
}

/* ============================================================
   CTA CARDS (Donate / Mission / Get Involved)
   ============================================================ */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.cta-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59, 47, 47, 0.1);
}

.cta-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
}

.cta-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.cta-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn--primary {
  background: var(--color-saffron);
  color: var(--color-white);
  border-color: var(--color-saffron);
}

.btn--primary:hover {
  background: var(--color-burgundy);
  border-color: var(--color-burgundy);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-saffron);
  border-color: var(--color-saffron);
}

.btn--outline:hover {
  background: var(--color-saffron);
  color: var(--color-white);
}

.btn--light {
  background: rgba(255,255,255,0.15);
  color: var(--color-cream);
  border-color: rgba(255,255,255,0.3);
}

.btn--light:hover {
  background: var(--color-saffron);
  border-color: var(--color-saffron);
  color: var(--color-white);
}

/* ============================================================
   ABOUT / TEXT BLOCK SECTIONS
   ============================================================ */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-block--reverse { direction: rtl; }
.about-block--reverse > * { direction: ltr; }

.about-text p {
  margin-bottom: 1rem;
  font-size: 1.02rem;
  color: var(--color-text-light);
}

.about-text p:last-child { margin-bottom: 0; }

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(59, 47, 47, 0.12);
}

/* ============================================================
   TEAM GRID
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 47, 47, 0.1);
}

.team-card-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--color-cream-dark);
}

.team-card-info {
  padding: 1.2rem;
}

.team-card-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.team-card-info p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================================
   CONTACT / LOCATIONS
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.location-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.location-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--color-burgundy);
}

.location-card .location-org {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-saffron);
  margin-bottom: 0.75rem;
}

.location-card address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--color-earth);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-saffron);
  box-shadow: 0 0 0 3px var(--color-saffron-glow);
}

.form-group textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   INFO BANNER (EIN, legal info)
   ============================================================ */
.info-banner {
  background: var(--color-cream-dark);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.info-banner p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.info-banner .ein {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-burgundy);
  margin: 0.75rem 0;
}

/* ============================================================
   PAGE HEADER (for inner pages)
   ============================================================ */
.page-header {
  margin-top: 72px;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  background: linear-gradient(135deg, var(--color-burgundy-deep) 0%, var(--color-burgundy) 50%, var(--color-earth) 100%);
  color: var(--color-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 130, 12, 0.12), transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  color: var(--color-cream);
  position: relative;
}

.page-header p {
  color: rgba(253, 248, 240, 0.75);
  max-width: 600px;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-earth);
  color: rgba(253, 248, 240, 0.7);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  color: var(--color-saffron-light);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(253, 248, 240, 0.65);
  padding: 0.25rem 0;
  transition: color 0.3s var(--ease-out);
}

.footer-col a:hover { color: var(--color-saffron-light); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.3s var(--ease-out);
}

.footer-social a:hover { background: var(--color-saffron); }

.footer-social img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.footer-bottom a { color: var(--color-saffron-light); }

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 47, 47, 0.1);
}

.news-card-body { padding: 1.5rem; }

.news-card-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-saffron);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.news-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.news-card p { font-size: 0.92rem; color: var(--color-text-light); }

/* ============================================================
   BUSINESS / ENTREPRENEUR CARDS
   ============================================================ */
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.business-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.8rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.business-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(59, 47, 47, 0.1);
}

.business-card h3 { font-size: 1.15rem; margin-bottom: 0.25rem; color: var(--color-burgundy); }
.business-card .biz-owner { font-weight: 600; color: var(--color-saffron); font-size: 0.88rem; margin-bottom: 0.3rem; }
.business-card .biz-location { font-size: 0.82rem; color: var(--color-text-light); margin-bottom: 0.75rem; }
.business-card p { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.6; }
.business-card .biz-phone { margin-top: 0.75rem; font-weight: 700; font-size: 0.9rem; }

/* ============================================================
   PROJECTS TIMELINE
   ============================================================ */
.projects-list { max-width: 800px; margin: 0 auto; }

.project-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--color-saffron);
}

.project-item h3 { font-size: 1.2rem; color: var(--color-burgundy); margin-bottom: 0.25rem; }
.project-item .project-location { font-weight: 600; color: var(--color-saffron); font-size: 0.85rem; margin-bottom: 0.75rem; }
.project-item p { font-size: 0.95rem; color: var(--color-text-light); }

/* ============================================================
   LEGAL DOCUMENTS LIST
   ============================================================ */
.docs-list { max-width: 700px; margin: 0 auto; }

.doc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 0.75rem;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  text-decoration: none;
  color: var(--color-text);
}

.doc-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(59, 47, 47, 0.08);
  color: var(--color-burgundy);
}

.doc-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.doc-item span { font-weight: 600; font-size: 0.95rem; }

/* ============================================================
   TEMPLE CARDS (enhanced locations)
   ============================================================ */
.temple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.temple-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.temple-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 47, 47, 0.1);
}

.temple-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--color-cream-dark);
}

.temple-card-body { padding: 1.3rem; }
.temple-card-body h3 { font-size: 1.1rem; margin-bottom: 0.15rem; }
.temple-card-body .temple-location { font-weight: 600; color: var(--color-saffron); font-size: 0.82rem; margin-bottom: 0.6rem; }

.temple-card-body address {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ============================================================
   ANIMATIONS — Fade in on scroll
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .fade-up:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .fade-up:nth-child(6) { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
  .mobile-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-cream);
    flex-direction: column;
    padding: 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    overflow-y: auto;
  }

  .main-nav.open { transform: translateX(0); }

  .main-nav a {
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    display: block;
  }

  .main-nav a::after { display: none; }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: transparent;
  }

  .nav-donate-btn {
    margin-left: 0;
    margin-top: 1rem;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-block {
    grid-template-columns: 1fr;
  }

  .about-block--reverse { direction: ltr; }
}

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero { height: clamp(300px, 55vh, 500px); }
}
