/* =========================================================================
   SnehLYT Foundation — styles.css
   Brand: warm, hand-drawn, non-corporate. "heck ya, I wanna join that."
   Fonts: Playfair Display (display) · Playpen Sans (hand accent) · DM Sans (body)
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* brand palette (from the official brand board) */
  --pink:        #db689d;   /* brand pink — decorative / big headings */
  --pink-ink:    #b8336a;   /* accessible pink — buttons, links on cream */
  --pink-deep:   #9c2a59;   /* darkest pink — hovers */
  --red:         #ee3224;
  --green:       #1ec169;
  --orange:      #ffa124;
  --peach:       #efb874;
  --gold:        #c9a84c;

  /* surfaces */
  --cream:       #fdf6ec;   /* page bg */
  --cream-2:     #fff8f2;   /* lighter section */
  --pink-tint:   #fdeef4;   /* soft pink section */
  --white:       #fffdfb;

  /* ink */
  --ink:         #2a1a24;   /* primary text */
  --ink-soft:    #6a5560;   /* secondary text */
  --line:        #efe2d6;   /* hairlines */

  /* type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-hand:    "Playpen Sans", "Comic Sans MS", cursive;
  --font-body:    "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* shape & depth */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --shadow-sm: 0 4px 14px rgba(124, 45, 78, 0.07);
  --shadow:    0 14px 34px rgba(124, 45, 78, 0.10);
  --shadow-lg: 0 26px 60px rgba(124, 45, 78, 0.16);

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);
  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
/* picture is transparent to layout so object-fit images fill aspect-ratio frames */
picture { display: contents; }
a { color: var(--pink-ink); text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
a:hover { color: var(--pink-deep); }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--pink-ink); outline-offset: 3px; border-radius: 6px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.bg-cream2 { background: var(--cream-2); }
.bg-tint   { background: var(--pink-tint); }
.bg-white  { background: var(--white); }
.bg-ink    { background: var(--ink); color: var(--cream); }

/* anchor offset so sticky nav never covers section headings */
:where(section[id], main span[id]) { scroll-margin-top: calc(var(--nav-h) + 14px); }

.center { text-align: center; }
.lead { font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem); color: var(--ink-soft); max-width: 60ch; }
.center .lead { margin-inline: auto; }

/* eyebrow — little handwritten label */
.eyebrow {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--pink-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.eyebrow::before {
  content: "";
  width: 1.6em; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow.no-line::before { display: none; }

/* headings */
h1, h2, h3, .display { font-family: var(--font-display); line-height: 1.08; font-weight: 800; letter-spacing: -0.01em; }
.h-xl { font-size: clamp(2.5rem, 1.6rem + 4.4vw, 5rem); }
.h-lg { font-size: clamp(2rem, 1.4rem + 2.7vw, 3.25rem); }
.h-md { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem); }
.section-head { max-width: 64ch; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 0.3em; }
.section-head .lead { margin-top: 0.7em; }

/* highlighter accents */
.ink-pink   { color: var(--pink-ink); }
.ink-orange { color: var(--orange); }
.ink-green  { color: var(--green); }
.ink-red    { color: var(--red); }
.hand { font-family: var(--font-hand); font-weight: 600; }

/* squiggle underline (hand drawn) */
.squiggle { position: relative; white-space: nowrap; }
.squiggle::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -0.18em;
  height: 0.4em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='12' viewBox='0 0 120 12'%3E%3Cpath d='M2 8 C 20 2, 40 2, 60 7 S 100 12, 118 5' fill='none' stroke='%23ffa124' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.squiggle.pink::after { filter: none; }
.squiggle.pink::after  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='12' viewBox='0 0 120 12'%3E%3Cpath d='M2 8 C 20 2, 40 2, 60 7 S 100 12, 118 5' fill='none' stroke='%23db689d' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E"); }

/* ---------- Sticker badges ---------- */
.sticker {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-family: var(--font-hand); font-weight: 700;
  font-size: 0.92rem;
  background: var(--white);
  color: var(--ink);
  padding: 0.5em 0.9em;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  border: 2px solid #fff;
  rotate: -3deg;
}
.sticker--pink   { background: var(--pink);   color: #fff; }
.sticker--orange { background: var(--orange); color: #4a2e00; }
.sticker--green  { background: var(--green);  color: #03351c; }
.sticker--cream  { background: var(--cream-2); color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--pink-ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-weight: 700; font-family: var(--font-body);
  font-size: 1rem; line-height: 1;
  padding: 0.95em 1.5em;
  border-radius: 999px;
  border: 2px solid var(--b);
  background: var(--b); color: #fff;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  box-shadow: 0 8px 20px rgba(184, 51, 106, 0.22);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(184, 51, 106, 0.30); color: #fff; background: var(--pink-deep); border-color: var(--pink-deep); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  background: transparent; color: var(--pink-ink);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--pink-ink); color: #fff; }
.btn--ink { --b: var(--ink); background: var(--ink); border-color: var(--ink); box-shadow: 0 8px 20px rgba(42,26,36,.2); }
.btn--ink:hover { background: #43303b; border-color: #43303b; }
.btn--wa { --b: #25d366; background: #1ebe5d; border-color: #1ebe5d; box-shadow: 0 8px 20px rgba(37,211,102,.28); }
.btn--wa:hover { background: #169c4b; border-color: #169c4b; }
.btn--lg { font-size: 1.08rem; padding: 1.05em 1.8em; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Decorative confetti hearts ---------- */
.confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.confetti i {
  position: absolute; display: block;
  width: var(--s, 22px); height: var(--s, 22px);
  background: var(--c, var(--pink));
  -webkit-mask: var(--heart) center / contain no-repeat;
          mask: var(--heart) center / contain no-repeat;
  opacity: .85;
  animation: float 7s ease-in-out infinite;
}
:root { --heart: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-8.5-5.5-10.5-11C.2 6.7 2.4 4 5.5 4 7.6 4 9.2 5.2 12 8c2.8-2.8 4.4-4 6.5-4 3.1 0 5.3 2.7 4 6-2 5.5-10.5 11-10.5 11z'/%3E%3C/svg%3E"); }
@keyframes float { 0%,100% { transform: translateY(0) rotate(var(--rot,0deg)); } 50% { transform: translateY(-14px) rotate(var(--rot,0deg)); } }

/* =========================================================================
   NAV
   ========================================================================= */
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top .2s;
}
.skip:focus { top: 12px; color: #fff; }

.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(253, 246, 236, 0.72);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nav.scrolled { background: rgba(253, 246, 236, 0.92); border-bottom-color: var(--line); box-shadow: 0 6px 20px rgba(124,45,78,.06); }
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { height: 42px; width: auto; }
.brand b { font-family: var(--font-display); font-size: 1.45rem; color: var(--pink-ink); font-weight: 800; letter-spacing: -0.01em; }
.brand small { display: block; font-family: var(--font-hand); font-size: .62rem; color: var(--ink-soft); letter-spacing: .04em; margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: clamp(6px, 1.6vw, 22px); }
.nav-links a:not(.btn) {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: .98rem;
  padding: 8px 4px; position: relative;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 2px; height: 2px;
  background: var(--pink); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav-links a:not(.btn):hover { color: var(--pink-ink); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink); }
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--cream-2); padding: 18px var(--gut) 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a:not(.btn) { padding: 14px 6px; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-links .btn { margin-top: 12px; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; overflow: clip; background:
  radial-gradient(1200px 600px at 80% -10%, #fde4ef 0%, transparent 60%),
  radial-gradient(900px 500px at 0% 0%, #fff1e2 0%, transparent 55%),
  linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 70px);
  align-items: center; padding-block: clamp(40px, 7vw, 86px);
}
.hero h1 { margin: .35em 0 .35em; }
.hero h1 .em { color: var(--pink-ink); }
.hero .lead { margin-bottom: 1.6em; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.8em; }
.hero-points .sticker { rotate: 0deg; }

/* hero collage */
.collage { position: relative; }
.collage .frame {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid #fff; background: #fff;
}
.collage .frame img { width: 100%; height: 100%; object-fit: cover; }
.collage .c-main { aspect-ratio: 4/5; rotate: 2deg; }
.collage .c-tl {
  position: absolute; top: -26px; left: -28px; width: 44%; aspect-ratio: 1/1;
  rotate: -6deg; z-index: 2;
}
.collage .c-br {
  position: absolute; bottom: -30px; right: -26px; width: 46%; aspect-ratio: 4/3;
  rotate: 5deg; z-index: 2;
}
.collage .float-badge {
  position: absolute; z-index: 3; rotate: -4deg;
}
.collage .badge-1 { top: 14%; right: -22px; rotate: 6deg; }
.collage .badge-2 { bottom: 8%; left: -26px; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .collage { max-width: 460px; margin: 30px auto 10px; }
  .collage .c-tl { left: -10px; }
  .collage .c-br { right: -10px; }
}

/* =========================================================================
   MARQUEE
   ========================================================================= */
.marquee {
  background: var(--ink); color: var(--cream);
  padding-block: 16px; overflow: hidden; white-space: nowrap;
  border-block: 0;
}
.marquee__track { display: inline-flex; gap: 0; will-change: transform; animation: scroll-x 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-size: clamp(1.1rem, 1rem + 1vw, 1.7rem); font-weight: 700; padding-inline: 26px; display: inline-flex; align-items: center; gap: 26px; }
.marquee span::after { content: "✦"; color: var(--orange); font-size: .8em; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; white-space: normal; flex-wrap: wrap; justify-content: center; } }

/* =========================================================================
   STATS
   ========================================================================= */
.stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(14px, 2vw, 26px); }
.stat { text-align: center; padding: 8px; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.4rem); color: var(--pink-ink); line-height: 1; }
.stat .num .plus { color: var(--orange); }
.stat .label { font-family: var(--font-hand); font-size: .92rem; color: var(--ink-soft); margin-top: .4em; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 22px; } .stat:last-child { grid-column: 1 / -1; } }

/* =========================================================================
   ABOUT / PHILOSOPHY
   ========================================================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about-photo { position: relative; }
.about-photo img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow); border: 6px solid #fff; }
.about-photo .sticker { position: absolute; bottom: -16px; left: -10px; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }

.lyt { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(40px, 5vw, 64px); }
.lyt .card {
  background: var(--white); border-radius: var(--r-lg); padding: 30px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.lyt .card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.lyt .tag { font-family: var(--font-hand); font-weight: 700; font-size: 1rem; }
.lyt .ltr { font-family: var(--font-display); font-size: 3rem; font-weight: 800; line-height: 1; }
.lyt .l1 .ltr, .lyt .l1 .tag { color: var(--red); }
.lyt .l2 .ltr, .lyt .l2 .tag { color: var(--orange); }
.lyt .l3 .ltr, .lyt .l3 .tag { color: var(--green); }
.lyt h3 { font-size: 1.25rem; margin: .5em 0 .3em; }
.lyt p { color: var(--ink-soft); font-size: .98rem; }
@media (max-width: 760px) { .lyt { grid-template-columns: 1fr; } }

/* =========================================================================
   PROGRAMS
   ========================================================================= */
.prog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3.5vw, 40px); }
@media (max-width: 900px) { .prog-grid { grid-template-columns: 1fr; } }

.prog-card {
  background: var(--white); border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.prog-card .ph { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.prog-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.prog-card:hover .ph img { transform: scale(1.05); }
.prog-card .ph .chip {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-hand); font-weight: 700; font-size: .85rem;
  background: rgba(255,255,255,.92); color: var(--ink); padding: .4em .85em; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.prog-card .body { padding: clamp(22px, 3vw, 32px); display: flex; flex-direction: column; gap: 14px; flex: 1; }
.prog-card h3 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); }
.prog-card .body > p { color: var(--ink-soft); }
.pills { display: flex; flex-wrap: wrap; gap: 9px; }
.pill {
  font-size: .9rem; font-weight: 600; padding: .5em .95em; border-radius: 999px;
  background: var(--pink-tint); color: var(--pink-deep); border: 1px solid #f6d7e5;
}
.prog-card.women .pill { background: #fff3e0; color: #9a5a00; border-color: #ffe2b8; }

/* featured flagship line (UDAAN / Rasoi) */
.flagship {
  margin-top: auto; display: flex; gap: 14px; align-items: flex-start;
  background: linear-gradient(180deg, var(--cream-2), #fff);
  border: 1.5px dashed var(--peach); border-radius: var(--r);
  padding: 16px 18px;
}
.flagship .star { font-size: 1.4rem; line-height: 1.2; }
.flagship b { font-family: var(--font-display); font-size: 1.05rem; display: block; }
.flagship span { color: var(--ink-soft); font-size: .92rem; }
.flagship .hindi { font-family: "Noto Sans Devanagari", var(--font-body); }

/* =========================================================================
   FESTIVAL STRIP (horizontal scroll)
   ========================================================================= */
.fest-scroll {
  display: flex; gap: 16px; overflow-x: auto; padding: 6px 4px 22px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--peach) transparent;
}
.fest-scroll::-webkit-scrollbar { height: 8px; }
.fest-scroll::-webkit-scrollbar-thumb { background: var(--peach); border-radius: 999px; }
.fest-card {
  flex: 0 0 auto; width: clamp(220px, 38vw, 300px); scroll-snap-align: start;
  border-radius: var(--r-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-sm);
  aspect-ratio: 4/5; background: var(--ink);
}
.fest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fest-card:hover img { transform: scale(1.06); }
.fest-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 18px 16px;
  color: #fff; font-family: var(--font-hand); font-weight: 700;
  background: linear-gradient(180deg, transparent, rgba(20,8,14,.82));
}

/* =========================================================================
   YOUTH WING
   ========================================================================= */
.youth { position: relative; overflow: clip; }
.youth-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 880px) { .youth-grid { grid-template-columns: 1fr; } }
.youth-photo img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow); border: 6px solid rgba(255,255,255,.08); }
.quote-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg); padding: 26px; margin: 26px 0; font-family: var(--font-display);
  font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem); line-height: 1.35;
}
.youth .feat { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; margin-top: 22px; }
.youth .feat li { display: flex; gap: 11px; align-items: flex-start; }
.youth .feat .dot { width: 12px; height: 12px; border-radius: 50%; margin-top: 7px; flex: 0 0 auto; }
.bg-ink .eyebrow { color: var(--orange); }
.bg-ink a:not(.btn) { color: #ffd9a0; }

/* =========================================================================
   CELEBRATE
   ========================================================================= */
.celebrate-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
@media (max-width: 880px) { .celebrate-grid { grid-template-columns: 1fr; } }
.celebrate-photo { position: relative; }
.celebrate-photo img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow); border: 6px solid #fff; }
.celebrate-photo .float-badge { position: absolute; top: -18px; right: -14px; rotate: 7deg; }
.occasions { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 26px; }

/* =========================================================================
   BUILD A SNEH KIT  (the interactive bit)
   ========================================================================= */
.kit { position: relative; overflow: clip; background:
  radial-gradient(900px 520px at 100% -5%, #fde7f1 0%, transparent 60%),
  radial-gradient(700px 440px at 0% 110%, #fff0e0 0%, transparent 55%),
  var(--cream-2); }
.kit .container { position: relative; z-index: 1; }
.kit-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(20px, 3vw, 36px); align-items: start; }
@media (max-width: 900px) { .kit-grid { grid-template-columns: 1fr; } .kit-summary { position: static; } }

.kit-items { display: flex; flex-direction: column; gap: 12px; }
.kit-item {
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 14px 16px; box-shadow: var(--shadow-sm);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.kit-item.active { border-color: var(--pink); box-shadow: 0 10px 26px rgba(219,104,157,.16); }
.kit-emoji { font-size: 1.7rem; width: 46px; height: 46px; display: grid; place-items: center; background: var(--pink-tint); border-radius: 12px; }
.kit-info b { font-family: var(--font-display); font-size: 1.08rem; display: block; line-height: 1.2; }
.kit-info span { color: var(--ink-soft); font-size: .88rem; }
.kit-price { font-weight: 700; color: var(--pink-ink); white-space: nowrap; }

.stepper { display: inline-flex; align-items: center; gap: 4px; background: var(--cream-2); border: 1px solid var(--line); border-radius: 999px; padding: 4px; }
.step { width: 32px; height: 32px; border-radius: 50%; border: 0; background: #fff; color: var(--pink-ink); font-size: 1.25rem; font-weight: 700; line-height: 1; display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: background .15s ease, color .15s ease, transform .12s ease; }
.step:hover { background: var(--pink-ink); color: #fff; }
.step:active { transform: scale(.9); }
.step-qty { min-width: 24px; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; }

.kit-summary {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 28px); box-shadow: var(--shadow); position: sticky; top: calc(var(--nav-h) + 14px);
}
.kit-summary h3 { font-size: 1.4rem; margin-bottom: 12px; }
.kit-lines { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.kit-lines li { display: flex; justify-content: space-between; gap: 10px; font-size: .96rem; padding-bottom: 8px; border-bottom: 1px dashed var(--line); }
.kit-lines li span:first-child { color: var(--ink); }
.kit-lines li b { white-space: nowrap; }
.kit-empty { color: var(--ink-soft); border-bottom: 0 !important; font-style: italic; }
.kit-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 6px; border-top: 2px solid var(--ink); margin-top: 2px; }
.kit-total span { font-weight: 600; }
.kit-total b { font-family: var(--font-display); font-size: 1.9rem; color: var(--pink-ink); }
.kit-impact { font-family: var(--font-hand); color: var(--green); font-weight: 600; margin-top: 10px; min-height: 1.2em; }
.kit-send { margin-top: 16px; border-top: 1px solid var(--line); padding-top: 16px; }
.kit-send .field { margin-bottom: 12px; }
.kit-amt-note { font-size: .8rem; color: var(--ink-soft); margin-top: 14px; }
.kit-thanks { text-align: center; padding: 10px 0; }
.kit-thanks .big { font-family: var(--font-display); font-size: 1.5rem; color: var(--pink-ink); }
.kit-thanks p { color: var(--ink-soft); margin-top: 6px; }

/* visually-hidden honeypot for spam bots */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; overflow: hidden; }

@media (max-width: 480px) {
  .kit-item { grid-template-columns: auto 1fr; row-gap: 10px; }
  .kit-item .kit-price { grid-column: 1; justify-self: start; }
  .kit-item .stepper { grid-column: 2; justify-self: end; }
}

/* hero confetti can crowd text on small screens */
@media (max-width: 600px) { .hero .confetti { display: none; } }

/* =========================================================================
   GALLERY
   ========================================================================= */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 28px 0 34px; }
.filter {
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  background: var(--white); color: var(--ink); border: 1.5px solid var(--line);
  padding: .55em 1.1em; border-radius: 999px; transition: all .18s ease;
}
.filter:hover { border-color: var(--pink); color: var(--pink-ink); }
.filter[aria-pressed="true"] { background: var(--pink-ink); color: #fff; border-color: var(--pink-ink); }

.gallery { columns: 4 240px; column-gap: 16px; }
.gallery .item {
  break-inside: avoid; margin-bottom: 16px; border-radius: var(--r); overflow: hidden;
  position: relative; box-shadow: var(--shadow-sm); background: var(--pink-tint);
  display: block; width: 100%; border: 0; padding: 0; cursor: zoom-in;
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery .item img { width: 100%; display: block; transition: transform .5s ease; }
.gallery .item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery .item:hover img { transform: scale(1.04); }
.gallery .item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px; text-align: left;
  color: #fff; font-size: .88rem; font-weight: 600;
  background: linear-gradient(180deg, transparent, rgba(20,8,14,.8));
  opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease;
}
.gallery .item:hover figcaption, .gallery .item:focus-visible figcaption { opacity: 1; transform: translateY(0); }
.gallery .item.hide { display: none; }
@media (max-width: 560px) { .gallery { columns: 2 150px; column-gap: 12px; } .gallery .item { margin-bottom: 12px; } }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  background: rgba(20, 8, 14, .92); padding: clamp(12px, 4vw, 48px);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox figure { max-width: min(1100px, 100%); max-height: 100%; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.lightbox img { max-height: 80vh; width: auto; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lightbox figcaption { color: #fff; font-family: var(--font-hand); font-size: 1rem; text-align: center; }
.lb-btn {
  position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  transition: background .15s ease; backdrop-filter: blur(4px);
}
.lb-btn:hover { background: rgba(255,255,255,.26); }
.lb-btn svg { width: 26px; height: 26px; }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) { .lb-prev { left: 8px; } .lb-next { right: 8px; } .lb-btn { width: 44px; height: 44px; } }

/* =========================================================================
   JOIN cards
   ========================================================================= */
.join-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .join-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .join-grid { grid-template-columns: 1fr; } }
.join-card {
  background: var(--white); border-radius: var(--r-lg); padding: 28px 24px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.join-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.join-card .ic { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 6px; }
.join-card .ic svg { width: 28px; height: 28px; }
.join-card h3 { font-size: 1.2rem; }
.join-card p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.join-card a { font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: .4em; }
.join-card a:hover { gap: .7em; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 56px); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { display: flex; flex-direction: column; gap: 18px; margin-top: 22px; }
.contact-list a, .contact-list .row { display: flex; gap: 14px; align-items: center; text-decoration: none; color: var(--ink); }
.contact-list .ic { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 14px; background: var(--pink-tint); display: grid; place-items: center; color: var(--pink-ink); }
.contact-list .ic svg { width: 22px; height: 22px; }
.contact-list b { display: block; font-size: 1.05rem; }
.contact-list small { color: var(--ink-soft); }
.contact-list a:hover .ic { background: var(--pink-ink); color: #fff; }

.form { background: var(--white); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow); border: 1px solid var(--line); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 7px; font-size: .96rem; }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--cream-2); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 13px 15px; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(219,104,157,.15); }
.field textarea { min-height: 130px; resize: vertical; }
.form .note { font-size: .85rem; color: var(--ink-soft); margin-top: 14px; }
.form-status { font-family: var(--font-hand); font-weight: 700; color: var(--green); margin-top: 14px; min-height: 1.4em; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--ink); color: #e9d8e1; padding-block: clamp(48px, 6vw, 76px) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer img.flogo { height: 54px; margin-bottom: 14px; }
.footer p { color: #c8b3bf; font-size: .96rem; max-width: 38ch; }
.footer h4 { font-family: var(--font-hand); font-size: 1.05rem; color: #fff; margin-bottom: 14px; }
.footer ul { display: flex; flex-direction: column; gap: 9px; }
.footer a { color: #d9c6d0; text-decoration: none; }
.footer a:hover { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 8px; }
.socials a { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.socials a:hover { background: var(--pink-ink); }
.socials svg { width: 22px; height: 22px; }
.footer .copy { border-top: 1px solid rgba(255,255,255,.12); margin-top: 38px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; color: #b59dab; font-size: .9rem; }
.footer .copy .hand { color: var(--pink); }

/* =========================================================================
   FLOAT BUTTONS
   ========================================================================= */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: #1ebe5d; color: #fff; text-decoration: none;
  padding: 12px 18px 12px 14px; border-radius: 999px; font-weight: 700;
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); color: #fff; box-shadow: 0 16px 36px rgba(37,211,102,.5); }
.wa-float svg { width: 26px; height: 26px; }
.wa-float .lbl { font-size: .95rem; }
@media (max-width: 560px) { .wa-float .lbl { display: none; } .wa-float { padding: 14px; } }

.to-top {
  position: fixed; right: 22px; bottom: 88px; z-index: 89;
  width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, background .15s ease;
  box-shadow: var(--shadow);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--pink-ink); }
.to-top svg { width: 22px; height: 22px; }
@media (max-width: 560px) { .to-top { bottom: 84px; right: 18px; } }

/* =========================================================================
   WAVE DIVIDERS
   ========================================================================= */
.wave { display: block; width: 100%; height: clamp(40px, 6vw, 90px); }
.wave svg { width: 100%; height: 100%; display: block; }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .confetti i { animation: none !important; }
  .wa-float, .to-top, .lyt .card, .prog-card, .join-card, .gallery .item { transition: none !important; }
}

/* small utilities */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mb-0 { margin-bottom: 0; }
.maxw-58 { max-width: 58ch; } .nowrap { white-space: nowrap; }

/* =========================================================================
   INNER PAGES (about / programs / donate)
   ========================================================================= */
.page-hero {
  position: relative; overflow: clip; text-align: center;
  padding-block: clamp(48px, 8vw, 104px);
  background:
    radial-gradient(900px 460px at 80% -10%, #fde4ef 0%, transparent 60%),
    radial-gradient(760px 420px at 0% 0%, #fff1e2 0%, transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { margin: .35em auto .2em; max-width: 16ch; }
.page-hero .lead { margin: .6em auto 0; }

/* alternating feature row */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.feature + .feature { margin-top: clamp(40px, 6vw, 76px); }
.feature.rev .feature-media { order: 2; }
.feature-media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow); border: 6px solid #fff; }
.feature-media { position: relative; }
.feature-media .sticker { position: absolute; bottom: -16px; left: -10px; }
.feature h3 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem); }
.feature .lead { margin: .5em 0 0; }
.feature ul.ticks { margin-top: 16px; display: grid; gap: 9px; }
.feature ul.ticks li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-soft); }
.feature ul.ticks li::before { content: "✓"; color: var(--green); font-weight: 800; }
@media (max-width: 820px) { .feature { grid-template-columns: 1fr; } .feature.rev .feature-media { order: 0; } }

/* generic card grid (values, where-money, festivals) */
.cardgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.mini-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mini-card .ic2 { font-size: 1.9rem; line-height: 1; }
.mini-card h4 { font-family: var(--font-display); font-size: 1.18rem; margin: .45em 0 .25em; }
.mini-card p { color: var(--ink-soft); font-size: .95rem; }
.mini-card .big-num { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--pink-ink); line-height: 1; }

/* timeline (about) */
.timeline { position: relative; max-width: 720px; margin: clamp(30px,5vw,52px) auto 0; padding-left: 10px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 3px; border-radius: 3px; background: linear-gradient(var(--red), var(--orange) 40%, var(--green)); }
.t-item { position: relative; padding: 0 0 26px 30px; }
.t-item::before { content: ""; position: absolute; left: 0; top: 4px; width: 17px; height: 17px; border-radius: 50%; background: var(--pink); border: 3px solid var(--cream); box-shadow: var(--shadow-sm); }
.t-item .yr { font-family: var(--font-hand); font-weight: 700; color: var(--pink-ink); }
.t-item h4 { font-family: var(--font-display); font-size: 1.1rem; margin: .1em 0 .1em; }
.t-item p { color: var(--ink-soft); font-size: .95rem; }

/* founders mini */
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
@media (max-width: 640px) { .founders { grid-template-columns: 1fr; } }
.founder-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: flex-start; }
.founder-card .mono { width: 56px; height: 56px; flex: 0 0 auto; border-radius: 16px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #fff; }
.founder-card h4 { font-family: var(--font-display); font-size: 1.25rem; }
.founder-card .role { font-family: var(--font-hand); color: var(--pink-ink); font-size: .9rem; }
.founder-card p { color: var(--ink-soft); font-size: .94rem; margin-top: 6px; }

/* =========================================================================
   DONATE
   ========================================================================= */
.donate-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 46px); align-items: start; }
@media (max-width: 900px) { .donate-wrap { grid-template-columns: 1fr; } }
.donate-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow); }
.donate-box h3 { font-size: 1.5rem; margin-bottom: 4px; }
.donate-box > p.sub { color: var(--ink-soft); margin-bottom: 18px; }
.amt-presets { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.amt { font-weight: 700; font-size: 1rem; padding: .7em 1.15em; border-radius: 999px; border: 1.5px solid var(--line); background: var(--cream-2); color: var(--ink); transition: background .15s, color .15s, border-color .15s; }
.amt:hover { border-color: var(--pink); color: var(--pink-ink); }
.amt.on { background: var(--pink-ink); color: #fff; border-color: var(--pink-ink); }
.amt-custom { display: flex; align-items: center; gap: 8px; background: var(--cream-2); border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 2px 14px; margin-bottom: 18px; }
.amt-custom:focus-within { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(219,104,157,.15); }
.amt-custom span { font-weight: 700; color: var(--ink-soft); }
.amt-custom input { border: 0; background: transparent; font: inherit; padding: 12px 0; width: 100%; outline: none; }

/* UPI app picker (donor chooses their app — no forced default) */
.pay-apps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 4px 0; }
.pay-label { grid-column: 1 / -1; font-weight: 700; color: var(--ink-soft); font-size: .95rem; }
.pay-app {
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-weight: 700; font-size: .98rem; padding: .9em .7em; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--white); color: var(--ink); text-decoration: none;
  transition: transform .15s ease, border-color .15s ease, color .15s ease, background .15s ease;
}
.pay-app:hover { border-color: var(--pink); color: var(--pink-ink); transform: translateY(-2px); }
.pay-app.full { grid-column: 1 / -1; }
.pay-app.primary { background: var(--pink-ink); color: #fff; border-color: var(--pink-ink); box-shadow: 0 8px 20px rgba(184,51,106,.22); }
.pay-app.primary:hover { background: var(--pink-deep); color: #fff; border-color: var(--pink-deep); }
.pay-desk { grid-column: 1 / -1; background: var(--cream-2); border: 1.5px dashed var(--peach); border-radius: var(--r); padding: 14px 16px; color: var(--ink-soft); font-size: .95rem; }
.pay-last { text-align: center; font-size: .9rem; color: var(--ink-soft); margin-top: 16px; }
.pay-last a { font-weight: 700; }

.pay-hint { font-size: .85rem; color: var(--ink-soft); margin-top: 12px; text-align: center; }
.upi-extra { margin-top: 20px; border-top: 1px solid var(--line); padding-top: 18px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.upi-extra img { width: 130px; height: 130px; border-radius: 12px; border: 1px solid var(--line); background: #fff; padding: 6px; }
.upi-id-row { font-size: 1rem; }
.upi-id-row b { font-family: var(--font-hand); color: var(--pink-ink); }
.copy-btn { margin-left: 8px; font-size: .8rem; font-weight: 700; color: var(--pink-ink); background: var(--pink-tint); border: 1px solid #f6d7e5; border-radius: 999px; padding: .4em .85em; }
.copy-btn:hover { background: var(--pink-ink); color: #fff; }
.secure-note { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--ink-soft); margin-top: 16px; }
.secure-note svg { width: 16px; height: 16px; flex: 0 0 auto; }
