/* =========================================================
   Shobar Aage Mon — Shared Stylesheet
   Kantha-inspired design system: warm oatmeal, teal-forest,
   marigold, dusty blush. Running-stitch as signature motif.
   ========================================================= */

/* -------- Tokens -------- */
:root {
  /* Palette */
  --bg:            #F4EEE2;   /* warm oatmeal — undyed cotton */
  --bg-soft:       #FBF6EA;   /* lifted surface */
  --surface:       #FFFCF5;   /* card white */
  --surface-warm:  #F9F1E1;

  --ink:           #1B2A2E;   /* deep near-black, green undertone */
  --ink-2:         #3D4E52;
  --ink-muted:     #6B7A7E;
  --ink-faint:     #8E9A9D;

  --forest:        #234E4A;   /* primary — deep calm */
  --forest-deep:   #163430;
  --forest-soft:   #4A736E;

  --marigold:      #E29A3E;   /* hope accent */
  --marigold-soft: #F1C583;

  --blush:         #E4BFB2;   /* muted rose secondary */
  --blush-soft:    #F1DCD1;

  --stitch:        #C7B896;   /* thread/divider */
  --border:        rgba(27, 42, 46, 0.09);
  --border-strong: rgba(27, 42, 46, 0.18);

  --success:       #6FA485;

  /* Type */
  --font-display:  'Fraunces', 'Hind Siliguri', Georgia, serif;
  --font-bangla:   'Hind Siliguri', 'Fraunces', Georgia, serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Scale */
  --step-6: clamp(2.75rem, 5.4vw + 1rem, 5.75rem);
  --step-5: clamp(2.25rem, 3.6vw + 1rem, 3.75rem);
  --step-4: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  --step-3: 1.5rem;
  --step-2: 1.125rem;
  --step-1: 1rem;
  --step-0: 0.9375rem;
  --step--1: 0.8125rem;

  /* Layout */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max: 1240px;
  --max-narrow: 880px;

  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(27,42,46,0.04), 0 2px 8px rgba(27,42,46,0.04);
  --shadow-md: 0 4px 12px rgba(27,42,46,0.05), 0 12px 32px rgba(27,42,46,0.06);
  --shadow-lg: 0 8px 24px rgba(27,42,46,0.07), 0 32px 64px rgba(27,42,46,0.08);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.5s;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: 6px;
}

/* -------- Utility -------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--stitch);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
h1 { font-size: var(--step-6); }
h2 { font-size: var(--step-5); }
h3 { font-size: var(--step-4); }
h4 { font-size: var(--step-3); letter-spacing: -0.01em; line-height: 1.2; }

.h-bangla {
  font-family: var(--font-bangla);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.lead {
  font-size: var(--step-2);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 52ch;
}

/* -------- Kantha stitch — the signature -------- */
.stitch {
  display: block;
  height: 8px;
  width: 100%;
  background-image: linear-gradient(
    to right,
    var(--stitch) 0, var(--stitch) 14px,
    transparent 14px, transparent 22px
  );
  background-size: 22px 1px;
  background-repeat: repeat-x;
  background-position: 0 50%;
  opacity: 0.9;
}
.stitch--short { width: 68px; }
.stitch--wave { position: relative; }
.stitch--wave::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--stitch) 1px, transparent 1.5px);
  background-size: 22px 8px;
  background-position: 11px 4px;
  opacity: 0.55;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: var(--step-0);
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              background-color 0.25s ease;
  will-change: transform;
}
.btn--primary {
  background: var(--forest);
  color: var(--bg-soft);
  box-shadow: 0 1px 2px rgba(22,52,48,0.2), 0 8px 24px rgba(22,52,48,0.18);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--forest-deep);
  box-shadow: 0 4px 12px rgba(22,52,48,0.25), 0 16px 40px rgba(22,52,48,0.22);
}
.btn--ghost {
  color: var(--ink);
  border: 1px solid var(--border-strong);
  background: transparent;
}
.btn--ghost:hover {
  transform: translateY(-2px);
  background: var(--surface);
  border-color: var(--ink);
}
.btn--marigold {
  background: var(--marigold);
  color: var(--forest-deep);
}
.btn--marigold:hover {
  transform: translateY(-2px);
  background: var(--marigold-soft);
}
.btn__arrow {
  transition: transform 0.3s var(--ease-out);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* -------- Nav -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.35s ease, backdrop-filter 0.35s ease,
              border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(244, 238, 226, 0.72);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand__mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--marigold);
}
.brand__mark svg { width: 100%; height: 100%; }
.brand__name { line-height: 1; }
.brand__sub {
  font-family: var(--font-bangla);
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-left: 0.35rem;
  letter-spacing: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__link {
  padding: 0.55rem 0.9rem;
  font-size: var(--step--1);
  color: var(--ink-2);
  border-radius: var(--radius-pill);
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}
.nav__link:hover { color: var(--ink); background: rgba(27,42,46,0.04); }
.nav__link[aria-current="page"] {
  color: var(--forest);
  background: rgba(35,78,74,0.08);
}

.nav__cta {
  padding: 0.7rem 1.2rem;
  font-size: var(--step--1);
  background: var(--ink);
  color: var(--bg-soft);
  border-radius: var(--radius-pill);
  transition: transform 0.3s var(--ease-out), background 0.2s ease;
}
.nav__cta:hover { background: var(--forest); transform: translateY(-1px); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.nav__toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--ink); margin: 4px auto;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav.is-menu-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem var(--gutter) 1.5rem;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    gap: 0.25rem;
  }
  .nav.is-menu-open .nav__link { padding: 0.9rem 1rem; font-size: 1rem; }
  .nav.is-menu-open .nav__cta {
    display: inline-flex;
    align-self: flex-start;
    margin: 0.5rem var(--gutter) 0;
  }
}

/* -------- Hero -------- */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3.5rem, 9vw, 7rem);
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero__title {
  font-family: var(--font-bangla);
  font-weight: 600;
  font-size: clamp(3rem, 8vw + 1rem, 7.25rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.hero__title .accent {
  color: var(--forest);
  font-style: normal;
  position: relative;
}
.hero__sub {
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 1.6vw + 0.9rem, 1.875rem);
  line-height: 1.35;
  color: var(--ink-2);
  max-width: 32ch;
  font-variation-settings: "opsz" 60, "SOFT" 80;
}
.hero__meaning {
  margin-top: 1.25rem;
  font-size: var(--step-0);
  color: var(--ink-muted);
  max-width: 40ch;
}
.hero__actions {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; gap: 0.9rem;
}
.hero__stitch { margin-top: 3rem; max-width: 220px; }

/* Ambient shapes */
.hero__ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform;
}
.blob--1 {
  width: 480px; height: 480px;
  right: -140px; top: -80px;
  background: radial-gradient(circle, var(--marigold-soft), transparent 65%);
  animation: drift 22s ease-in-out infinite alternate;
}
.blob--2 {
  width: 380px; height: 380px;
  left: -80px; bottom: -100px;
  background: radial-gradient(circle, var(--blush), transparent 65%);
  animation: drift2 26s ease-in-out infinite alternate;
}
.blob--3 {
  width: 260px; height: 260px;
  right: 25%; bottom: 15%;
  background: radial-gradient(circle, rgba(74,115,110,0.35), transparent 70%);
  animation: drift 28s ease-in-out infinite alternate-reverse;
  opacity: 0.35;
}
@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(30px, -20px) scale(1.06); }
  100% { transform: translate(-20px, 40px) scale(0.98); }
}
@keyframes drift2 {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-40px, 30px) scale(1.08); }
  100% { transform: translate(30px, -25px) scale(0.96); }
}

/* Floating seed particles */
.seed {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--marigold);
  opacity: 0.5;
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-120vh) translateX(30px); opacity: 0; }
}

/* -------- Section headers -------- */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}
.section--warm { background: var(--bg-soft); }
.section--forest { background: var(--forest); color: var(--bg-soft); }
.section--forest h2, .section--forest h3 { color: var(--bg-soft); }
.section--forest .eyebrow { color: rgba(251,246,234,0.7); }
.section--forest .eyebrow::before { background: rgba(251,246,234,0.4); }

.section__head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 640px;
}
.section__head--wide { max-width: 780px; }
.section__head--center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }

/* -------- Page header (interior pages) -------- */
.page-head {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.page-head__eyebrow { margin-bottom: 1.25rem; }
.page-head__title { max-width: 22ch; }
.page-head__lead { margin-top: 1.5rem; }

/* =========================================================
   MOOD CHECK-IN
   ========================================================= */
.mood {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.mood__inner { max-width: 1080px; margin: 0 auto; padding: 0 var(--gutter); }
.mood__q {
  font-family: var(--font-bangla);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.15;
  color: var(--ink);
  max-width: 18ch;
}
.mood__q-en {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-muted);
  font-size: var(--step-2);
}

.mood__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem;
}
@media (max-width: 900px) { .mood__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .mood__grid { grid-template-columns: repeat(2, 1fr); } }

.mood__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.5rem 0.75rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out),
              border-color 0.25s ease,
              background 0.25s ease;
}
.mood__btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--stitch);
}
.mood__btn.is-active {
  transform: translateY(-4px);
  border-color: var(--forest);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(35,78,74,0.12), var(--shadow-md);
}
.mood__emoji { font-size: 2rem; line-height: 1; }
.mood__label {
  font-size: var(--step--1);
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.mood__response {
  margin-top: 2rem;
  padding: 2rem 2.25rem;
  background: var(--surface-warm);
  border: 1px solid var(--stitch);
  border-radius: var(--radius-lg);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 0.6s var(--ease),
              opacity 0.5s var(--ease-out),
              transform 0.5s var(--ease-out),
              padding 0.5s var(--ease);
}
.mood__response.is-open {
  max-height: 600px;
  opacity: 1;
  transform: translateY(0);
  padding: 2.25rem 2.5rem;
}
.mood__response .stitch { margin-bottom: 1rem; max-width: 80px; }
.mood__response-title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2vw + 0.5rem, 1.875rem);
  line-height: 1.25;
  color: var(--ink);
  font-style: italic;
  font-variation-settings: "opsz" 60, "SOFT" 100;
}
.mood__response-body {
  margin-top: 0.75rem;
  color: var(--ink-2);
  font-size: var(--step-2);
  line-height: 1.55;
  max-width: 56ch;
}
.mood__response-meta {
  margin-top: 1.25rem;
  font-size: var(--step--1);
  color: var(--ink-muted);
}

/* =========================================================
   CARDS — generic
   ========================================================= */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out),
              border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--stitch);
}

/* Circle card */
.circle-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--step--1);
  color: var(--ink-muted);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-strong);
}
.circle-card__meta strong { color: var(--forest); font-weight: 500; }
.circle-card__tag {
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: var(--blush-soft);
  color: var(--forest-deep);
}
.circle-card__tag--online { background: var(--marigold-soft); }
.circle-card__tag--women { background: var(--blush); }
.circle-card__tag--university { background: #D4E3D1; }

.circle-card h3 {
  font-size: var(--step-3);
  letter-spacing: -0.01em;
}
.circle-card p {
  color: var(--ink-muted);
  font-size: var(--step-0);
  margin: 0;
  line-height: 1.55;
}

/* Story card — editorial */
.story {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: block;
}
.story:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.story__cat {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--marigold);
  font-weight: 500;
}
.story__title {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.4vw + 0.9rem, 2rem);
  line-height: 1.2;
  color: var(--ink);
  font-variation-settings: "opsz" 60, "SOFT" 80;
}
.story__excerpt {
  margin-top: 0.9rem;
  color: var(--ink-2);
  font-size: var(--step-0);
  line-height: 1.6;
}
.story__foot {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-strong);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--step--1);
  color: var(--ink-muted);
}
.story__read {
  color: var(--forest);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.story__read span { transition: transform 0.3s var(--ease-out); display: inline-block; }
.story:hover .story__read span { transform: translateX(3px); }

/* Featured story — larger */
.story--feature {
  grid-column: span 2;
  padding: 2.5rem;
  background: var(--surface-warm);
  border-color: var(--stitch);
}
@media (max-width: 900px) { .story--feature { grid-column: span 1; } }

/* Resource card */
.resource {
  padding: 1.5rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.resource:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.resource__tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
}
.resource__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--ink);
}
.resource__meta {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: var(--step--1);
  color: var(--ink-muted);
  display: flex; gap: 1rem;
}

/* Filter chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.chip {
  padding: 0.55rem 1rem;
  font-size: var(--step--1);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  color: var(--ink-2);
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.chip:hover { transform: translateY(-1px); background: var(--surface); }
.chip.is-on {
  background: var(--ink);
  color: var(--bg-soft);
  border-color: var(--ink);
}

/* =========================================================
   IMPACT — counters
   ========================================================= */
.impact { padding: clamp(4rem, 8vw, 7rem) 0; }
.impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .impact__grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 2rem 1.5rem;
  background: rgba(251,246,234,0.06);
  border: 1px solid rgba(251,246,234,0.14);
  border-radius: var(--radius-lg);
  text-align: left;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw + 1rem, 4.25rem);
  line-height: 1;
  color: var(--marigold-soft);
  font-variation-settings: "opsz" 144, "SOFT" 60;
  letter-spacing: -0.02em;
}
.stat__num .suffix { color: var(--marigold); }
.stat__label {
  margin-top: 0.9rem;
  font-size: var(--step--1);
  color: rgba(251,246,234,0.75);
  letter-spacing: 0.02em;
}

/* =========================================================
   COMMUNITY WALL
   ========================================================= */
.wall {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.wall__grid {
  columns: 3 260px;
  column-gap: 1.25rem;
}
.whisper {
  break-inside: avoid;
  margin: 0 0 1.25rem;
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  font-variation-settings: "opsz" 60, "SOFT" 60;
  transition: transform 0.4s var(--ease-out);
}
.whisper:nth-child(3n) { background: var(--blush-soft); border-color: var(--blush); }
.whisper:nth-child(5n) { background: var(--surface-warm); }
.whisper:nth-child(7n) { background: #E8EFE7; border-color: #C8D5C5; }
.whisper:hover { transform: translateY(-3px) rotate(-0.5deg); }
.whisper__foot {
  margin-top: 0.9rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.75rem;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

/* =========================================================
   CTA banner
   ========================================================= */
.cta-band {
  margin: 0 auto;
  max-width: calc(var(--max) - 2 * var(--gutter));
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border-radius: var(--radius-lg);
  background: var(--surface-warm);
  border: 1px solid var(--stitch);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) {
  .cta-band { grid-template-columns: 1fr; }
}
.cta-band h2 {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 3rem);
  max-width: 20ch;
}
.cta-band__side { display: flex; flex-direction: column; gap: 0.75rem; }
.cta-band .stitch { margin-bottom: 1rem; }

/* =========================================================
   ABOUT / values
   ========================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 2rem 1.75rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), background 0.3s ease;
}
.pillar:hover { transform: translateY(-4px); background: var(--surface-warm); }
.pillar__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--marigold);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.pillar__title {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pillar__title-bn {
  font-family: var(--font-bangla);
  color: var(--forest);
  font-weight: 500;
  display: block;
  font-size: 0.95rem;
  margin-top: 0.2rem;
}
.pillar p {
  margin-top: 0.65rem;
  font-size: var(--step-0);
  color: var(--ink-muted);
  line-height: 1.55;
}

/* Values list */
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 800px;
}
.value {
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px dashed var(--stitch);
  font-size: var(--step-0);
  color: var(--ink-2);
  transition: background 0.2s;
}
.value:hover { background: var(--surface-warm); }

/* Two-col text block */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.two-col p { color: var(--ink-2); line-height: 1.7; margin: 0 0 1rem; }
.two-col p:last-child { margin-bottom: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--bg-soft);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
  margin-top: 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(251,246,234,0.12);
}
@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}
.footer__brand h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--bg-soft);
  font-variation-settings: "opsz" 60, "SOFT" 80;
  max-width: 22ch;
}
.footer__brand p {
  margin-top: 1rem;
  color: rgba(251,246,234,0.65);
  max-width: 40ch;
  font-size: var(--step-0);
  line-height: 1.6;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251,246,234,0.55);
  font-weight: 500;
}
.footer ul { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.footer a {
  color: rgba(251,246,234,0.85);
  font-size: var(--step-0);
  transition: color 0.2s;
}
.footer a:hover { color: var(--marigold-soft); }
.footer__bottom {
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 0.75rem;
  font-size: var(--step--1);
  color: rgba(251,246,234,0.55);
}

/* =========================================================
   ANIMATIONS — scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .blob, .seed { display: none; }
}

/* Skip link */
.skip {
  position: absolute; left: -1000px; top: 0;
  padding: 0.75rem 1rem; background: var(--ink); color: var(--bg-soft);
  border-radius: 0 0 12px 0; z-index: 100;
}
.skip:focus { left: 0; }
