/* SSVS — site styles */

:root {
  --saffron: #E08D3C;
  --saffron-light: #F2B36F;
  --saffron-dark: #b86a20;
  --green: #2E5E3E;
  --green-light: #5A8A5A;
  --green-dark: #1c3e27;
  --earth: #a67049;
  --earth-dark: #7a4e2e;
  --ivory: #F5EEDD;
  --ivory-soft: #EDE2C8;
  --ink: #2B2416;
  --ink-soft: #4a4030;
  --paper: #FAF6EC;

  --ff-display: 'Fraunces', 'EB Garamond', 'Noto Serif Devanagari', serif;
  --ff-body: 'Inter Tight', 'Inter', 'Noto Sans Devanagari', system-ui, sans-serif;
  --ff-devanagari: 'Noto Serif Devanagari', 'Fraunces', serif;

  --maxw: 1240px;
  --sect-pad-y: 120px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body[data-lang="mr"] { font-family: var(--ff-devanagari), var(--ff-body); }
body[data-lang="mr"] .hero-title, body[data-lang="mr"] .sect-title { font-family: var(--ff-devanagari); }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ── Grainy paper background ───────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(224,141,60,.05), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(46,94,62,.04), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.15 0 0 0 0 0.08 0 0 0 0.06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: .5;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

/* ── Top bar ───────────────────────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 40px;
  background: rgba(250,246,236,.75);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(43,36,22,.08);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; place-items: center; }
.brand-text { line-height: 1.15; }
.brand-name { font-family: var(--ff-display); font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
body[data-lang="mr"] .brand-name { font-family: var(--ff-devanagari); }
.brand-tag { font-size: 11px; color: var(--ink-soft); letter-spacing: 0.03em; }
.nav { display: flex; gap: 2px; }
.nav a {
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  transition: background .15s, color .15s;
}
.nav a:hover { background: rgba(224,141,60,.12); color: var(--ink); }
.lang-toggle {
  display: inline-flex; border: 1px solid rgba(43,36,22,.15);
  border-radius: 999px; overflow: hidden; margin-left: 12px;
  background: rgba(255,255,255,.4);
}
.lang-toggle button {
  padding: 6px 12px; border: 0; background: transparent; font-size: 12px;
  font-weight: 600; color: var(--ink-soft); letter-spacing: 0.04em;
}
.lang-toggle button.active { background: var(--ink); color: var(--paper); }

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 40px 60px;
  overflow: hidden;
  z-index: 2;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-sun {
  position: absolute;
  top: 12%; right: 8%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,179,111,.85) 0%, rgba(224,141,60,.45) 40%, rgba(224,141,60,0) 70%);
  filter: blur(2px);
}
.hero-rays { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .6; }
.hero-horizon { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 180px; }

.hero-stage {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 60px auto 0;
  padding-top: 60px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-dark); font-weight: 600;
  padding: 6px 14px; border: 1px solid rgba(46,94,62,.25); border-radius: 999px;
  background: rgba(245,238,221,.5);
  white-space: nowrap;
  transition: opacity .2s, transform .2s;
}
body[data-lang="mr"] .hero-kicker { text-transform: none; letter-spacing: 0.04em; }
.kicker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--saffron); box-shadow: 0 0 0 4px rgba(224,141,60,.2); }

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(52px, 8.4vw, 140px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 28px 0 36px;
  color: var(--ink);
}
.hl-row + .hl-row { margin-top: 4px; }
.hl-row { display: block; transition: transform .05s linear; }
.hl-w { display: inline-block; margin-right: 0.15em; }
.hl-plain { font-style: italic; font-weight: 400; color: var(--ink-soft); }
.hl-fill { color: var(--saffron); }
.hl-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--green-dark);
  font-weight: 700;
}
body[data-lang="mr"] .hl-outline { -webkit-text-stroke-width: 1.5px; }

.hero-sub {
  max-width: 620px;
  font-size: 18px; line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 60px;
  transition: opacity .2s;
}
.scroll-hint {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft);
  animation: floaty 2.6s ease-in-out infinite;
}
body[data-lang="mr"] .scroll-hint { text-transform: none; letter-spacing: 0.03em; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ── Journey (scroll-driven 3D) ────────────────────────────────────── */
.journey {
  position: relative;
  height: 500vh; /* 5 scenes × 100vh of scroll */
  z-index: 2;
}
.journey-3d {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
}
.journey-3d canvas { width: 100%; height: 100%; display: block; }
.journey-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(43,36,22,.15) 100%),
    linear-gradient(to bottom, rgba(245,238,221,.3) 0%, transparent 15%, transparent 85%, rgba(245,238,221,.5) 100%);
  pointer-events: none;
}
.journey-rail {
  position: absolute; inset: 0;
  display: grid;
  grid-template-rows: repeat(5, 100vh);
  pointer-events: none;
  z-index: 3;
}
.jcard {
  align-self: center;
  justify-self: end;
  max-width: 440px;
  margin-right: 6vw;
  padding: 28px 32px;
  background: rgba(250,246,236,.82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(43,36,22,.08);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(43,36,22,.12);
  opacity: 0.35;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s;
  pointer-events: auto;
}
.jcard.active { opacity: 1; transform: translateY(0); }
.jchrono {
  font-family: var(--ff-display); font-size: 14px; color: var(--saffron);
  letter-spacing: 0.06em; margin-bottom: 8px;
}
.jchrono span { font-size: 28px; font-weight: 600; }
.jchrono em { color: var(--ink-soft); font-style: normal; margin-left: 4px; }
.jcard h3 {
  font-family: var(--ff-display);
  font-size: 32px; font-weight: 500; letter-spacing: -0.02em;
  margin: 0 0 12px; line-height: 1.1;
}
.jcard p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

.journey-progress {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
  width: 200px;
  height: 0;
  z-index: 4;
  pointer-events: none;
}
.jp-track {
  position: absolute; top: -180px; left: 4px;
  width: 2px; height: 360px;
  background: rgba(43,36,22,.1);
  border-radius: 2px;
}
.jp-fill {
  width: 100%;
  background: var(--saffron);
  border-radius: 2px;
}
.jp-dots {
  position: absolute; top: -180px; left: 0;
  height: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.jp-dot {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); opacity: .5;
  transition: opacity .3s, color .3s;
}
body[data-lang="mr"] .jp-dot { text-transform: none; letter-spacing: 0.03em; }
.jp-dot i {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid rgba(43,36,22,.25);
  flex-shrink: 0; margin-left: -4px;
}
.jp-dot.on { opacity: 1; color: var(--ink); }
.jp-dot.on i { background: var(--saffron); border-color: var(--saffron); box-shadow: 0 0 0 4px rgba(224,141,60,.2); }

/* ── Generic section scaffolding ───────────────────────────────────── */
.sect {
  position: relative;
  padding: var(--sect-pad-y) 40px;
  z-index: 2;
}
.sect-inner { max-width: var(--maxw); margin: 0 auto; }
.sect-head { margin-bottom: 64px; max-width: 780px; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--saffron-dark); margin-bottom: 18px;
  padding-bottom: 8px; border-bottom: 1.5px solid var(--saffron);
}
body[data-lang="mr"] .eyebrow { text-transform: none; letter-spacing: 0.04em; }
.sect-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0 0 20px;
  text-wrap: balance;
}
.sect-sub {
  font-size: 17px; line-height: 1.55;
  color: var(--ink-soft); margin: 0;
  max-width: 620px;
}

/* ── About ─────────────────────────────────────────────────────────── */
.sect-about {
  background: linear-gradient(to bottom, var(--paper), var(--ivory-soft) 60%, var(--paper));
}
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: start;
}
.about-body { font-size: 19px; line-height: 1.7; color: var(--ink-soft); margin: 0; text-wrap: pretty; }
.about-facts { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; }
.fact { border-top: 1px solid rgba(43,36,22,.15); padding-top: 14px; }
.fact dt {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 6px; font-weight: 600;
}
body[data-lang="mr"] .fact dt { text-transform: none; letter-spacing: 0.04em; }
.fact dd { margin: 0; font-family: var(--ff-display); font-size: 18px; font-weight: 500; color: var(--ink); }

.impact-strip {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(43,36,22,.12);
  border: 1px solid rgba(43,36,22,.12);
  border-radius: 8px;
  overflow: hidden;
}
.impact-cell {
  background: var(--paper);
  padding: 28px 20px;
  text-align: left;
}
.impact-n {
  font-family: var(--ff-display);
  font-size: 44px; font-weight: 500; color: var(--saffron-dark);
  letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 6px;
}
.impact-l { font-size: 12px; color: var(--ink-soft); line-height: 1.35; }

/* ── Programs ──────────────────────────────────────────────────────── */
.sect-programs { background: var(--paper); }
.prog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(43,36,22,.1);
  border: 1px solid rgba(43,36,22,.1);
  border-radius: 4px;
  overflow: hidden;
}
.prog-card {
  background: var(--paper);
  padding: 36px 32px 32px;
  position: relative;
  transition: background .3s, transform .3s;
  display: flex; flex-direction: column; gap: 10px;
}
.prog-card:hover { background: var(--ivory); transform: translateY(-2px); }
.prog-icon {
  color: var(--green-dark);
  width: 48px; height: 48px;
  margin-bottom: 12px;
}
.prog-tag {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--saffron-dark); font-weight: 600;
}
body[data-lang="mr"] .prog-tag { text-transform: none; letter-spacing: 0.04em; }
.prog-name {
  font-family: var(--ff-display);
  font-size: 24px; font-weight: 500; letter-spacing: -0.01em;
  margin: 0; line-height: 1.15;
}
.prog-desc { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; flex: 1; }
.prog-meta {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed rgba(43,36,22,.18);
  font-size: 12px; color: var(--ink); font-weight: 500;
}

/* ── Map ───────────────────────────────────────────────────────────── */
.sect-map { background: linear-gradient(to bottom, var(--paper), var(--ivory-soft)); }
.map-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: stretch; }
.map-canvas {
  position: relative;
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(43,36,22,.1);
  border-radius: 12px;
  padding: 24px;
  min-height: 520px;
}
.map-svg { width: 100%; height: auto; display: block; }
.marker .halo { transition: opacity .3s; opacity: 0; }
.marker:hover .halo { opacity: 1; }
.marker.active .halo { opacity: 1; }
.marker circle:nth-child(2) { transition: transform .2s, fill .2s; transform-origin: center; transform-box: fill-box; }
.marker:hover circle:nth-child(2) { transform: scale(1.15); }

.map-legend {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding: 14px 20px;
  border-top: 1px solid rgba(43,36,22,.1);
  margin-top: 14px;
  font-size: 12px; color: var(--ink-soft);
}
.legend-item { display: inline-flex; align-items: center; gap: 8px; }
.legend-item i { width: 10px; height: 10px; border-radius: 50%; }
.legend-0 i { background: var(--green-dark); }
.legend-1 i { background: var(--saffron); }
.legend-2 i { background: rgba(224,141,60,.5); border: 1px solid var(--saffron); }

.map-panel {
  background: var(--ink);
  color: var(--paper);
  border-radius: 12px;
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.map-panel::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,141,60,.3), transparent 70%);
}
.panel-kicker {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--saffron-light); font-weight: 600;
}
body[data-lang="mr"] .panel-kicker { text-transform: none; letter-spacing: 0.04em; }
.panel-title { font-family: var(--ff-display); font-size: 40px; font-weight: 500; margin: 8px 0 20px; letter-spacing: -0.02em; }
.panel-stats { display: flex; gap: 32px; padding: 20px 0; border-top: 1px solid rgba(245,238,221,.15); border-bottom: 1px solid rgba(245,238,221,.15); margin-bottom: 20px; }
.panel-stats > div { display: flex; flex-direction: column; gap: 2px; }
.panel-stats strong { font-family: var(--ff-display); font-size: 36px; font-weight: 500; color: var(--saffron-light); line-height: 1; }
.panel-stats span { font-size: 12px; color: rgba(245,238,221,.6); }
.panel-progs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; flex: 1; }
.panel-prog { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(245,238,221,.85); }
.panel-prog i { width: 4px; height: 4px; border-radius: 50%; background: var(--saffron); }
.panel-note { font-size: 12px; color: rgba(245,238,221,.55); line-height: 1.5; margin: 0; font-style: italic; }

/* ── Team ──────────────────────────────────────────────────────────── */
.sect-team { background: var(--ink); color: var(--paper); }
.sect-team .eyebrow { color: var(--saffron-light); border-color: var(--saffron); }
.sect-team .sect-title { color: var(--paper); }
.sect-team .sect-sub { color: rgba(245,238,221,.7); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: rgba(245,238,221,.06);
  border: 1px solid rgba(245,238,221,.12);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s, background .3s;
}
.team-card:hover { transform: translateY(-4px); background: rgba(245,238,221,.1); }
.team-portrait { aspect-ratio: 6 / 7; overflow: hidden; background: var(--green-dark); }
.team-body { padding: 20px 24px 24px; }
.team-since { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--saffron-light); margin-bottom: 6px; }
body[data-lang="mr"] .team-since { text-transform: none; letter-spacing: 0.04em; }
.team-name { font-family: var(--ff-display); font-size: 22px; margin: 0 0 4px; font-weight: 500; letter-spacing: -0.01em; }
.team-role { font-size: 12px; color: var(--saffron-light); font-weight: 500; margin-bottom: 12px; }
.team-bio { font-size: 13px; line-height: 1.55; color: rgba(245,238,221,.72); margin: 0; }

/* ── Gallery ───────────────────────────────────────────────────────── */
.sect-gallery { background: var(--paper); }
.g-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  grid-auto-rows: 240px;
  gap: 16px;
}
.g-grid .g-frame:nth-child(1) { grid-row: span 2; }
.g-grid .g-frame:nth-child(4) { grid-row: span 2; }
.g-frame {
  margin: 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(43,36,22,.1);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.g-frame:hover { transform: translateY(-4px) scale(1.015); box-shadow: 0 12px 40px rgba(43,36,22,.18); }
.g-img { position: absolute; inset: 0; }
.g-img svg { width: 100%; height: 100%; }
.g-film {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(43,36,22,.65) 0%, transparent 50%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.02) 0 2px, transparent 2px 3px);
  mix-blend-mode: multiply;
}
.g-cap {
  position: absolute; left: 16px; right: 16px; bottom: 14px;
  color: var(--paper);
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  z-index: 1;
}
.g-modal {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(43,36,22,.85);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  padding: 40px;
}
.g-modal-inner { position: relative; width: min(900px, 100%); aspect-ratio: 4/3; }
.g-modal .g-frame { width: 100%; height: 100%; cursor: default; }
.g-close { position: absolute; top: -40px; right: 0; width: 32px; height: 32px; border-radius: 50%; border: 0; background: var(--paper); color: var(--ink); font-size: 14px; }

/* ── Contact & Footer ──────────────────────────────────────────────── */
.sect-contact { background: linear-gradient(to bottom, var(--paper), var(--ivory-soft)); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 48px; }
.contact-block { padding-top: 20px; border-top: 1.5px solid var(--ink); }
.contact-lbl { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-bottom: 8px; }
body[data-lang="mr"] .contact-lbl { text-transform: none; letter-spacing: 0.04em; }
.contact-val { font-family: var(--ff-display); font-size: 18px; font-weight: 500; line-height: 1.35; }

.contact-cta { display: flex; gap: 16px; margin-bottom: 100px; }
.btn { padding: 14px 28px; border: 0; border-radius: 999px; font-size: 14px; font-weight: 600; letter-spacing: 0.03em; transition: transform .15s, background .2s; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--saffron); color: var(--ink); box-shadow: 0 6px 16px rgba(224,141,60,.35); }
.btn-primary:hover { background: var(--saffron-dark); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.site-footer {
  padding-top: 40px;
  border-top: 1px solid rgba(43,36,22,.15);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--ink-soft);
  flex-wrap: wrap; gap: 20px;
}
.foot-l { display: flex; align-items: center; gap: 16px; }
.foot-mark { display: inline-flex; align-items: center; gap: 8px; }
.foot-sun { width: 16px; height: 16px; border-radius: 50%; background: var(--saffron); box-shadow: 0 0 0 3px rgba(224,141,60,.25); }
.foot-mark strong { font-family: var(--ff-display); font-size: 16px; letter-spacing: 0.02em; color: var(--ink); }
.foot-r { display: flex; gap: 20px; }
.foot-r span { padding: 4px 10px; border: 1px solid rgba(43,36,22,.2); border-radius: 4px; font-size: 11px; letter-spacing: 0.06em; }

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .topbar { padding: 12px 20px; }
  .nav { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .impact-strip { grid-template-columns: repeat(3, 1fr); }
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .map-layout { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .g-grid { grid-template-columns: 1fr 1fr; }
  .g-grid .g-frame:nth-child(1), .g-grid .g-frame:nth-child(4) { grid-row: auto; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .journey-progress { display: none; }
  .jcard { margin-right: 20px; margin-left: 20px; }
}
@media (max-width: 640px) {
  .prog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .g-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .impact-strip { grid-template-columns: 1fr 1fr; }
  .hero { padding: 100px 20px 40px; }
  .sect { padding: 80px 20px; }
}

/* ── Layout variants (tweaks) ─────────────────────────────────────── */
body[data-layout="warm"] { --paper: #faf2e0; --ivory-soft: #ead6a8; }
body[data-layout="bold"] { --saffron: #d4501a; --saffron-dark: #9a2f08; --green: #1a4a2a; }
body[data-layout="dusk"] { --paper: #2a2418; --ivory: #3a3424; --ivory-soft: #4a4030; --ink: #faf2e0; --ink-soft: #d4c9a8; }
body[data-layout="dusk"] .sect-programs,
body[data-layout="dusk"] .sect-gallery,
body[data-layout="dusk"] .sect-contact { background: var(--paper); }
body[data-layout="dusk"] .sect-about { background: linear-gradient(to bottom, var(--paper), #332d1f 50%, var(--paper)); }
body[data-layout="dusk"] .map-panel { background: #1a1610; }
body[data-layout="dusk"] .impact-cell { background: var(--ivory); }
body[data-layout="dusk"] .prog-card { background: var(--paper); }
body[data-layout="dusk"] .prog-card:hover { background: var(--ivory); }
