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

:root {
  --maroon: #741B47;
  --maroon-deep: #4A1230;
  --wine: #8B2252;
  --crimson: #AB0032;
  --saffron: #D98C3D;
  --saffron-light: #F0C592;
  --blush: #F6E9EF;
  --cream: #FAF6F1;
  --ink: #2B1620;
  --muted: #6E5A63;
  --white: #FFFFFF;
  --line: rgba(217,140,61,0.28);
  --radius: 16px;
  --shadow: 0 18px 50px rgba(74,18,48,0.16);
}

html { scroll-behavior: smooth; scrollbar-color: var(--wine) var(--cream); scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--wine); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--maroon); }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, .logo .brand { font-family: 'Playfair Display', serif; }

a { text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
section { padding: 78px 0; }

.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 14px;
}
.section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.section-head h2 {
  font-size: clamp(32px, 4.4vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--maroon);
}
.section-head.light h2 { color: var(--white); }
.section-head p { color: var(--muted); font-size: 17.5px; }
.section-head.light p { color: #e6d3dc; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: var(--maroon-deep);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(217,140,61,0.4); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--saffron); color: var(--saffron); }
.btn-outline-maroon {
  background: transparent;
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
}
.btn-outline-maroon:hover { background: var(--maroon); color: #fff; }

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: #fff;
  box-shadow: 0 2px 18px rgba(74,18,48,0.1);
  transition: padding 0.4s, box-shadow 0.4s;
}
header.scrolled {
  padding: 12px 0;
  box-shadow: 0 6px 24px rgba(74,18,48,0.18);
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; }
.logo img { height: 44px; width: auto; }
.logo-fallback { display: flex; flex-direction: column; line-height: 1.1; }
.logo-fallback .brand { font-size: 20px; font-weight: 700; color: var(--maroon); letter-spacing: 0.5px; }
.logo-fallback .brand span { color: var(--saffron); }
.logo-fallback .tag { font-size: 9px; font-weight: 500; color: var(--wine); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links li { position: relative; }
.nav-links a { color: var(--ink); font-size: 14.5px; font-weight: 600; letter-spacing: 0.3px; transition: color 0.3s; padding: 8px 2px; display: inline-block; }
.nav-links a:hover { color: var(--wine); }
.nav-links li > a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 2px; right: 2px; bottom: 4px; height: 2px;
  background: var(--saffron); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.nav-links li > a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--wine); }
.nav-links a.active:not(.nav-cta)::after { transform: scaleX(1); background: var(--wine); }
.nav-links a.nav-cta {
  background: var(--saffron);
  color: var(--maroon-deep) !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--saffron-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--maroon); display: block; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 60px;
  background: linear-gradient(rgba(20,4,12,0.4), rgba(20,4,12,0.28)),
              url('images/hero-chaitanyam-building.jpg') center/cover no-repeat;
}
.hero-inner { text-align: center; max-width: 780px; margin: 0 auto; }
.badge {
  display: inline-block;
  border: 1px solid rgba(217,140,61,0.5);
  background: rgba(217,140,61,0.12);
  color: var(--saffron-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 .gold-text { color: var(--saffron-light); }
.hero > .container > .hero-inner > p {
  color: #ecdbe3;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.hero-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust span { color: #ecdbe3; font-size: 14px; }
.hero-trust strong { color: var(--saffron-light); font-family: 'Playfair Display', serif; font-size: 26px; display: block; }
.hero-trust .sep { width: 1px; height: 30px; background: rgba(255,255,255,0.18); }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.75); font-size: 20px; animation: bounce-cue 2s infinite; transition: color 0.3s;
}
.scroll-cue:hover { color: var(--saffron-light); }
@keyframes bounce-cue { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ── IMPACT COUNTER ── */
.impact-band { background: linear-gradient(135deg, var(--maroon), var(--maroon-deep)); padding: 56px 0; }
.impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 30px; text-align: center; }
.impact-item .num { font-family: 'Jost', sans-serif; font-weight: 700; font-size: clamp(28px, 3.2vw, 40px); color: var(--saffron-light); }
.impact-item .lbl { color: #ecdbe3; font-size: 13.5px; letter-spacing: 0.5px; margin-top: 6px; }
.impact-item .sub { color: #d3aebd; font-size: 11.5px; margin-top: 2px; }

/* ── ABOUT + PILLARS ── */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-imgs { position: relative; }
.about-imgs .img-main {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.about-imgs .img-float {
  position: absolute; bottom: -30px; left: -30px;
  width: 45%; height: 190px; object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow);
}
.about-text h2 { font-size: clamp(28px, 3.5vw, 38px); color: var(--maroon); margin-bottom: 18px; font-weight: 700; }
.about-text p { color: var(--muted); margin-bottom: 14px; }
.pillars-wide { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 66px; }
.pillar-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px 30px; text-align: center; box-shadow: var(--shadow); transition: transform 0.3s;
}
.pillar-card:hover { transform: translateY(-6px); }
.pillar-card .pname { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--wine); font-size: 36px; margin-bottom: 12px; letter-spacing: 1.5px; }
.pillar-card p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── TEAM (nested inside About, revealed via button) ── */
.team-toggle-wrap { text-align: center; margin-top: 56px; }
#teamReveal, #fieldReveal { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 0.55s ease, opacity 0.45s ease; }
#teamReveal.open, #fieldReveal.open { grid-template-rows: 1fr; opacity: 1; }
#teamReveal .team-reveal-inner, #fieldReveal .team-reveal-inner { overflow: hidden; padding-top: 50px; }

/* ── PROGRAMS ── */
.programs { background: linear-gradient(180deg, #fff, var(--cream)); }
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prog-card {
  display: block; color: inherit;
  background: #fff; border: 1px solid #f0dfe8; border-radius: var(--radius);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.prog-card img { width: 100%; height: 190px; object-fit: cover; transition: transform 0.5s ease; }
.prog-card:hover img { transform: scale(1.06); }
.prog-card .prog-body { padding: 22px 22px 26px; }
.prog-card h3 { font-size: 19px; font-weight: 600; color: var(--maroon); margin-bottom: 10px; }
.prog-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }

.prog-card.featured {
  border: 3px solid var(--saffron); box-shadow: 0 18px 40px rgba(217,140,61,0.28);
  position: relative; animation: featured-glow 3.2s ease-in-out infinite;
}
.prog-card.featured .flag-badge { margin-bottom: 12px; position: relative; overflow: hidden; }
.prog-card.featured .flag-badge::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.75), transparent);
  animation: flag-shimmer 2.6s ease-in-out infinite;
}
@keyframes featured-glow {
  0%, 100% { box-shadow: 0 18px 40px rgba(217,140,61,0.28); }
  50% { box-shadow: 0 22px 54px rgba(217,140,61,0.55); }
}
@keyframes flag-shimmer {
  0% { left: -60%; }
  100% { left: 130%; }
}

/* ── EYE CARE FEATURED BLOCK ── */
.eye-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  border-radius: var(--radius); padding: 50px; margin-bottom: 50px; color: #fff;
}
.eye-featured img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.eye-featured .flag-badge {
  display: inline-block; background: var(--saffron); color: var(--maroon-deep);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.eye-featured h3 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.eye-featured p { color: #ecdbe3; margin-bottom: 22px; line-height: 1.75; }

/* ── PROGRAMS CTA BANNER ── */
.programs-cta {
  background: var(--blush); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px; text-align: center; margin: 50px 0;
}
.programs-cta h3 { color: var(--maroon); font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 10px; }
.programs-cta p { color: var(--muted); margin-bottom: 22px; }
.programs-cta .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.view-all-wrap { text-align: center; margin-top: 46px; }

/* ── IMPACT STORIES ── */
.stories { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.story-card {
  background: #fff; border: 1px solid #f0dfe8; border-radius: var(--radius);
  padding: 48px 44px;
}
.story-card .quote-mark { color: var(--saffron); font-size: 46px; font-family: 'Playfair Display', serif; line-height: 1; margin-bottom: 14px; display: block; }
.story-card p.quote { color: var(--ink); font-size: 17.5px; line-height: 1.85; margin-bottom: 26px; font-style: italic; }
.story-card .who { display: flex; align-items: center; gap: 12px; }
.av {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wine), var(--maroon));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; flex-shrink: 0;
}
.story-card .nm { color: var(--maroon); font-weight: 600; font-size: 14px; }
.story-card .rl { color: var(--muted); font-size: 12.5px; }

/* ── FULL IMPACT STORIES ── */
.story-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.story-full-card { background: #fff; border: 1px solid #f0dfe8; border-radius: var(--radius); overflow: hidden; }
.story-full-card img { width: 100%; height: 420px; object-fit: contain; background: var(--cream); transition: transform 0.5s ease; }
.story-full-card:hover img { transform: scale(1.04); }
.story-full-card .sfc-body { padding: 32px 34px; position: relative; }
.story-full-card .sfc-body::before {
  content: '"'; position: absolute; top: 6px; right: 28px; font-family: 'Playfair Display', serif;
  font-size: 90px; color: var(--blush); line-height: 1; z-index: 0; pointer-events: none;
}
.story-full-card .sfc-body > * { position: relative; z-index: 1; }
.story-full-card .sfc-body h3 { font-size: 21px; color: var(--maroon); margin-bottom: 14px; }
.story-full-card .sfc-body p { font-size: 14.5px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.story-full-card .sfc-body p:last-child { margin-bottom: 0; }

/* ── TEAM CARDS ── */
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.team-grid .team-card { flex: 0 1 260px; }
.team-card { text-align: center; border: 1px solid #f0dfe8; border-radius: var(--radius); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-photo {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--blush), #fff);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--wine);
}
.team-photo i { font-size: 44px; opacity: 0.55; }
.team-photo .ph-label { font-size: 11px; letter-spacing: 0.5px; color: var(--wine); opacity: 0.7; margin-top: 10px; text-transform: uppercase; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-photo img { transform: scale(1.08); }
.team-info { padding: 22px 16px 26px; }
.team-info h3 { font-size: 17px; color: var(--maroon); margin-bottom: 4px; }
.team-info p { font-size: 14px; color: var(--muted); }

.field-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 16px; }
.field-tile {
  border-radius: var(--radius); border: 1px solid #f0dfe8; overflow: hidden;
  position: relative; transition: transform 0.3s;
}
.field-tile:hover { transform: translateY(-4px); }
.field-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.field-tile:hover img { transform: scale(1.08); }
.field-tile.wide { grid-column: span 2; }

/* ── DONATE ── */
.donate { background: linear-gradient(135deg, var(--maroon), var(--maroon-deep)); border-radius: 24px; margin: 0 40px; padding: 70px 40px; }
.tier-card p { font-size: 15px !important; }
.donate .container { padding: 0; }
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tier-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(217,140,61,0.3);
  border-radius: 14px; padding: 30px 22px; text-align: center; transition: background 0.3s, transform 0.3s;
}
.tier-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.tier-card .amt { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--saffron-light); margin-bottom: 10px; }
.tier-card p { color: #ecdbe3; font-size: 13.5px; line-height: 1.6; margin-bottom: 18px; min-height: 60px; }
.tier-card .btn { width: 100%; justify-content: center; padding: 11px; font-size: 12px; }
.donate-note { text-align: center; color: #ecdbe3; font-size: 13px; margin-top: 30px; }
.donate-note i { color: var(--saffron); margin-right: 6px; }

/* ── DONATE PAGE — amount form ── */
.donate-form-section { background: #fff; }
.donate-amount-card {
  max-width: 640px; margin: 0 auto; background: var(--cream);
  border: 1px solid #f0dfe8; border-radius: var(--radius); padding: 44px; text-align: center;
}
.donate-amount-card label { display: block; font-size: 13px; color: var(--maroon); font-weight: 600; margin-bottom: 10px; letter-spacing: 0.5px; text-transform: uppercase; }
.donate-amount-card .amount-input-wrap { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 26px; }
.donate-amount-card .amount-input-wrap span { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--maroon); font-weight: 700; }
.donate-amount-card input#donateAmount {
  width: 200px; font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--maroon);
  text-align: center; border: none; border-bottom: 2px solid var(--saffron); background: transparent; outline: none; padding: 4px;
}
.donate-amount-card .btn-gold { width: 100%; justify-content: center; }
.donate-amount-card .prefill-note { font-size: 12.5px; color: var(--muted); margin-top: 16px; }

/* ── GET INVOLVED ── */
.involved { background: var(--cream); }
.inv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.inv-card {
  background: #fff; border: 1px solid #f0dfe8; border-radius: var(--radius);
  padding: 46px 32px; text-align: center; transition: transform 0.3s, box-shadow 0.3s;
}
.inv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.inv-icon {
  width: 76px; height: 76px; border-radius: 20px; margin: 0 auto 22px;
  background: var(--blush); color: var(--wine);
  display: flex; align-items: center; justify-content: center; font-size: 30px;
}
.inv-card h3 { font-size: 21px; color: var(--maroon); margin-bottom: 10px; }
.inv-card p { font-size: 15px; color: var(--muted); margin-bottom: 22px; }

/* ── CSR PAGE ── */
.csr-points { display: grid; gap: 18px; margin-top: 30px; }
.csr-point { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid #f0dfe8; border-radius: var(--radius); padding: 22px 26px; }
.csr-point .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--blush); color: var(--wine); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.csr-point h4 { color: var(--maroon); font-size: 15.5px; margin-bottom: 4px; }
.csr-point p { color: var(--muted); font-size: 14px; margin: 0; }

.mca-note { text-align: center; background: var(--blush); border-radius: var(--radius); padding: 20px; margin-top: 30px; color: var(--maroon); font-weight: 600; font-size: 14.5px; }

.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.logo-tile {
  background: #fff; border: 1px solid #f0dfe8; border-radius: var(--radius);
  padding: 24px; display: flex; align-items: center; justify-content: center;
  height: 110px; transition: transform 0.3s, box-shadow 0.3s;
}
.logo-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.logo-tile img { max-height: 60px; max-width: 100%; object-fit: contain; }
.logo-tile.text-only { color: var(--maroon); font-weight: 600; text-align: center; font-size: 14px; }

/* ── LOGO MARQUEE (CSR page) ── */
.marquee-wrap { overflow: hidden; padding: 6px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: 28px; width: max-content; animation: marquee-left 34s linear infinite; }
.marquee-track.reverse { animation-name: marquee-right; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-tile {
  flex: 0 0 auto; width: 190px; height: 105px; background: #fff; border: 1px solid #f0dfe8;
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; padding: 16px;
}
.marquee-tile img { max-height: 56px; max-width: 100%; object-fit: contain; }
.marquee-tile.text-only { color: var(--maroon); font-weight: 600; text-align: center; font-size: 13px; }
@keyframes marquee-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.notice-list { display: grid; gap: 16px; }
.notice-item { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid #f0dfe8; border-radius: var(--radius); padding: 20px 26px; flex-wrap: wrap; gap: 12px; }
.notice-item .ni-left { display: flex; align-items: center; gap: 14px; }
.notice-item .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--blush); color: var(--wine); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.notice-item h4 { color: var(--maroon); font-size: 15px; margin-bottom: 2px; }
.notice-item p { color: var(--muted); font-size: 13px; margin: 0; }
.notice-item .btn { padding: 10px 24px; font-size: 11.5px; }
.notice-item.pending .btn { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.notice-item.pending p { color: #b08a97; font-style: italic; }

/* ── CONTACT ── */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: start; }
.contact-info h3 { color: var(--maroon); font-size: 20px; margin-bottom: 26px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.info-item .ic {
  width: 44px; height: 44px; border-radius: 12px; background: var(--blush);
  color: var(--wine); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px;
}
.info-item h4 { font-size: 14px; font-weight: 600; color: var(--maroon); margin-bottom: 4px; }
.info-item p, .info-item a { font-size: 14px; color: var(--muted); }
.info-item a:hover { color: var(--wine); }
.info-item .contact-name { font-weight: 600; color: var(--ink); }
.map-embed { border-radius: var(--radius); overflow: hidden; margin-top: 24px; border: 1px solid #f0dfe8; }
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }
.social-block { margin-top: 24px; }
.social-block h4 { font-size: 13px; color: var(--maroon); margin-bottom: 12px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%; background: var(--blush);
  color: var(--wine); display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s;
}
.social-links a:hover { background: var(--saffron); color: #fff; }

.contact-form { background: var(--cream); padding: 40px; border-radius: var(--radius); border: 1px solid #f0dfe8; }
.contact-form h3 { color: var(--maroon); font-size: 20px; margin-bottom: 6px; }
.contact-form .sub { color: var(--muted); font-size: 13.5px; margin-bottom: 26px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  border: 1px solid #e6d3dc; background: #fff; font-family: 'Jost', sans-serif;
  font-size: 14px; color: var(--ink); outline: none; transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--saffron); }
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-form .btn-gold { width: 100%; justify-content: center; border: none; }

/* ── FOOTER ── */
footer { background: var(--maroon-deep); color: #d9c2ce; padding: 70px 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 50px; }
.foot-logo-chip { display: inline-block; background: #fff; padding: 10px 20px; border-radius: 12px; margin-bottom: 16px; }
.foot-logo-chip img { height: 46px; display: block; }
.foot-brand p { font-size: 14.5px; line-height: 1.8; color: #b895a5; }
.foot-col h4 { color: #fff; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.foot-col ul li { margin-bottom: 10px; }
.foot-col ul li a { color: #b895a5; font-size: 14.5px; transition: color 0.3s; }
.foot-col ul li a:hover { color: var(--saffron); }
.foot-contact p { font-size: 14.5px; margin-bottom: 12px; color: #b895a5; }
.foot-contact .ic { color: var(--saffron); margin-right: 6px; }
.foot-contact a { color: #b895a5; }
.foot-contact a:hover { color: var(--saffron); }
.foot-contact .contact-name { color: #fff; font-weight: 500; }
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  color: #fff; display: flex; align-items: center; justify-content: center; transition: background 0.3s;
}
.foot-social a:hover { background: var(--saffron); color: var(--maroon-deep); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: #8a6e7a; flex-wrap: wrap; gap: 10px;
}
.foot-bottom a { color: #8a6e7a; }
.foot-bottom a:hover { color: var(--saffron); }

/* ── FLOATING BUTTONS ── */
.float-btns { position: fixed; bottom: 28px; right: 28px; display: flex; flex-direction: column; gap: 12px; z-index: 999; }
.float-btns a {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.3s;
}
.float-btns a:hover { transform: scale(1.1); }
.f-wa { background: #25D366; }
.f-call { background: var(--maroon); }
.f-top {
  background: var(--wine); opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.f-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .pillars-wide { grid-template-columns: 1fr; }
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .eye-featured { grid-template-columns: 1fr; }
  .eye-featured img { height: 260px; }
  .story-grid, .story-full-grid { grid-template-columns: 1fr; }
  .field-gallery { grid-template-columns: repeat(2, 1fr); }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .inv-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .donate { margin: 0 24px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; }
  section { padding: 52px 0; }
  .impact-grid, .prog-grid, .tier-grid, .field-gallery { grid-template-columns: 1fr; }
  .team-grid .team-card { flex-basis: 100%; max-width: 320px; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .field-tile.wide { grid-column: span 1; }
  .foot-grid { grid-template-columns: 1fr; }
  .about-imgs .img-float { display: none; }
  .donate { padding: 50px 24px; margin: 0 16px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .notice-item { flex-direction: column; align-items: flex-start; }
  .notice-item .btn { width: 100%; justify-content: center; }
}
