/* ============================================
   PRACHI FOUNDATION - Main Stylesheet
   Complete UI Overhaul - Bold, Energetic, Impactful
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,600;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --color-saffron:       #C2570A;
  --color-saffron-light: #E07030;
  --color-saffron-dark:  #9A4508;
  --color-saffron-pale:  #F5E8DC;
  --color-indigo:        #1A2F4A;
  --color-indigo-light:  #2C5282;
  --color-gold:          #D4A843;
  --color-gold-light:    #F0C96E;
  --color-cream:         #FAF6F0;
  --color-white:         #FFFFFF;
  --color-dark:          #0F0D08;
  --color-text:          #2D1F14;
  --color-text-muted:    #6B4D3A;
  --color-border:        #E8D5C4;

  --font-display:  'Playfair Display', Georgia, serif;
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'DM Sans', sans-serif;

  --shadow-sm:  0 2px 12px rgba(194,87,10,0.08);
  --shadow-md:  0 10px 40px rgba(194,87,10,0.12);
  --shadow-lg:  0 24px 64px rgba(194,87,10,0.16);
  --shadow-xl:  0 32px 80px rgba(26,47,74,0.2);
  --radius:     16px;
  --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

.text-saffron { color: var(--color-saffron); }
.text-indigo  { color: var(--color-indigo); }
.text-gold    { color: var(--color-gold); }

/* ==========================================
   BUTTONS - Bold & Prominent
   ========================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-saffron) 0%, var(--color-saffron-light) 100%);
  color: var(--color-white);
  padding: 16px 40px;
  border-radius: 60px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(194,87,10,0.3);
  text-transform: none;
  gap: 8px;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-saffron-light) 0%, var(--color-saffron) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(194,87,10,0.45);
  color: var(--color-white);
}
.btn-primary i, .btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-saffron);
  padding: 15px 38px;
  border-radius: 60px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2.5px solid var(--color-saffron);
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
}
.btn-outline:hover {
  background: var(--color-saffron);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(194,87,10,0.35);
  border-color: var(--color-saffron);
}

/* ==========================================
   SECTION HEADERS - Bold & Dramatic
   ========================================== */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-saffron);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-saffron), var(--color-gold));
  display: block;
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--color-indigo);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 580px;
  line-height: 1.85;
  font-weight: 400;
}

/* ==========================================
   NAVBAR - Clean, Minimal, Professional
   ========================================== */
.navbar-prachi {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  /* Logo text colors on dark hero (readable defaults) */
  --nav-logo-title: #ffffff;
  --nav-logo-accent: #f5d78a;
  --nav-logo-sub: rgba(255,255,255,0.92);
  --nav-logo-rule: rgba(240,201,110,0.5);
}

.navbar-prachi.scrolled {
  background: rgba(250,246,240,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 30px rgba(26,47,74,0.08);
  --nav-logo-title: var(--color-indigo);
  --nav-logo-accent: var(--color-saffron);
  --nav-logo-sub: var(--color-text-muted);
  --nav-logo-rule: rgba(194,87,10,0.3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  max-width: 1320px;
  margin: 0 auto;
}

/* Logo lockup: larger symbol + readable title + tagline on its own line */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none !important;
  min-width: 0;
  max-width: min(100%, 400px);
  color: inherit;
}
.nav-logo:hover {
  opacity: 0.95;
}
/* Bootstrap link colour must not wash out logo text on dark hero */
.navbar-prachi a.nav-logo,
.navbar-prachi a.nav-logo:focus,
.navbar-prachi a.nav-logo:hover {
  color: inherit;
}
.nav-logo-symbol {
  height: clamp(64px, 10vw, 84px);
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}
.nav-logo-mark {
  width: clamp(56px, 9vw, 72px);
  height: clamp(56px, 9vw, 72px);
  background: linear-gradient(145deg, var(--color-saffron), var(--color-saffron-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(194,87,10,0.45);
}
.nav-logo-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
  line-height: 1.15;
}
.nav-logo-line1 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35em;
}
.nav-logo-prachi {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--nav-logo-title) !important;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.nav-logo-foundation {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 700;
  font-style: italic;
  color: var(--nav-logo-accent) !important;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.nav-logo-tagline {
  display: block;
  width: 100%;
  font-family: var(--font-serif);
  font-size: clamp(0.82rem, 1.6vw, 0.98rem);
  font-style: italic;
  font-weight: 600;
  color: var(--nav-logo-sub) !important;
  padding-top: 6px;
  margin: 0;
  border-top: 2px solid var(--nav-logo-rule);
  line-height: 1.3;
  max-width: 22rem;
}

.navbar-prachi.scrolled .nav-logo-prachi,
.navbar-prachi.scrolled .nav-logo-foundation {
  text-shadow: none;
}

/* Nav Links - Center */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li > a,
.nav-links > li > .nav-link-btn {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 9px 18px;
  border-radius: 10px;
  transition: var(--transition);
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-links > li > a.active {
  color: var(--color-saffron);
}

.navbar-prachi:not(.scrolled) .nav-links > li > a,
.navbar-prachi:not(.scrolled) .nav-links > li > .nav-link-btn {
  color: rgba(255,255,255,0.85);
}
.navbar-prachi:not(.scrolled) .nav-links > li > a.active {
  color: white;
  background: rgba(255,255,255,0.12);
}

.nav-links > li > a:hover,
.nav-links > li > .nav-link-btn:hover {
  color: var(--color-saffron);
  background: rgba(194,87,10,0.06);
}

.navbar-prachi:not(.scrolled) .nav-links > li > a:hover,
.navbar-prachi:not(.scrolled) .nav-links > li > .nav-link-btn:hover {
  color: white;
  background: rgba(255,255,255,0.12);
}

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

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

.dropdown-menu-prachi {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(26,47,74,0.12), 0 0 0 1px rgba(232,213,196,0.4);
  min-width: 220px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  list-style: none;
}

.dropdown-menu-prachi li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--color-text);
  font-weight: 500;
  transition: var(--transition);
}
.dropdown-menu-prachi li a:hover {
  background: var(--color-saffron-pale);
  color: var(--color-saffron);
}
.dropdown-menu-prachi li a .drop-icon {
  width: 30px;
  height: 30px;
  background: var(--color-saffron-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.dropdown-menu-prachi li a:hover .drop-icon {
  background: var(--color-saffron);
}

/* Nav Action Buttons - Right */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-connect {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-indigo);
  padding: 10px 22px;
  border-radius: 60px;
  border: 2px solid var(--color-border);
  transition: var(--transition);
  white-space: nowrap;
  background: transparent;
}
.nav-connect i { font-size: 0.78rem; }
.nav-connect:hover {
  background: var(--color-indigo);
  color: white;
  border-color: var(--color-indigo);
  transform: translateY(-1px);
}
.navbar-prachi:not(.scrolled) .nav-connect {
  color: white;
  border-color: rgba(255,255,255,0.35);
}
.navbar-prachi:not(.scrolled) .nav-connect:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.nav-donate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-saffron), var(--color-saffron-light));
  color: white;
  padding: 10px 24px;
  border-radius: 60px;
  box-shadow: 0 3px 14px rgba(194,87,10,0.35);
  transition: var(--transition);
  white-space: nowrap;
  border: none;
}
.nav-donate i { font-size: 0.78rem; }
.nav-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(194,87,10,0.5);
  color: white;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-indigo);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar-prachi:not(.scrolled) .nav-hamburger span { background: white; }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-cream);
  z-index: 999;
  padding: 100px 28px 40px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.mobile-nav.open {
  display: flex;
  transform: translateX(0);
}
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.mobile-nav-label {
  padding: 18px 0 6px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-saffron);
  display: block;
}

/* ==========================================
   HERO - Dramatic Full-screen
   ========================================== */
.hero {
  min-height: 100vh;
  background: var(--color-indigo);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1509099836639-18ba1795216d?w=1600&q=80');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.3) saturate(0.7);
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,47,74,0.88) 0%,
    rgba(194,87,10,0.25) 45%,
    rgba(26,47,74,0.82) 100%
  );
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-decor-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(212,168,67,0.15);
  animation: rotate 25s linear infinite;
}
.hero-decor-circle:nth-child(1) {
  width: 600px; height: 600px;
  top: -150px; right: -150px;
}
.hero-decor-circle:nth-child(2) {
  width: 350px; height: 350px;
  bottom: 100px; left: -100px;
  animation-direction: reverse;
  animation-duration: 18s;
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 780px;
  padding-top: 60px;
}

.hero-content--tagline {
  max-width: min(100%, 56rem);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s forwards;
  letter-spacing: -0.02em;
}
.hero-title span {
  font-style: italic;
  color: var(--color-gold-light);
  display: inline;
}

/* Homepage hero — single slogan */
.hero-title--tagline {
  font-size: clamp(2.35rem, 7.2vw, 4.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  text-wrap: balance;
  animation-delay: 0.45s;
}
.hero-title--tagline span {
  display: inline-block;
  margin-top: 0.06em;
  font-weight: 800;
  font-style: italic;
  color: var(--color-gold-light);
  text-shadow: 0 0 60px rgba(212, 168, 67, 0.35);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.85;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--color-saffron), var(--color-saffron-light));
  color: white;
  padding: 18px 44px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(194,87,10,0.5);
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.02em;
}
.btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(194,87,10,0.6);
  color: white;
}

.btn-hero-outline {
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 18px 44px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  border: 2.5px solid rgba(255,255,255,0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(4px);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: white;
  transform: translateY(-4px);
  color: white;
  box-shadow: 0 12px 40px rgba(255,255,255,0.1);
}

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(26,47,74,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.hero-stat {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.hero-stat:nth-child(1) { animation-delay: 1.3s; }
.hero-stat:nth-child(2) { animation-delay: 1.45s; }
.hero-stat:nth-child(3) { animation-delay: 1.6s; }
.hero-stat:nth-child(4) { animation-delay: 1.75s; border-right: none; }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--color-gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 140px;
  right: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 0.8s ease 2s forwards;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
  font-weight: 600;
}
.hero-scroll-line {
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(212,168,67,0.6));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.7); }
}

/* ==========================================
   SECTION SEPARATOR (includes/separator.php)
   ========================================== */
.section-separator {
  position: relative;
  padding: 16px 0;
  overflow: hidden;
  background: var(--color-cream);
}

.prachi-divider {
  width: 100%;
  height: 48px;
  display: block;
}

.prachi-sep-bg {
  fill: var(--color-cream);
}

.prachi-sep-rule {
  stroke: var(--color-saffron);
  stroke-width: 1.25;
  stroke-opacity: 0.38;
}

.prachi-sep-rule--bottom {
  stroke: var(--color-gold);
  stroke-opacity: 0.42;
}

.prachi-sep-dot {
  fill: var(--color-saffron);
  opacity: 0.22;
}

.prachi-sep-arc {
  stroke: var(--color-gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  opacity: 0.55;
}

.prachi-sep-center-ring {
  fill: none;
  stroke: var(--color-saffron);
  stroke-width: 1.35;
  opacity: 0.5;
}

.prachi-sep-center-glow {
  fill: var(--color-gold);
  opacity: 0.2;
}

.prachi-sep-center-core {
  fill: var(--color-indigo);
  opacity: 0.9;
}

stop.prachi-sep-stop-color {
  stop-color: var(--color-cream);
}

.separator-pattern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}

.sep-center-motif {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 16px;
}

.motif-diamond {
  position: relative;
  width: 40px; height: 40px;
  background: var(--color-saffron);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.motif-diamond::before {
  content: '';
  position: absolute;
  inset: 5px;
  background: var(--color-cream);
}
.motif-diamond::after {
  content: '';
  position: absolute;
  inset: 8px;
  background: var(--color-saffron);
  border-radius: 50%;
}

.sep-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-saffron), var(--color-gold), var(--color-saffron), transparent);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
  background: var(--color-cream);
  padding: 100px 0;
  position: relative;
  overflow: visible;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-img-wrap {
  position: relative;
  display: block;
}
.about-img-main {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  top: 20px;
  left: 16px;
  background: linear-gradient(135deg, var(--color-saffron), var(--color-saffron-light));
  color: white;
  padding: 18px 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(194,87,10,0.35);
}
.about-img-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-img-badge-text {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  font-weight: 600;
}

.about-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-indigo);
  line-height: 1.55;
  border-left: 5px solid var(--color-gold);
  padding-left: 28px;
  margin: 32px 0;
  font-weight: 600;
}

.about-values {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.about-value-chip {
  background: var(--color-white);
  color: var(--color-saffron-dark);
  padding: 10px 20px;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid rgba(194,87,10,0.15);
  transition: var(--transition);
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.about-value-chip:hover {
  background: var(--color-saffron);
  color: white;
  border-color: var(--color-saffron);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(194,87,10,0.3);
}

/* ==========================================
   VISION / MISSION - Deep & Bold
   ========================================== */
.vision-section {
  background: var(--color-indigo);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.vision-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(194,87,10,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,168,67,0.1) 0%, transparent 50%);
}

.vm-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.vm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
}
.vm-card.vision-card::before { background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light)); }
.vm-card.mission-card::before { background: linear-gradient(90deg, var(--color-saffron), var(--color-saffron-light)); }

.vm-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.vm-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
}
.vision-card .vm-icon { background: rgba(212,168,67,0.2); }
.mission-card .vm-icon { background: rgba(194,87,10,0.2); }

.vm-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 12px;
}
.vm-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.vm-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.9;
}

.approach-box {
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 24px;
  padding: 44px;
  text-align: center;
  margin-top: 40px;
}
.approach-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-gold-light);
  margin-bottom: 18px;
  font-weight: 600;
}
.approach-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.approach-step {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  background: rgba(255,255,255,0.06);
  padding: 12px 32px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.approach-arrow {
  color: var(--color-gold);
  font-size: 1.4rem;
}

/* ==========================================
   PROGRAMS - Bold Cards
   ========================================== */
.programs-section {
  background: var(--color-cream);
  padding: 100px 0;
  position: relative;
}

.program-card {
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(232,213,196,0.5);
  position: relative;
}
.program-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.program-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.program-card:hover .program-card-img { transform: scale(1.08); }
.program-card-img-wrap { overflow: hidden; position: relative; }

.program-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--color-saffron), var(--color-saffron-light));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 60px;
  box-shadow: 0 4px 12px rgba(194,87,10,0.4);
}

.program-card-body { padding: 36px 30px; }
.program-card-icon { font-size: 2.4rem; margin-bottom: 16px; }
.program-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-indigo);
  margin-bottom: 10px;
}
.program-card-sub {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-saffron);
  margin-bottom: 14px;
  font-weight: 600;
}
.program-card-text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}
.program-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-saffron);
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 20px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}
.program-card-link:hover { gap: 14px; color: var(--color-saffron-dark); }

/* ==========================================
   IMPACT NUMBERS - Bold & Energetic
   ========================================== */
.impact-section {
  background: var(--color-indigo);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(194,87,10,0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(212,168,67,0.08) 0%, transparent 50%);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.impact-item {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  padding: 56px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}
.impact-item:hover {
  background: var(--color-saffron);
  transform: scale(1.03);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(194,87,10,0.4);
}
.impact-item:hover .impact-num,
.impact-item:hover .impact-label,
.impact-item:hover .impact-icon { color: white; }

.impact-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  display: block;
  transition: var(--transition);
}
.impact-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-gold-light);
  line-height: 1;
  transition: var(--transition);
}
.impact-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  font-weight: 500;
  transition: var(--transition);
  line-height: 1.5;
}

/* ==========================================
   WHY WE EXIST - Emotional & Bold
   ========================================== */
.why-section {
  background: var(--color-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(194,87,10,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: var(--color-cream);
  border-radius: 20px;
  border-left: 7px solid var(--color-saffron);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
}
.why-card:nth-child(2) { border-left-color: var(--color-gold); }
.why-card:nth-child(3) { border-left-color: var(--color-indigo); }
.why-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
  background: #faf8f4;
}
.why-card-icon {
  font-size: 2.6rem;
  flex-shrink: 0;
}
.why-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-indigo);
  margin-bottom: 8px;
  line-height: 1.35;
}
.why-card-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  font-style: italic;
}

.why-closing {
  background: linear-gradient(135deg, var(--color-indigo) 0%, #243B5A 100%);
  color: white;
  border-radius: 28px;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.why-closing::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(194,87,10,0.2);
}
.why-closing::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(212,168,67,0.1);
}
.why-closing-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  font-weight: 700;
}
.why-closing-text span { color: var(--color-gold-light); }

/* ==========================================
   GALLERY - Clean & Dynamic
   ========================================== */
.gallery-section {
  background: var(--color-cream);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 8px;
  border-radius: 28px;
  overflow: hidden;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child { grid-row: 1 / 3; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.05) !important;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,47,74,0.85) 0%, rgba(26,47,74,0.2) 40%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  position: absolute;
  bottom: 20px; left: 20px;
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.gallery-item:hover .gallery-overlay-text {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:nth-child(1) img { filter: brightness(0.88) saturate(1.1); }
.gallery-item:nth-child(2) img { filter: brightness(0.88) saturate(1.2) sepia(0.15); }
.gallery-item:nth-child(3) img { filter: brightness(0.88) saturate(1.1); }
.gallery-item:nth-child(4) img { filter: brightness(0.88) saturate(1.2) sepia(0.1); }
.gallery-item:nth-child(5) img { filter: brightness(0.88) saturate(1.1); }

/* ==========================================
   STORY TIMELINE
   ========================================== */
.story-section {
  background: var(--color-indigo);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(212,168,67,0.1) 0%, transparent 50%);
}

.story-timeline {
  position: relative;
  padding-left: 40px;
}
.story-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-saffron), var(--color-gold), rgba(212,168,67,0.2));
  border-radius: 2px;
}
.story-item {
  position: relative;
  padding: 0 0 40px 44px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}
.story-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.story-item::before {
  content: '';
  position: absolute;
  left: -7px; top: 8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-saffron);
  border: 3px solid var(--color-gold);
  box-shadow: 0 0 0 4px rgba(194,87,10,0.2);
}
.story-item-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-gold-light);
  margin-bottom: 10px;
}
.story-item-text {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.85;
}

/* ==========================================
   CTA / DONATE - Bold & Urgent
   ========================================== */
.cta-section {
  background: var(--color-cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: linear-gradient(135deg, var(--color-saffron) 0%, var(--color-saffron-light) 40%, var(--color-gold) 100%);
  border-radius: 32px;
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.cta-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}
.cta-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.btn-cta-white {
  background: white;
  color: var(--color-saffron);
  padding: 18px 52px;
  border-radius: 60px;
  font-weight: 800;
  font-size: 1.05rem;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  letter-spacing: 0.02em;
}
.btn-cta-white:hover {
  background: var(--color-indigo);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

/* ==========================================
   CONTACT
   ========================================== */
.contact-section {
  background: var(--color-white);
  padding: 100px 0;
}

.contact-info-card {
  background: var(--color-cream);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(232,213,196,0.5);
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--color-saffron), var(--color-saffron-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(194,87,10,0.25);
}
.contact-info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-info-value {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.95rem;
}

.contact-form-wrap {
  background: var(--color-cream);
  border-radius: 24px;
  padding: 44px;
  border: 1px solid rgba(232,213,196,0.5);
}
.form-floating label { color: var(--color-text-muted); font-size: 0.9rem; }
.form-control, .form-select {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  font-family: var(--font-sans);
  color: var(--color-text);
  font-size: 0.95rem;
  padding: 14px 18px;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--color-saffron);
  box-shadow: 0 0 0 4px rgba(194,87,10,0.1);
  background: var(--color-white);
}
textarea.form-control { resize: vertical; min-height: 130px; }

/* ==========================================
   FOOTER - Deep & Rich
   ========================================== */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--color-saffron), var(--color-gold), var(--color-saffron-light), var(--color-saffron));
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}
.footer-brand-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-gold-light);
  font-size: 1rem;
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 22px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--color-saffron);
  transition: var(--transition);
}
.footer-links a:hover {
  color: white;
  padding-left: 6px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  font-size: 1.1rem;
  text-decoration: none;
}
.social-btn:hover {
  background: var(--color-saffron);
  border-color: var(--color-saffron);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(194,87,10,0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-badge {
  background: rgba(194,87,10,0.15);
  border: 1px solid rgba(194,87,10,0.3);
  color: var(--color-saffron);
  font-size: 0.78rem;
  padding: 6px 18px;
  border-radius: 60px;
  font-weight: 700;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }
.delay-4 { transition-delay: 0.6s !important; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .navbar-inner { padding: 12px 20px; }

  .hero { padding-bottom: 110px; }
  .hero-content { padding-top: 20px; }
  .nav-logo { max-width: 360px; }
  .nav-logo-symbol { height: 58px; }
  .nav-logo-mark { width: 52px; height: 52px; font-size: 1.45rem; }
  .nav-logo-prachi, .nav-logo-foundation { font-size: 1.28rem; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(4) { border-right: none; }

  .impact-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 240px);
  }
  .gallery-item:first-child { grid-row: 1 / 2; }

  .about-section, .vision-section, .programs-section,
  .gallery-section, .why-section, .story-section,
  .cta-section, .contact-section { padding: 80px 0; }
}

@media (max-width: 767px) {
  .navbar-inner { padding: 12px 20px; }
  .nav-logo { max-width: 280px; gap: 12px; }
  .nav-logo-symbol { height: 52px; }
  .nav-logo-mark { width: 48px; height: 48px; font-size: 1.3rem; }
  .nav-logo-prachi, .nav-logo-foundation { font-size: 1.15rem; }
  .nav-logo-tagline { font-size: 0.78rem; padding-top: 4px; max-width: 16rem; }

  .hero { padding-bottom: 100px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-title--tagline { font-size: clamp(1.85rem, 9vw, 2.85rem); }
  .hero-eyebrow { letter-spacing: 0.28em; font-size: 0.65rem; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-stat:nth-child(2),
  .hero-stat:nth-child(4) { border-right: none; }
  .hero-stat:nth-child(1),
  .hero-stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); }
  .hero-stat { padding: 20px 16px; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-scroll { display: none; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .btn-hero-primary, .btn-hero-outline {
    width: 100%;
    justify-content: center;
    padding: 16px 36px;
  }

  .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-item { padding: 36px 20px; }
  .impact-num { font-size: 2.2rem; }
  .impact-label { font-size: 0.78rem; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }
  .gallery-item:first-child { grid-row: 1 / 2; }

  .cta-box { padding: 56px 28px; }
  .cta-title { font-size: clamp(1.8rem, 6vw, 2.6rem); }

  .about-section, .vision-section, .programs-section,
  .gallery-section, .why-section, .story-section,
  .cta-section, .contact-section { padding: 64px 0; }

  .why-card { padding: 24px; gap: 16px; }
  .why-card-icon { font-size: 2rem; }
  .why-closing { padding: 36px 28px; }

  .about-quote { font-size: 1.25rem; }
  .about-img-main { height: auto; }
  .about-img-badge { left: 12px; top: 12px; padding: 14px 16px; }

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

  .btn-primary { padding: 14px 32px; width: 100%; }
  .btn-outline { padding: 13px 30px; width: 100%; }

  .section-separator { padding: 14px 0; }
}

@media (max-width: 480px) {
  .nav-logo { max-width: 220px; }
  .nav-logo-symbol { height: 46px; }
  .nav-logo-mark { width: 44px; height: 44px; font-size: 1.15rem; }
  .nav-logo-prachi, .nav-logo-foundation { font-size: 1.05rem; }
  .impact-grid { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 18px; }
  .hero-stat:last-child { border-bottom: none; }
  .approach-steps { flex-direction: column; gap: 12px; }
  .approach-arrow { transform: rotate(90deg); }
}

/* ==========================================
   Inner pages — About / Akshar Gyaan
   ========================================== */
.page-prose {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.page-prose--lead {
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

/* About page — Our Story column image: full natural height, no crop */
.about-page-story-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 24px;
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(212, 168, 67, 0.12),
    0 20px 50px rgba(26, 47, 74, 0.08);
  filter: saturate(1.03) contrast(1.02);
}

.page-highlight {
  background: var(--color-saffron-pale);
  border-left: 4px solid var(--color-saffron);
  border-radius: 0 16px 16px 0;
  padding: 28px 32px;
  margin: 32px 0;
}
.page-highlight p:last-child { margin-bottom: 0; }
.dot-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dot-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.dot-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-saffron);
}
.ag-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.ag-info-tile {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.ag-info-tile strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-saffron);
  margin-bottom: 6px;
}
.ag-info-tile span {
  font-weight: 600;
  color: var(--color-indigo);
  font-size: 0.95rem;
}
.ag-panel {
  background: var(--color-indigo);
  color: rgba(255,255,255,0.88);
  border-radius: 24px;
  padding: 40px 36px;
  margin: 32px 0;
}
.ag-panel h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 16px;
}
.ag-panel .dot-list li { color: rgba(255,255,255,0.82); }
.ag-panel .dot-list li::before { background: var(--color-gold-light); }
.ag-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 767px) {
  .ag-two-col { grid-template-columns: 1fr; }
}