/* === Navjeevan Society === */
:root {
  --ink: #1a1a2e;
  --ink-soft: #2d3561;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #f9fafb;
  --surface: #ffffff;
  --brand: #1a56db;
  --brand-2: #1e429f;
  --brand-3: #3f83f8;
  --warm: #e3a008;
  --warm-2: #c27803;
  --gold: #f59e0b;
  --rose: #eff6ff;
  --mint: #ecfdf5;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 24px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.06);
  --r-sm: 8px;
  --r: 16px;
  --r-lg: 24px;
  --t: .3s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg); color: var(--ink);
  line-height: 1.7; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1,h2,h3,h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.15; letter-spacing: -.025em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; line-height: 1.3; }
p { color: var(--muted); line-height: 1.75; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: currentColor; display: inline-block; border-radius: 2px; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 8px; font-weight: 600; font-size: .9rem;
  cursor: pointer; border: 2px solid transparent; transition: var(--t); white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--brand); transform: translateY(-1px); }
.btn-warm { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-warm:hover { background: var(--brand-2); border-color: var(--brand-2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,86,219,.3); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* === Top bar === */
.topbar { background: var(--brand-2); color: rgba(255,255,255,.9); padding: 9px 0; font-size: .8rem; letter-spacing: .01em; }
.topbar-row { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: inherit; }
.topbar-info { display: flex; align-items: center; gap: 0; }
.topbar-info span { display: inline-flex; align-items: center; gap: 6px; padding: 0 16px; border-right: 1px solid rgba(255,255,255,.2); }
.topbar-info span:last-child { border-right: none; }
.topbar-info i { color: var(--gold); font-size: .85rem; }

/* === Navbar === */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--line);
  transition: var(--t); box-shadow: none;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1200px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 48px; height: 48px; border-radius: 12px; overflow: hidden; background: var(--brand-2); display: grid; place-items: center; }
.brand-mark img { width: 36px; height: 36px; object-fit: contain; filter: brightness(0) invert(1); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--ink); letter-spacing: -.01em; }
.brand-text small { font-size: .68rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.menu > li > a {
  font-size: .88rem; font-weight: 500; color: var(--ink-soft);
  padding: 6px 10px; border-radius: 6px;
  transition: var(--t); position: relative; display: flex; align-items: center; gap: 5px;
}
.menu > li > a:hover { color: var(--brand); background: var(--rose); }
.menu > li > a.active { color: var(--brand); font-weight: 600; }
.menu > li > a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--brand); border-radius: 50%;
}
.nav-cta {
  background: var(--brand) !important; color: #fff !important;
  border-radius: 8px !important; padding: 9px 20px !important;
  font-size: .88rem !important; font-weight: 600 !important; margin-left: 8px;
}
.nav-cta:hover { background: var(--brand-2) !important; color: #fff !important; }
.menu-toggle { display: none; width: 40px; height: 40px; border-radius: 8px; background: var(--rose); color: var(--brand); border: none; cursor: pointer; font-size: 1.1rem; }

/* === Dropdown === */
.menu li.has-drop { position: relative; }
.drop-caret { font-size: .6rem; transition: transform .2s ease; }
.menu li.has-drop:hover .drop-caret,
.menu li.has-drop.open .drop-caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: #fff; border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.14), 0 2px 8px rgba(0,0,0,.06);
  border: 1px solid var(--line); min-width: 210px; padding: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  transition-delay: 0s;
  z-index: 200;
}
.menu li.has-drop { padding-bottom: 4px; }
.dropdown::before {
  content: ''; position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px; background: #fff;
  border-left: 1px solid var(--line); border-top: 1px solid var(--line);
}
.menu li.has-drop:hover .dropdown,
.menu li.has-drop.open .dropdown { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); transition-delay: 0s; }
.menu li.has-drop .dropdown { transition-delay: 180ms; }
.dropdown li { list-style: none; }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: 8px; font-size: .87rem; font-weight: 500;
  color: var(--ink-soft); transition: var(--t); white-space: nowrap;
}
.dropdown a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--line); flex-shrink: 0; transition: var(--t); }
.dropdown a:hover { color: var(--brand); background: var(--rose); }
.dropdown a:hover::before { background: var(--brand); }
.dropdown a::after { display: none !important; }

/* === HERO === */
.hero {
  padding: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1a56db 100%);
  position: relative; overflow: hidden; min-height: 92vh; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../assets/img/about.jpg') center/cover no-repeat;
  opacity: .12; mix-blend-mode: luminosity;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shapes span {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.18) 0%, transparent 70%);
}
.hero-shapes span:nth-child(1) { width: 700px; height: 700px; top: -200px; right: -100px; }
.hero-shapes span:nth-child(2) { width: 400px; height: 400px; bottom: -100px; left: 10%; background: radial-gradient(circle, rgba(63,131,248,.2) 0%, transparent 70%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 100px 0 80px; position: relative; z-index: 2; }
.hero-text { color: #fff; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px; background: rgba(245,158,11,.18); border: 1px solid rgba(245,158,11,.35);
  border-radius: 999px; font-size: .78rem; color: var(--gold); font-weight: 600;
  margin-bottom: 24px; letter-spacing: .04em;
}
.hero-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .5; } }
.hero h1 { color: #fff; margin-bottom: 8px; font-size: clamp(2.4rem, 5vw, 4rem); }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-mr { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 1rem; color: rgba(255,255,255,.7); margin-bottom: 20px; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.78); max-width: 520px; margin-bottom: 36px; line-height: 1.8; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-actions .btn-warm { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.hero-actions .btn-warm:hover { background: var(--warm-2); border-color: var(--warm-2); color: #fff; }
.hero-meta { display: flex; gap: 0; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.15); }
.hero-meta-item { flex: 1; text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,.15); }
.hero-meta-item:first-child { padding-left: 0; text-align: left; }
.hero-meta-item:last-child { border-right: none; }
.hero-meta-item .num { font-family: 'Fraunces', serif; font-size: 2.6rem; color: #fff; display: block; line-height: 1; font-weight: 600; }
.hero-meta-item small { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }

/* Hero right side — image collage */
.hero-collage { position: relative; height: 520px; }
.hero-collage .ph { position: absolute; border-radius: var(--r); overflow: hidden; }
.hero-collage .ph img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .ph1 { width: 65%; height: 68%; top: 0; right: 0; box-shadow: 0 24px 64px rgba(0,0,0,.4); }
.hero-collage .ph2 { width: 52%; height: 46%; bottom: 0; left: 0; box-shadow: 0 16px 48px rgba(0,0,0,.35); }
.hero-collage .ph3 { width: 38%; height: 36%; bottom: 16%; right: 8%; border: 5px solid rgba(255,255,255,.15); box-shadow: 0 12px 36px rgba(0,0,0,.3); }
.hero-badge {
  position: absolute; top: 44%; left: -28px;
  background: #fff; padding: 14px 20px; border-radius: var(--r); box-shadow: var(--shadow-lg);
  display: flex; gap: 14px; align-items: center; z-index: 3;
}
.hero-badge i { width: 42px; height: 42px; background: var(--brand); color: #fff; border-radius: 10px; display: grid; place-items: center; font-size: 1.1rem; }
.hero-badge strong { display: block; font-family: 'Fraunces'; font-size: 1rem; color: var(--ink); line-height: 1.2; }
.hero-badge small { color: var(--muted); font-size: .75rem; }

/* === Marquee strip === */
.strip { background: var(--ink); padding: 22px 0; overflow: hidden; }
.strip-track { display: flex; gap: 56px; align-items: center; white-space: nowrap; animation: marquee 28s linear infinite; }
.strip-track span { font-family: 'Fraunces', serif; font-size: 1.2rem; font-style: italic; color: rgba(255,255,255,.75); flex-shrink: 0; }
.strip-track .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === Story / About split === */
.story { background: #fff; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.story-images { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 220px 180px; gap: 14px; }
.story-images > div { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.story-images > div:nth-child(1) { grid-row: 1 / 3; height: 100%; }
.story-images img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.story-images > div:hover img { transform: scale(1.06); }
.story-images > div::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(26,30,62,.35));
  pointer-events: none; transition: opacity .4s;
}
.story-images > div:hover::after { opacity: 0; }
.story-img-badge {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-radius: 10px; padding: 8px 14px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  pointer-events: none;
}
.story-img-badge i { color: var(--brand); font-size: .9rem; }
.story-img-badge span { font-size: .75rem; font-weight: 700; color: var(--ink); letter-spacing: .02em; }
.story-quote {
  background: linear-gradient(135deg, var(--brand-2), var(--ink));
  color: #fff; padding: 28px 32px; border-radius: var(--r); margin-top: 28px;
  position: relative; overflow: hidden;
}
.story-quote::before {
  content: '\201C'; position: absolute; top: -16px; left: 20px;
  font-family: 'Fraunces'; font-size: 8rem; color: rgba(245,158,11,.25); line-height: 1; pointer-events: none;
}
.story-quote p { color: rgba(255,255,255,.92); font-size: 1rem; font-style: italic; margin-bottom: 10px; position: relative; z-index: 1; }
.story-quote cite { color: var(--gold); font-weight: 600; font-size: .85rem; font-style: normal; }

/* === Programs Bento === */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.bento-item {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 280px;
  cursor: pointer; transition: var(--t); box-shadow: var(--shadow-sm);
}
.bento-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.bento-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.75) 100%);
  pointer-events: none;
}
.bento-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 2; }
.bento-content h3 { color: #fff; font-size: 1.15rem; margin-bottom: 4px; }
.bento-content p { color: rgba(255,255,255,.85); font-size: .85rem; margin: 0; line-height: 1.5; }
.bento-tag {
  display: inline-block; background: var(--gold); color: var(--ink);
  padding: 3px 10px; border-radius: 4px; font-size: .68rem;
  margin-bottom: 8px; letter-spacing: .06em; text-transform: uppercase; font-weight: 700;
}
.bento-item:hover img { transform: scale(1.07); }
.bento-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.b-1 { grid-column: span 4; min-height: 360px; }
.b-2, .b-3, .b-4, .b-5 { grid-column: span 2; }
.b-6 { grid-column: span 3; min-height: 300px; }
.b-7 { grid-column: span 3; min-height: 300px; }

/* Story quote full width */
.story-quote-full {
  background: linear-gradient(135deg, var(--brand-2), var(--ink));
  color: #fff; padding: 36px 48px; border-radius: var(--r); margin-top: 40px;
  position: relative; overflow: hidden; display: flex; align-items: center; gap: 40px;
}
.story-quote-full::before {
  content: '\201C'; position: absolute; top: -20px; left: 24px;
  font-family: 'Fraunces'; font-size: 9rem; color: rgba(245,158,11,.2); line-height: 1; pointer-events: none;
}
.story-quote-full p { color: rgba(255,255,255,.92); font-size: 1.1rem; font-style: italic; margin: 0 0 10px; position: relative; z-index: 1; flex: 1; }
.story-quote-full cite { color: var(--gold); font-weight: 600; font-size: .9rem; font-style: normal; display: block; }

/* === Stats === */
.stats {
  background: linear-gradient(135deg, #0f172a 0%, var(--brand-2) 60%, var(--brand) 100%);
  position: relative; overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: url('../assets/img/g6.jpg') center/cover no-repeat; opacity: .06;
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; z-index: 2; }
.stat { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,.1); }
.stat:last-child { border-right: none; }
.stat-num { display: block; font-family: 'Fraunces', serif; font-size: 3.6rem; font-weight: 600; line-height: 1; margin-bottom: 10px; color: #fff; }
.stat-lbl { font-size: .85rem; color: rgba(255,255,255,.7); letter-spacing: .06em; text-transform: uppercase; }
.stat-divider { width: 32px; height: 2px; background: var(--gold); margin: 12px auto 14px; border-radius: 2px; }

/* === Achievement Banner === */
.achievement-banner {
  background: linear-gradient(90deg, #7c3aed 0%, #4f46e5 50%, #2563eb 100%);
  padding: 36px 0;
}
.achievement-row { display: flex; align-items: center; gap: 28px; }
.achievement-icon { font-size: 2.8rem; flex-shrink: 0; filter: drop-shadow(0 2px 8px rgba(0,0,0,.25)); }
.achievement-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.achievement-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3);
  padding: 4px 12px; border-radius: 4px; font-size: .72rem; font-weight: 700;
  color: #fff; letter-spacing: .06em; text-transform: uppercase;
}
.achievement-text h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; color: #fff; margin-bottom: 4px; line-height: 1.3; }
.achievement-text p { color: rgba(255,255,255,.78); margin: 0; font-size: .9rem; }

/* === Guest Reviews / Voices === */
.voices { background: var(--bg); }
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.voice {
  background: #fff; padding: 28px; border-radius: var(--r); border: 1px solid var(--line);
  transition: var(--t); display: flex; flex-direction: column; gap: 16px;
}
.voice:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(26,86,219,.2); }
.voice-quote { color: var(--gold); font-size: 2rem; line-height: 1; font-family: 'Fraunces', serif; }
.voice p { color: var(--ink-soft); font-style: italic; line-height: 1.7; font-size: .92rem; flex: 1; margin: 0; }
.voice-by { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.voice-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand-3), var(--brand-2));
  display: grid; place-items: center; font-family: 'Fraunces'; font-weight: 600; font-size: 1rem; color: #fff;
}
.voice-name { font-weight: 600; font-size: .9rem; color: var(--ink); display: block; }
.voice-role { font-size: .78rem; color: var(--muted); }

/* === Where the money goes === */
.money-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.money-chart { display: flex; flex-direction: column; gap: 24px; }
.money-heading { font-family: 'Fraunces'; font-size: 1.4rem; color: var(--ink); margin-bottom: 4px; }
.pie-legend { display: flex; flex-direction: column; gap: 10px; }
.legend-item { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--ink-soft); font-weight: 500; }
.legend-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.money-bars { display: flex; flex-direction: column; gap: 18px; }
.money-bar-item { display: flex; flex-direction: column; gap: 6px; }
.money-bar-label { display: flex; justify-content: space-between; font-size: .88rem; font-weight: 600; color: var(--ink-soft); }
.money-pct { color: var(--brand); }
.money-bar-track { height: 8px; background: var(--line); border-radius: 99px; overflow: hidden; }
.money-bar-fill { height: 100%; border-radius: 99px; }

/* === Donate CTA === */
.donate-cta { padding: 96px 0; background: #fff; }
.donate-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, var(--brand-2) 100%);
  border-radius: var(--r-lg); padding: 64px 56px;
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.donate-card::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.18) 0%, transparent 65%);
  pointer-events: none;
}
.donate-card::after {
  content: ''; position: absolute; bottom: -60px; left: 30%;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(63,131,248,.15) 0%, transparent 65%);
  pointer-events: none;
}
.donate-card h2 { color: #fff; margin-bottom: 14px; }
.donate-card p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.donate-tiers-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: relative; z-index: 2; }
.donate-mini {
  background: rgba(255,255,255,.07); padding: 16px 18px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1); transition: var(--t);
}
.donate-mini:hover { background: rgba(255,255,255,.13); border-color: rgba(245,158,11,.5); transform: translateY(-2px); }
.donate-mini strong { display: block; font-family: 'Fraunces'; font-size: 1.4rem; color: var(--gold); margin-bottom: 4px; }
.donate-mini small { color: rgba(255,255,255,.65); font-size: .8rem; line-height: 1.4; }

/* === Page hero === */
.page-hero { padding: 64px 0 72px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.92) 0%, rgba(30,58,95,.88) 60%, rgba(26,86,219,.82) 100%),
              url('../assets/img/bg-class.jpg') center/cover no-repeat;
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.05rem; max-width: 560px; margin: 0; }
.crumbs { display: inline-flex; gap: 8px; margin-bottom: 16px; font-size: .72rem; color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase; font-weight: 500; }
.crumbs a { color: var(--gold); }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: .5; }

/* === Footer === */
.footer { background: #0f172a; color: rgba(255,255,255,.65); padding: 72px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 56px; }
.footer-tagline { margin: 12px 0 6px; font-family: 'Fraunces', serif; font-style: italic; color: var(--gold); font-size: 1rem; line-height: 1.4; }
.footer-tagline-mr { font-family: 'Noto Sans Devanagari', sans-serif; color: rgba(255,255,255,.8); font-size: .9rem; margin-bottom: 2px; }
.footer h4 { color: #fff; font-family: 'Inter'; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: .9rem; color: rgba(255,255,255,.6); transition: var(--t); display: flex; align-items: center; gap: 6px; }
.footer ul a::before { content: '›'; color: var(--gold); font-size: 1.1rem; line-height: 1; }
.footer ul a:hover { color: #fff; }
.footer-brand p { font-size: .9rem; margin: 14px 0 20px; color: rgba(255,255,255,.55); max-width: 300px; }
.footer-contact div { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; font-size: .88rem; color: rgba(255,255,255,.6); }
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.socials { display: flex; gap: 8px; margin-top: 18px; }
.socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  display: grid; place-items: center; transition: var(--t); font-size: .9rem;
}
.socials a:hover { background: var(--brand-3); color: #fff; transform: translateY(-2px); }
.footer-bot {
  display: flex; justify-content: center; text-align: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07);
  font-size: .82rem; color: rgba(255,255,255,.4);
}
.footer-dev-link { color: var(--gold); font-weight: 500; }
.footer-dev-link:hover { color: #fff; }

/* === Forms === */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); letter-spacing: .02em; }
.input, .textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 8px; font-family: inherit; font-size: .9rem; background: var(--bg); transition: var(--t); color: var(--ink); }
.input:focus, .textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(26,86,219,.1); }
.textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* === Donate page === */
.donate-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tier { background: var(--surface); padding: 32px 24px; border-radius: var(--r); border: 2px solid var(--line); text-align: center; transition: var(--t); position: relative; }
.tier:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: var(--shadow); }
.tier.feat { background: linear-gradient(180deg, #0f172a, #1e3a5f); color: #fff; border-color: transparent; box-shadow: var(--shadow-lg); }
.tier.feat::before { content: 'Most Impact'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--ink); padding: 3px 12px; font-size: .68rem; border-radius: 999px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; white-space: nowrap; }
.tier h4 { font-family: 'Inter'; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.tier.feat h4 { color: rgba(255,255,255,.6); }
.tier .amt { font-family: 'Fraunces', serif; font-size: 2.2rem; color: var(--brand); margin-bottom: 12px; }
.tier.feat .amt { color: var(--gold); }
.tier p { font-size: .87rem; min-height: 56px; margin-bottom: 18px; color: var(--ink-soft); }
.tier.feat p { color: rgba(255,255,255,.75); }
.tier-icon-wrap { width: 56px; height: 56px; border-radius: 14px; background: rgba(26,86,219,.12); color: var(--brand); display: grid; place-items: center; font-size: 1.4rem; margin: 0 auto 18px; }
.tier.feat .tier-icon-wrap { background: rgba(255,255,255,.12); color: var(--gold); }
.tier-icon-sm { width: 46px; height: 46px; font-size: 1.1rem; border-radius: 10px; }
.tier .amt span { font-size: .9rem; font-weight: 400; color: var(--muted); }
.tier.feat .amt span { color: rgba(255,255,255,.6); }
.bank-card { background: var(--surface); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.bank-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px dashed var(--line); gap: 20px; }
.bank-row:last-child { border-bottom: none; }
.bank-row span { color: var(--muted); font-size: .87rem; }
.bank-row strong { color: var(--ink); font-family: 'Fraunces'; font-size: 1rem; }
.ways-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.way { background: var(--surface); padding: 28px; border-radius: var(--r); border: 1px solid var(--line); transition: var(--t); }
.way:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow); }
.way-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 16px; }

/* === Gallery === */
.gal-filter { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.gal-btn { padding: 9px 20px; border: 1.5px solid var(--line); background: var(--surface); border-radius: 8px; cursor: pointer; font-family: inherit; font-weight: 600; font-size: .85rem; transition: var(--t); color: var(--muted); }
.gal-btn.active, .gal-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mosaic-item { aspect-ratio: 4/3; border-radius: var(--r); overflow: hidden; cursor: pointer; transition: var(--t); }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-item:hover { box-shadow: var(--shadow-lg); }
.mosaic-item.hide { display: none; }

/* === Timeline === */
.timeline { position: relative; padding: 10px 0; }
.timeline::before { content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--brand), var(--line)); }
.tl-item { position: relative; padding: 0 0 44px 72px; }
.tl-item::before { content: ''; position: absolute; left: 20px; top: 8px; width: 16px; height: 16px; border-radius: 50%; background: var(--brand); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--brand); }
.tl-item .yr { display: inline-block; font-family: 'Fraunces'; font-size: 1.6rem; color: var(--brand); margin-bottom: 4px; }
.tl-item h4 { font-family: 'Inter'; font-weight: 600; font-size: .95rem; color: var(--ink); }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; }
.contact-info { display: grid; gap: 16px; margin-bottom: 28px; }
.info-item { display: flex; gap: 16px; padding: 20px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); transition: var(--t); }
.info-item:hover { border-color: var(--brand); transform: translateX(3px); }
.info-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.info-item h4 { font-family: 'Inter'; font-weight: 600; font-size: .9rem; margin-bottom: 4px; }
.info-item p { font-size: .88rem; margin: 0; line-height: 1.5; }
.contact-form { background: var(--surface); padding: 36px; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-frame { aspect-ratio: 21/8; border-radius: var(--r); overflow: hidden; margin-top: 48px; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* === Lightbox === */
.lightbox { position: fixed; inset: 0; background: rgba(10,15,25,.96); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 40px; backdrop-filter: blur(10px); }
.lightbox.show { display: flex; animation: lbFade .25s ease; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; border-radius: 8px; box-shadow: 0 24px 80px rgba(0,0,0,.6); }
.lb-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); border: none; color: #fff; font-size: 1.3rem; cursor: pointer; transition: var(--t); display: grid; place-items: center; }
.lb-close:hover { background: rgba(255,255,255,.2); transform: rotate(90deg); }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); border: none; color: #fff; font-size: 1.1rem; cursor: pointer; transition: var(--t); display: grid; place-items: center; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.2); }
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lb-count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.6); font-size: .85rem; letter-spacing: .1em; background: rgba(0,0,0,.4); padding: 4px 12px; border-radius: 999px; }

/* === Floating buttons === */
.fab { position: fixed; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.3rem; box-shadow: 0 8px 24px rgba(0,0,0,.2); z-index: 90; transition: var(--t); cursor: pointer; border: none; }
.fab:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,.28); }
.fab-wa { left: 22px; bottom: 22px; background: #25D366; }
.fab-wa:hover { background: #1db954; }
.fab-top { right: 22px; bottom: 22px; background: var(--brand); opacity: 0; pointer-events: none; }
.fab-top.show { opacity: 1; pointer-events: auto; }
.fab-top:hover { background: var(--brand-2); }

/* === Reveal === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* === Testimonial Slider === */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testimonial-slide { flex: 0 0 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.slider-controls { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 40px; }
.slider-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--line); background: #fff; color: var(--ink-soft); cursor: pointer; font-size: 1rem; display: grid; place-items: center; transition: var(--t); }
.slider-btn:hover { border-color: var(--brand); color: var(--brand); background: var(--rose); }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); cursor: pointer; transition: var(--t); border: none; }
.slider-dot.active { background: var(--brand); width: 24px; border-radius: 4px; }

/* === How Can You Help Us === */
.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.help-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border-radius: var(--r); border: 1px solid var(--line);
  padding: 22px; transition: var(--t);
}
.help-item:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow); }
.help-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--brand); color: #fff;
  display: grid; place-items: center; font-family: 'Fraunces'; font-weight: 600; font-size: 1rem;
  flex-shrink: 0; margin-top: 2px;
}
.help-item p { font-size: .87rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* === Section heads === */
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head h2 { margin-bottom: 12px; }
.sec-head p { max-width: 540px; margin: 0 auto; font-size: 1rem; color: var(--muted); }
.sec-head.left { text-align: left; }
.sec-head.left p { margin: 0; }

/* === Money bars === */
.money-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.money-chart-wrap { background: #fff; border-radius: var(--r); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.pie-legend { display: flex; flex-direction: column; gap: 10px; }
.legend-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--ink-soft); font-weight: 500; }
.legend-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.money-bars { display: flex; flex-direction: column; gap: 16px; }
.money-bar-item { display: flex; flex-direction: column; gap: 5px; }
.money-bar-label { display: flex; justify-content: space-between; font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.money-pct { color: var(--brand); font-weight: 700; }
.money-bar-track { height: 8px; background: var(--line); border-radius: 99px; overflow: hidden; }
.money-bar-fill { height: 100%; border-radius: 99px; }

/* === Service/Program pages === */
.service-features { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.svc-card { background: var(--surface); border-radius: var(--r); border: 1px solid var(--line); padding: 28px; display: flex; flex-direction: column; gap: 12px; transition: var(--t); }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(26,86,219,.2); }
.svc-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--rose); display: grid; place-items: center; color: var(--brand); font-size: 1.1rem; flex-shrink: 0; }
.svc-card h3 { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 600; color: var(--ink); margin: 0; }
.svc-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; margin: 0; }

.program-nav-strip { background: var(--brand); padding: 18px 0; }
.program-nav-strip .wrap { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.program-nav-strip span { color: rgba(255,255,255,.7); font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-right: 4px; }
.program-nav-strip a { color: #fff; font-size: .85rem; font-weight: 500; padding: 6px 14px; border-radius: 20px; border: 1px solid rgba(255,255,255,.3); transition: var(--t); }
.program-nav-strip a:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.6); }

/* === Shop === */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.shop-card { background: var(--surface); border-radius: var(--r); box-shadow: var(--shadow-sm); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; transition: var(--t); }
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(26,86,219,.2); }
.shop-card-img-placeholder { width: 100%; aspect-ratio: 4/3; background: var(--rose); overflow: hidden; }
.shop-card-img-placeholder img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.shop-card:hover .shop-card-img-placeholder img { transform: scale(1.06); }
.shop-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.shop-card-name { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.shop-card-desc { font-size: .84rem; color: var(--muted); flex: 1; line-height: 1.5; }
.shop-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); }
.shop-price { font-size: 1.15rem; font-weight: 700; color: var(--brand); font-family: 'Fraunces'; }
.shop-cta { font-size: .8rem; padding: 7px 14px; }

/* === News cards === */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.news-card { background: var(--surface); border-radius: var(--r); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; transition: var(--t); }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-card-img-placeholder { width: 100%; height: 220px; background: var(--rose); overflow: hidden; }
.news-card-img-placeholder img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-card-img-placeholder img { transform: scale(1.06); }
.news-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.news-card-date { font-size: .75rem; color: var(--brand); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.news-card-title { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; line-height: 1.35; color: var(--ink); }
.news-card-desc { font-size: .88rem; color: var(--muted); flex: 1; line-height: 1.6; }

/* === Blog === */
/* Listing page */
.blog-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  transition: var(--t); margin-bottom: 0; text-decoration: none;
  background: var(--surface);
}
.blog-featured:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(0,0,0,.13); }
.blog-featured-img { position: relative; overflow: hidden; min-height: 420px; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-featured:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-body { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); line-height: 1.2; margin-bottom: 16px; color: var(--ink); }
.blog-featured-body p { color: var(--ink-soft); line-height: 1.75; font-size: .95rem; }

.blog-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.blog-filter-btn { padding: 8px 18px; border: 1.5px solid var(--line); background: var(--surface); border-radius: 99px; cursor: pointer; font-family: inherit; font-size: .82rem; font-weight: 600; color: var(--muted); transition: var(--t); }
.blog-filter-btn:hover, .blog-filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--surface); border-radius: var(--r-lg); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; transition: var(--t); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(26,86,219,.15); }
.blog-card-img-wrap { display: block; overflow: hidden; aspect-ratio: 16/10; position: relative; }
.blog-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.05); }
.blog-cat { position: absolute; top: 14px; left: 14px; background: var(--brand); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 99px; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.blog-meta span { font-size: .75rem; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }
.blog-card h3 { font-size: 1.05rem; line-height: 1.35; }
.blog-card h3 a { color: var(--ink); text-decoration: none; transition: color var(--t); }
.blog-card h3 a:hover { color: var(--brand); }
.blog-card p { font-size: .86rem; color: var(--muted); line-height: 1.65; flex: 1; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line); margin-top: 4px; }
.blog-author { display: flex; align-items: center; gap: 8px; }
.blog-author-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: .7rem; font-weight: 700; flex-shrink: 0; }
.blog-author span { font-size: .78rem; color: var(--muted); font-weight: 500; }
.blog-read-more { font-size: .78rem; font-weight: 700; color: var(--brand); display: inline-flex; align-items: center; gap: 5px; transition: gap var(--t); }
.blog-read-more:hover { gap: 8px; }

.blog-subscribe { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.blog-subscribe-input { flex: 1; padding: 13px 18px; border: 1.5px solid var(--line); border-radius: 8px; font-family: inherit; font-size: .9rem; outline: none; transition: var(--t); }
.blog-subscribe-input:focus { border-color: var(--brand); }

/* Blog post page */
.blog-post-hero { position: relative; height: 520px; overflow: hidden; }
.blog-post-hero img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,20,50,.85) 40%, rgba(10,20,50,.3) 100%); display: flex; align-items: flex-end; padding-bottom: 56px; }
.blog-post-layout { padding: 64px 0 0; }
.blog-post-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.blog-post-body { min-width: 0; }
.blog-post-body h2 { font-size: 1.5rem; margin: 40px 0 14px; color: var(--ink); }
.blog-post-body p { color: var(--ink-soft); line-height: 1.9; margin-bottom: 18px; font-size: 1.02rem; }
.blog-lead { font-size: 1.15rem !important; color: var(--ink) !important; line-height: 1.75 !important; padding-bottom: 28px; border-bottom: 2px solid var(--line); margin-bottom: 36px; }
.blog-quote { border-left: 4px solid var(--brand); padding: 20px 28px; margin: 36px 0; background: var(--rose); border-radius: 0 var(--r) var(--r) 0; }
.blog-quote p, .blog-quote { font-style: italic; color: var(--ink); font-size: 1.05rem; line-height: 1.7; }
.blog-quote cite { display: block; margin-top: 10px; font-size: .82rem; color: var(--muted); font-style: normal; font-weight: 600; }
.blog-figure { margin: 36px 0; }
.blog-figure img { width: 100%; border-radius: var(--r); }
.blog-figure figcaption { font-size: .82rem; color: var(--muted); margin-top: 10px; text-align: center; font-style: italic; }
.blog-list { padding-left: 20px; display: flex; flex-direction: column; gap: 10px; color: var(--ink-soft); line-height: 1.75; font-size: 1rem; margin-bottom: 18px; }
.blog-list li::marker { color: var(--brand); }
.blog-cta-box { background: linear-gradient(135deg, var(--rose), #e8f0ff); border: 1px solid rgba(26,86,219,.15); border-radius: var(--r); padding: 36px; margin: 40px 0; }
.blog-cta-box h3 { margin-bottom: 10px; }
.blog-cta-box p { color: var(--ink-soft); margin-bottom: 20px; }

.blog-post-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }
.blog-sidebar-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.blog-sidebar-card h4 { font-family: 'Fraunces'; font-size: 1rem; margin-bottom: 10px; color: var(--ink); }
.blog-sidebar-card p { font-size: .86rem; color: var(--muted); line-height: 1.65; }
.blog-sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 0; }
.blog-sidebar-links li { border-bottom: 1px solid var(--line); }
.blog-sidebar-links li:last-child { border-bottom: none; }
.blog-sidebar-links a { display: block; padding: 10px 0; font-size: .85rem; color: var(--ink-soft); font-weight: 500; transition: color var(--t); }
.blog-sidebar-links a:hover { color: var(--brand); }

/* Myth grid (What Is ID post) */
.blog-myth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.blog-myth-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; }
.blog-myth-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; line-height: 1.65; }
.blog-myth-label { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 99px; margin-bottom: 10px; }
.myth-false { background: #fee2e2; color: #dc2626; }
.myth-true { background: #dcfce7; color: #16a34a; }

/* Therapy grid (Therapies post) */
.blog-therapy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0; }
.blog-therapy-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; text-align: center; }
.blog-therapy-card h4 { font-family: 'Fraunces'; font-size: 1rem; margin: 14px 0 10px; }
.blog-therapy-card p { font-size: .86rem; color: var(--muted); line-height: 1.65; margin: 0; }
.blog-therapy-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--rose); color: var(--brand); display: grid; place-items: center; font-size: 1.3rem; margin: 0 auto; }
