/* ============================================================
   Purna Foundation — page compositions
   Home page sections + Our Work page styles
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
   .hero {
    position: relative;
    isolation: isolate;
    min-height: min(88vh, 760px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    padding-top: var(--sp-8);
  }
  .hero__media { position: absolute; inset: 0; z-index: -2; background: var(--navy); }
  
  /* An even wash across the whole photograph, plus two soft gradients that
     deepen the top, bottom and left where the copy sits. The flat layer is
     what carries the legibility, so the gradients can stay gentle. */
  .hero__scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: rgba(14, 27, 54, 0.42);
    background-image:
      linear-gradient(180deg, rgba(14, 27, 54, 0.40) 0%, rgba(14, 27, 54, 0.10) 40%, rgba(14, 27, 54, 0.72) 100%),
      linear-gradient(90deg, rgba(14, 27, 54, 0.55) 0%, rgba(14, 27, 54, 0.18) 60%, rgba(14, 27, 54, 0.06) 100%);
  }
  
  /* Until the hero photograph is supplied, fill with deep navy so the
     headline keeps its contrast, and tuck the slot spec into the top
     corner where it cannot collide with the copy. */
  .hero__media .img-slot.is-missing { background: var(--navy-deep); }
  .hero__media .img-slot.is-missing .img-slot__ph {
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 10px, transparent 10px 20px);
    border-color: rgba(255, 255, 255, 0.22);
    justify-content: flex-start;
    align-items: flex-end;
    padding: var(--sp-5) var(--gutter);
    text-align: end;
  }
  .hero__media .img-slot.is-missing .img-slot__ph-icon { color: #fff; opacity: 0.35; }
  .hero__media .img-slot.is-missing .img-slot__ph-id,
  .hero__media .img-slot.is-missing .img-slot__ph-size { color: var(--saffron); }
  .hero__media .img-slot.is-missing .img-slot__ph-desc { color: rgba(255, 255, 255, 0.65); }
  .hero__media .img-slot.is-missing .img-slot__ph-path {
    background: rgba(0, 0, 0, 0.35);
    color: rgba(255, 255, 255, 0.7);
  }
  @media (max-width: 900px) {
    /* No room beside the headline on a phone — spec drops to the icon only. */
    .hero__media .img-slot.is-missing .img-slot__ph-desc,
    .hero__media .img-slot.is-missing .img-slot__ph-path { display: none; }
  }
  
  .hero__content { padding-block: var(--sp-7) var(--sp-6); max-width: 46rem; }

  .hero .eyebrow { color: #fff; }
  .hero .eyebrow::before { background: var(--saffron); }
  
  .hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: var(--fs-4xl);
    line-height: 0.98;
    letter-spacing: -0.02em;
    color: #fff;
    text-wrap: balance;
  }
  .hero__title .hero__title-hi {
    display: block;
    font-family: var(--font-deva);
    font-size: 0.52em;
    color: var(--saffron);
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 0.15em;
    font-weight: 700;
  }
  [data-lang='hi'] .hero__title { font-family: var(--font-deva); font-weight: 800; line-height: 1.25; letter-spacing: 0; text-transform: none; }
  
  .hero__lead {
    margin-top: var(--sp-5);
    font-size: var(--fs-md);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 40rem;
  }
  
  .hero__cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }

  .hero__trust { padding-bottom: var(--sp-6); }

  /* ---- Phone ------------------------------------------------
     Stacked rather than overlaid: the photograph runs full width at the
     top, the copy sits on a navy panel directly beneath it. Nothing is
     laid over the picture, so it needs no scrim and no cropping — the
     media box is given the phone image's own 690:750 ratio, which shows
     the frame whole. It also removes the tug-of-war between hero height
     and how much of the image survives object-fit: cover. */
  @media (max-width: 640px) {
    .hero {
      display: block;              /* drop the flex bottom-alignment */
      min-height: 0;
      padding-top: 0;
      background: var(--navy);
    }

    /* Out of the absolute backdrop and back into normal flow. z-index must
       leave the negative layer too, or the hero's own background covers it. */
    .hero__media {
      position: relative;
      inset: auto;
      z-index: auto;
      aspect-ratio: 690 / 750;     /* the phone image's ratio — nothing cropped */
    }
    .hero__scrim { display: none; }

    .hero__content { padding-block: var(--sp-6) var(--sp-4); max-width: none; }
    .hero .eyebrow { font-size: 0.7rem; }

    /* --fs-4xl bottoms out at 2.75rem (44px) — too heavy on a 390px screen. */
    .hero__title { font-size: clamp(1.95rem, 1.3rem + 3.4vw, 2.6rem); line-height: 1.04; }
    .hero__lead {
      margin-top: var(--sp-3);
      font-size: clamp(0.9rem, 0.86rem + 0.5vw, 1rem);
      line-height: 1.55;
    }
    .hero__cta { gap: var(--sp-2); margin-top: var(--sp-5); }
    /* btn--lg is sized for desktop; step it back to the default button scale.
       Kept tight enough that both buttons still share one row at 390px. */
    .hero__cta .btn--lg { padding: 0.7rem 1.15rem; font-size: var(--fs-sm); }

    /* The tiles are var(--navy), which is now also the panel behind them —
       lift them slightly so they read as tiles rather than bare grid lines. */
    .hero__trust { padding-bottom: var(--sp-6); }
    .hero__trust .meta-strip { background: rgba(255, 255, 255, 0.14); }
    .hero__trust .meta-strip__item {
      background: rgba(255, 255, 255, 0.07);
      padding: var(--sp-3) var(--sp-2);
    }
    .hero__trust .meta-strip__label { font-size: 0.6rem; letter-spacing: 0.08em; }
    .hero__trust .meta-strip__value { font-size: 0.8rem; }
  }
  
  /* ============================================================
     STATS
     ============================================================ */
  .stats { margin-top: calc(var(--sp-7) * -1); position: relative; z-index: 2; }
  .stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
  @media (min-width: 900px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

  /* Phone: the hero is a stacked navy panel here, not a photograph, so
     there is nothing for the cards to float over — pulling them up 3rem
     only straddles the navy/page boundary. Sit them clear of it instead. */
  @media (max-width: 640px) {
    .stats { margin-top: 0; padding-top: var(--sp-6); }
    .stats__grid { gap: var(--sp-3); }
  }
  
  /* ============================================================
     ABOUT SNAPSHOT
     ============================================================ */
  .about-snapshot__grid {
    display: grid;
    gap: var(--sp-6);
    align-items: center;
  }
  @media (min-width: 900px) {
    .about-snapshot__grid { grid-template-columns: 1fr 0.85fr; gap: var(--sp-8); }
  }
  
  .about-snapshot__facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
    margin-top: var(--sp-6);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--line);
  }
  .about-fact__label {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .about-fact__value { font-weight: 700; color: var(--navy); margin-top: 2px; }
  
  /* Portrait with the deck's offset saffron frame */
  .portrait { position: relative; }
  .portrait::before {
    content: '';
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 3px solid var(--saffron);
    border-radius: var(--r-lg);
    z-index: 0;
  }
  .portrait .img-slot { position: relative; z-index: 1; border-radius: var(--r-lg); box-shadow: var(--sh-md); }
  .portrait__caption {
    position: relative;
    z-index: 2;
    margin-top: var(--sp-5);
    background: var(--surface);
    border-radius: var(--r-md);
    padding: var(--sp-4);
    text-align: center;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--line);
  }
  .portrait__name { font-size: var(--fs-md); font-weight: 700; color: var(--navy); }
  .portrait__role { font-size: var(--fs-sm); color: var(--saffron-dark); font-weight: 600; margin-top: 2px; }
  
  @media (max-width: 899px) {
    .portrait::before { inset: 12px -12px -12px 12px; }
  }
  
  /* ============================================================
     OUR WORK — three cluster cards (Home page)
     ============================================================ */
  .work-card { display: flex; flex-direction: column; height: 100%; }
  .work-card__media { position: relative; }
  .work-card__media .img-slot { border-radius: 0; }
  .work-card__icon {
    position: absolute;
    bottom: 0; left: var(--sp-5);
    transform: translateY(50%);
    margin: 0;
    box-shadow: var(--sh-md);
    background: var(--surface);
    border: 3px solid var(--surface);
  }
  .work-card__body { padding: var(--sp-6) var(--sp-5) var(--sp-5); flex: 1; display: flex; flex-direction: column; }
  .work-card__tag {
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--saffron-dark);
    font-style: italic;
    margin-bottom: var(--sp-2);
  }
  .work-card__list { margin-top: var(--sp-4); }
  .work-card__list li {
    position: relative;
    padding-inline-start: var(--sp-5);
    font-size: var(--fs-sm);
    color: var(--ink-soft);
  }
  .work-card__list li + li { margin-top: var(--sp-2); }
  .work-card__list li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0; top: 0.6em;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--saffron);
  }
  .work-card__link { margin-top: auto; padding-top: var(--sp-5); }
  
  /* Per-cluster accent */
  .work-card--education .work-card__icon { color: var(--navy); background: var(--navy-soft); border-color: var(--surface); }
  .work-card--health .work-card__icon    { color: var(--green); background: var(--green-soft); border-color: var(--surface); }
  .work-card--social .work-card__icon    { color: var(--saffron-dark); background: var(--saffron-soft); border-color: var(--surface); }
  
  /* ============================================================
     FEATURED INITIATIVE — 300 trees
     ============================================================ */
  .featured {
    background: var(--green-deep);
    color: #fff;
    border-radius: var(--r-xl);
    overflow: hidden;
    display: grid;
    gap: 0;
  }
  @media (min-width: 900px) { .featured { grid-template-columns: 1fr 0.9fr; align-items: center; } }
  
  .featured__body { padding: clamp(1.75rem, 1rem + 3vw, 3.25rem); }
  .featured__badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: var(--r-pill);
  }
  .featured__count {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 2rem + 8vw, 6rem);
    line-height: 0.95;
    color: #fff;
    margin-top: var(--sp-4);
  }
  .featured__title {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    text-transform: uppercase;
    color: var(--saffron);
    letter-spacing: 0.02em;
  }
  [data-lang='hi'] .featured__title { font-family: var(--font-deva); text-transform: none; }
  .featured__subtitle {
    font-size: var(--fs-xs);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--sp-2);
  }
  .featured__slogan {
    font-family: var(--font-deva);
    font-size: var(--fs-lg);
    color: #fff;
    margin-top: var(--sp-5);
    padding-inline-start: var(--sp-4);
    border-inline-start: 3px solid var(--saffron);
  }
  .featured__desc { margin-top: var(--sp-4); color: rgba(255, 255, 255, 0.85); font-size: var(--fs-sm); line-height: 1.75; }
  .featured__media .img-slot { border-radius: 0; height: 100%; min-height: 260px; }
  
  /* ============================================================
     EVENTS TEASER
     ============================================================ */
  .events-teaser { background: var(--navy-soft); }
  .events-teaser__head {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    margin-bottom: var(--sp-6);
  }
  @media (min-width: 900px) {
    .events-teaser__head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
    .events-teaser__head .section-head { margin-bottom: 0; }
  }
  
  /* ============================================================
     GALLERY STRIP (Home page)
     ============================================================ */
  .gallery-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 72%;
    gap: var(--sp-4);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: var(--sp-4);
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    scrollbar-width: thin;
  }
  .gallery-strip > * { scroll-snap-align: start; }
  .gallery-strip .img-slot { border-radius: var(--r-md); box-shadow: var(--sh-sm); }
  
  @media (min-width: 640px) { .gallery-strip { grid-auto-columns: 40%; } }
  @media (min-width: 960px) {
    .gallery-strip {
      grid-auto-flow: row;
      grid-template-columns: repeat(4, 1fr);
      overflow: visible;
      margin-inline: 0;
      padding-inline: 0;
    }
  }
  
  /* ============================================================
     PRESS
     ============================================================ */
  .press-card { display: flex; flex-direction: column; height: 100%; }
  .press-card__media .img-slot { border-radius: 0; background: #fff; }
  .press-card__body { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; }
  .press-card__meta {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--saffron-dark);
    margin-bottom: var(--sp-2);
  }
  .press-card__head { font-size: var(--fs-md); line-height: 1.4; }
  .press-card__excerpt { margin-top: var(--sp-3); font-size: var(--fs-sm); color: var(--ink-soft); }
  
  /* Inline note for facts still awaiting confirmation from the client */
  .needs-data {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--saffron-dark);
    background: var(--saffron-soft);
    border: 1px dashed var(--saffron);
    border-radius: var(--r-sm);
    padding: 1px 6px;
    vertical-align: middle;
  }
  
  /* ============================================================
     GET INVOLVED (Home page)
     ============================================================ */
  .involve { background: var(--navy); color: #fff; }
  .involve .section-title { color: #fff; }
  .involve .section-title span + span { color: var(--saffron); }
  .involve .eyebrow { color: var(--saffron); }
  .involve .section-intro { color: rgba(255, 255, 255, 0.78); }
  
  .involve-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-lg);
    padding: var(--sp-5);
    height: 100%;
    transition: background-color 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
  }
  .involve-card:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--saffron); transform: translateY(-5px); }
  .involve-card .icon-badge { background: rgba(240, 124, 34, 0.18); color: var(--saffron); }
  .involve-card__title { color: #fff; font-size: var(--fs-md); margin-bottom: var(--sp-2); }
  .involve-card__text { color: rgba(255, 255, 255, 0.72); font-size: var(--fs-sm); line-height: 1.7; }
  
  .involve__cta { margin-top: var(--sp-7); text-align: center; }
  
  
  /* ============================================================
     ABOUT PAGE
     ============================================================ */
  
  /* ---- Foundation at a glance ------------------------------- */
  .glance {
    display: grid;
    gap: var(--sp-4);
    grid-template-columns: 1fr;
  }
  @media (min-width: 560px) { .glance { grid-template-columns: repeat(2, 1fr); } }
  
  .glance__item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-4);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: var(--sp-4);
  }
  .glance__icon {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    flex: none;
    border-radius: var(--r-md);
    background: var(--saffron-soft);
    color: var(--saffron-dark);
  }
  .glance__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .glance__value { font-weight: 700; color: var(--navy); margin-top: 2px; line-height: 1.4; }
  
  /* ============================================================
     THE MEANING OF PURNA
     The name is the story: पूर्ण = complete, whole, full.
     ============================================================ */
  .purna {
    position: relative;
    isolation: isolate;
    background: linear-gradient(170deg, var(--saffron-soft) 0%, #fff 55%, var(--green-soft) 100%);
    overflow: hidden;
  }
  /* Oversized watermark of the word itself */
  .purna::before {
    content: 'पूर्ण';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-deva);
    font-weight: 800;
    font-size: clamp(16rem, 42vw, 40rem);
    line-height: 1;
    color: var(--navy);
    opacity: 0.035;
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
  }
  
  .purna__word { text-align: center; margin-bottom: var(--sp-7); }
  .purna__deva {
    font-family: var(--font-deva);
    font-weight: 800;
    font-size: clamp(4rem, 2rem + 11vw, 8.5rem);
    line-height: 1;
    color: var(--navy);
    letter-spacing: -0.01em;
  }
  .purna__roman {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--fs-xl);
    color: var(--saffron-dark);
    margin-top: var(--sp-2);
  }
  .purna__gloss {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--sp-2) var(--sp-4);
    margin-top: var(--sp-4);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
  }
  .purna__gloss li { display: flex; align-items: center; gap: var(--sp-4); }
  .purna__gloss li + li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--saffron);
  }
  
  .purna__body { max-width: 62ch; margin-inline: auto; text-align: center; }
  .purna__body p { font-size: var(--fs-md); color: var(--ink-soft); line-height: 1.8; }
  
  /* The Shanti Mantra card */
  .shloka {
    max-width: 46rem;
    margin: var(--sp-7) auto 0;
    background: var(--navy);
    color: #fff;
    border-radius: var(--r-xl);
    padding: clamp(1.75rem, 1rem + 3vw, 3rem);
    text-align: center;
    position: relative;
    box-shadow: var(--sh-lg);
  }
  .shloka::before {
    content: '';
    position: absolute;
    inset-inline: 22%;
    top: 0;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  }
  .shloka__sanskrit {
    font-family: var(--font-deva);
    font-size: var(--fs-lg);
    line-height: 2;
    color: #fff;
  }
  .shloka__translit {
    margin-top: var(--sp-4);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
  }
  .shloka__meaning {
    margin-top: var(--sp-5);
    padding-top: var(--sp-5);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-family: var(--font-serif);
    font-size: var(--fs-md);
    line-height: 1.7;
    color: var(--saffron);
  }
  [data-lang='hi'] .shloka__meaning { font-family: var(--font-deva); }
  .shloka__source {
    margin-top: var(--sp-4);
    font-size: var(--fs-xs);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
  }
  
  /* Three ways the name becomes practice */
  .purna__facets { margin-top: var(--sp-7); }
  .purna-facet {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(6px);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--sp-5);
    text-align: center;
    height: 100%;
  }
  .purna-facet .icon-badge { margin-inline: auto; }
  .purna-facet__title { font-size: var(--fs-md); margin-bottom: var(--sp-2); }
  .purna-facet__text { font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.7; }
  
  /* ============================================================
     CHAIRPERSON'S MESSAGE
     ============================================================ */
  .message__grid { display: grid; gap: var(--sp-6); }
  @media (min-width: 960px) {
    .message__grid { grid-template-columns: 0.72fr 1fr; gap: var(--sp-8); align-items: start; }
    .message__aside { position: sticky; top: calc(var(--header-h) + var(--sp-5)); }
  }
  
  .message__quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--fs-lg);
    color: var(--navy);
    margin-bottom: var(--sp-5);
  }
  [data-lang='hi'] .message__quote { font-family: var(--font-deva); font-style: normal; }
  
  .message__body p { color: var(--ink-soft); line-height: 1.85; }
  .message__body p:first-of-type { font-weight: 600; color: var(--navy); }
  .message__body strong { color: var(--navy); }
  .message__close {
    margin-top: var(--sp-5);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--line);
    font-weight: 700;
    color: var(--navy);
    font-size: var(--fs-md);
  }
  
  .signature { margin-top: var(--sp-5); text-align: center; }
  .signature .img-slot {
    max-width: 240px;
    margin: 0 auto var(--sp-3);
    background: none;
  }
  .signature__rule { width: 180px; height: 1px; background: var(--line); margin: 0 auto var(--sp-3); }
  
  /* ============================================================
     VISION & MISSION
     ============================================================ */
  .vm { display: grid; gap: var(--sp-5); }
  @media (min-width: 860px) { .vm { grid-template-columns: 1fr 1fr; } }
  
  .vm-card {
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    height: 100%;
    border: 1px solid var(--line);
  }
  .vm-card--vision  { background: var(--navy-soft); }
  .vm-card--mission { background: var(--saffron-soft); }
  
  .vm-card__head {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    background: var(--navy);
    color: #fff;
    border-radius: var(--r-pill);
    padding: 0.45rem 1.25rem 0.45rem 0.45rem;
    margin-bottom: var(--sp-4);
  }
  .vm-card--mission .vm-card__head { background: var(--saffron); }
  .vm-card__head-icon {
    display: grid;
    place-items: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    flex: none;
  }
  .vm-card__head-text {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .vm-card__text { font-size: var(--fs-md); line-height: 1.8; color: var(--ink); }
  
  /* ============================================================
     GUIDING PRINCIPLES
     ============================================================ */
  .principle { text-align: center; padding: var(--sp-4) var(--sp-2); }
  .principle .icon-badge { margin-inline: auto; }
  .principle__title {
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--saffron-dark);
    margin-bottom: var(--sp-2);
  }
  [data-lang='hi'] .principle__title { letter-spacing: 0; text-transform: none; font-size: var(--fs-md); }
  .principle__text { font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.7; }
  
  .principles-grid {
    display: grid;
    gap: var(--sp-5);
    grid-template-columns: repeat(2, 1fr);
  }
  @media (min-width: 720px)  { .principles-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 1040px) { .principles-grid { grid-template-columns: repeat(4, 1fr); } }
  
  /* ============================================================
     HOW OUR WORK IS SUSTAINED (About page)
     ============================================================ */
  .approach { background: var(--navy); color: #fff; }
  .approach .section-title { color: #fff; }
  .approach .section-title span + span { color: var(--saffron); }
  .approach .eyebrow { color: var(--saffron); }
  .approach .section-intro { color: rgba(255, 255, 255, 0.78); }
  /* the default middle dot is navy — invisible on the navy band */
  .approach .divider-dots i:nth-child(2) { background: #fff; }
  
  .approach__flow {
    display: grid;
    gap: var(--sp-5);
    grid-template-columns: 1fr;
    counter-reset: step;
  }
  @media (min-width: 800px) { .approach__flow { grid-template-columns: repeat(3, 1fr); } }
  
  .approach-step {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-lg);
    padding: var(--sp-6) var(--sp-5) var(--sp-5);
    height: 100%;
  }
  .approach-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: 0; left: var(--sp-5);
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--saffron);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.05rem;
  }
  .approach-step__title { color: #fff; font-size: var(--fs-md); margin-bottom: var(--sp-2); }
  .approach-step__text { color: #fff; font-size: var(--fs-sm); line-height: 1.7; }
  
  .approach__note {
    margin-top: var(--sp-6);
    padding: var(--sp-5);
    border-radius: var(--r-lg);
    background: rgba(240, 124, 34, 0.12);
    border: 1px solid rgba(240, 124, 34, 0.35);
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--fs-sm);
    line-height: 1.75;
  }
  .approach__note strong { color: var(--saffron); }
  
  /* ============================================================
     AREAS OF WORK — 11 pillars
     ============================================================ */
  .pillars {
    display: grid;
    gap: var(--sp-4);
    grid-template-columns: repeat(2, 1fr);
  }
  @media (min-width: 620px)  { .pillars { grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 980px)  { .pillars { grid-template-columns: repeat(4, 1fr); } }
  
  .pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: var(--sp-5) var(--sp-3);
    text-decoration: none;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  }
  .pillar:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--saffron); }
  .pillar__icon {
    display: grid;
    place-items: center;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--navy-soft);
    color: var(--navy);
    flex: none;
  }
  .pillar:nth-child(3n+2) .pillar__icon { background: var(--saffron-soft); color: var(--saffron-dark); }
  .pillar:nth-child(3n+3) .pillar__icon { background: var(--green-soft);   color: var(--green); }
  .pillar__label { font-size: var(--fs-sm); font-weight: 600; color: var(--navy); line-height: 1.4; }
  
  /* ============================================================
     CREDENTIALS  (hidden behind SHOW_TAX_EXEMPTION)
     ============================================================ */
  .credentials__grid {
    display: grid;
    gap: var(--sp-4);
    grid-template-columns: repeat(2, 1fr);
  }
  @media (min-width: 800px) { .credentials__grid { grid-template-columns: repeat(4, 1fr); } }
  
  .credential {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: var(--sp-5) var(--sp-3);
  }
  .credential .icon-badge { margin-inline: auto; width: 48px; height: 48px; }
  .credential__label { font-size: var(--fs-sm); font-weight: 700; color: var(--navy); line-height: 1.4; }
  
  /* ---- CTA band -------------------------------------------- */
  .cta-band { background: var(--saffron-soft); }
  .cta-band__inner { text-align: center; max-width: 46rem; margin-inline: auto; }
  .cta-band__title { font-size: var(--fs-2xl); font-family: var(--font-display); text-transform: uppercase; }
  [data-lang='hi'] .cta-band__title { font-family: var(--font-deva); text-transform: none; }
  .cta-band__text { margin-top: var(--sp-4); color: var(--ink-soft); font-size: var(--fs-md); }
  .cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; margin-top: var(--sp-6); }
  
  
  /* ============================================================
     OUR WORK PAGE — Gallery & Stats
     ============================================================ */
  
  /* ---- Quick stats block ------------------------------------ */
  .work-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
    padding: var(--sp-5);
    background: var(--surface);
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    box-shadow: var(--sh-sm);
  }
  
  .work-stat {
    text-align: center;
  }
  
  .work-stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    color: var(--saffron);
    line-height: 1;
  }
  
  .work-stat__label {
    display: block;
    margin-top: var(--sp-2);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  
  @media (min-width: 640px) {
    .work-stats {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  /* ---- Gallery grid — Images Only --------------------------- */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--sp-5);
  }
  
  .gallery-item {
    background: var(--surface);
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  }
  
  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-md);
  }
  
  .gallery-item .img-slot {
    border-radius: 0;
  }
  
  @media (max-width: 480px) {
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-3);
    }
  }
  
  /* ---- Pagination ------------------------------------------- */
  .gallery-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-4);
    margin-top: var(--sp-7);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--line);
  }
  
  .pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 0.6rem 1.2rem;
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--navy);
    background: var(--surface);
    border: 1px solid var(--line);
    transition: background-color 0.25s var(--ease), color 0.25s var(--ease), opacity 0.25s var(--ease);
  }
  
  .pagination-btn:hover:not(:disabled) {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
  }
  
  .pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }
  
  .pagination-info {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--ink-soft);
    min-width: 80px;
    text-align: center;
  }
  
  @media (max-width: 480px) {
    .pagination-btn {
      padding: 0.4rem 0.8rem;
      font-size: 0.75rem;
    }
  }

/* ============================================================
   EVENTS PAGE
   ============================================================ */

/* ---- Coming Soon ------------------------------------------- */
.coming-soon {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
  background: var(--surface);
  border: 2px dashed var(--saffron);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  box-shadow: var(--sh-sm);
}

.coming-soon__icon {
  color: var(--saffron);
  opacity: 0.7;
  margin-bottom: var(--sp-4);
}

.coming-soon__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--navy);
  margin-bottom: var(--sp-3);
}

[data-lang='hi'] .coming-soon__title {
  font-family: var(--font-deva);
  text-transform: none;
}

.coming-soon__text {
  font-size: var(--fs-md);
  color: var(--ink-soft);
  max-width: 36rem;
  margin-inline: auto;
  line-height: 1.7;
}

.coming-soon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin-top: var(--sp-6);
}

/* ---- Past Event Detail — FIXED LAYOUT --------------------- */
.event-detail {
  max-width: 72rem;
  margin-inline: auto;
}

.event-detail__grid {
  display: grid;
  gap: 0;
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--sh-md);
}

@media (min-width: 900px) {
  .event-detail__grid {
    grid-template-columns: 340px 1fr;
  }
}

.event-detail__media {
  position: relative;
  background: var(--navy-soft);
  overflow: hidden;
}

.event-detail__media .img-slot {
  border-radius: 0;
  height: 100%;
  min-height: 400px;
  aspect-ratio: auto;
}

.event-detail__media .img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-detail__badge {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
  z-index: 2;
}

@media (max-width: 899px) {
  .event-detail__media .img-slot {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .event-detail__media .img-slot {
    min-height: 200px;
  }
}

.event-detail__body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  overflow: hidden;
}

@media (min-width: 900px) {
  .event-detail__body {
    padding: var(--sp-7);
  }
}

/* ---- Event Header ----------------------------------------- */
.event-detail__header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.event-detail__association {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin: 0;
}

.event-detail__association strong {
  color: var(--navy);
  font-weight: 700;
}

.event-detail__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}

[data-lang='hi'] .event-detail__title {
  font-family: var(--font-deva);
  text-transform: none;
}

.event-detail__subtitle {
  font-size: var(--fs-md);
  color: var(--saffron-dark);
  font-weight: 600;
  margin: 0;
}

/* ---- Event Meta ------------------------------------------- */
.event-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  padding-block: var(--sp-4);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--ink-soft);
}

.event-meta-item svg {
  color: var(--saffron);
  flex: none;
}

/* ---- Thank You Message ------------------------------------ */
.event-detail__message {
  background: var(--navy-soft);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  border-left: 4px solid var(--saffron);
}

.thankyou-message {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.thankyou-message__mark {
  color: var(--saffron);
  flex: none;
  margin-top: 2px;
}

.thankyou-message__text {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin: 0;
}

[data-lang='hi'] .thankyou-message__text {
  font-family: var(--font-deva);
  font-style: normal;
}

/* ---- Cause ------------------------------------------------ */
.event-detail__cause {
  background: var(--saffron-soft);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  text-align: center;
}

.event-detail__cause-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron-dark);
  background: rgba(240, 124, 34, 0.2);
  padding: 0.2rem 0.7rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-2);
}

.event-detail__cause-text {
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  margin: 0;
}

.event-detail__cause-text strong {
  display: block;
  font-size: var(--fs-md);
  color: var(--navy);
  margin-bottom: var(--sp-1);
}

/* ---- Event Footer ----------------------------------------- */
.event-detail__footer {
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
}

.event-detail__footer-text {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin: 0;
}

[data-lang='hi'] .event-detail__footer-text {
  font-family: var(--font-deva);
}

/* ---- Responsive Fixes ------------------------------------- */
@media (max-width: 899px) {
  .event-detail__grid {
    grid-template-columns: 1fr;
  }

  .event-detail__media .img-slot {
    min-height: 280px;
  }

  .event-detail__badge {
    top: var(--sp-3);
    right: var(--sp-3);
    font-size: 0.6rem;
    padding: 0.3rem 0.8rem;
  }

  .thankyou-message {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .event-detail__body {
    padding: var(--sp-4);
  }

  .event-detail__title {
    font-size: var(--fs-xl);
  }

  .event-detail__meta {
    flex-direction: column;
    gap: var(--sp-2);
  }

  .event-detail__media .img-slot {
    min-height: 200px;
  }

  .coming-soon {
    padding: var(--sp-5) var(--sp-4);
  }
}

/* ============================================================
   GET INVOLVED PAGE
   ============================================================ */

/* ---- Support Cards ----------------------------------------- */
.support-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--saffron);
}

.support-card__icon {
  margin-inline: auto;
  margin-bottom: var(--sp-4);
}

.support-card__title {
  font-size: var(--fs-md);
  color: var(--navy);
  margin-bottom: var(--sp-2);
}

.support-card__text {
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.support-card__link {
  font-weight: 600;
  color: var(--saffron-dark);
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: color 0.2s var(--ease);
}

.support-card__link:hover {
  color: var(--navy);
}

/* ---- Forms ------------------------------------------------ */
.involve-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6);
  box-shadow: var(--sh-sm);
}

@media (min-width: 768px) {
  .involve-form {
    padding: var(--sp-8);
  }
}

.form-grid {
  display: grid;
  gap: var(--sp-4);
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(240, 124, 34, 0.15);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
  padding: var(--sp-3);
  background: var(--bg);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}

@media (min-width: 640px) {
  .checkbox-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--ink-soft);
  cursor: pointer;
}

.checkbox-grid input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--saffron);
  cursor: pointer;
  flex: none;
}

.form-actions {
  margin-top: var(--sp-6);
  text-align: center;
}

.form-note {
  margin-top: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--muted);
}

.form-fallback {
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--ink-soft);
}

/* ---- Donate Section ---------------------------------------- */
.donate-section {
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  padding: var(--sp-6);
  box-shadow: var(--sh-sm);
}

@media (min-width: 768px) {
  .donate-section {
    padding: var(--sp-8);
  }
}

.donate-grid {
  display: grid;
  gap: var(--sp-6);
}

@media (min-width: 768px) {
  .donate-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.donate-section__title {
  font-size: var(--fs-md);
  color: var(--navy);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--saffron);
}

.donate-detail {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--line);
}

.donate-detail:last-of-type {
  border-bottom: none;
}

.donate-detail__label {
  font-size: var(--fs-sm);
  color: var(--muted);
}

.donate-detail__value {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
}

.donate-qr {
  margin-top: var(--sp-4);
  text-align: center;
}

.donate-qr .img-slot {
  max-width: 200px;
  margin-inline: auto;
}

.donate-qr__note {
  margin-top: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--muted);
}

.donate-tax {
  margin-top: var(--sp-5);
  padding: var(--sp-4);
  background: var(--green-soft);
  border-radius: var(--r-md);
  border-left: 4px solid var(--green);
}

.donate-tax__text {
  font-size: var(--fs-sm);
  color: var(--navy);
  margin: 0;
}

/* ---- Donate Pending State ---------------------------------- */
.donate-pending {
  text-align: center;
  padding: var(--sp-7) var(--sp-5);
  background: var(--surface);
  border: 2px dashed var(--line);
  border-radius: var(--r-xl);
}

.donate-pending__icon {
  color: var(--saffron);
  opacity: 0.7;
  margin-bottom: var(--sp-4);
}

.donate-pending__title {
  font-size: var(--fs-lg);
  color: var(--navy);
  margin-bottom: var(--sp-3);
}

.donate-pending__text {
  font-size: var(--fs-md);
  color: var(--ink-soft);
  max-width: 36rem;
  margin-inline: auto;
  line-height: 1.7;
}

.donate-pending .btn {
  margin-top: var(--sp-5);
}

/* ---- Contact Section --------------------------------------- */
.contact-grid {
  display: grid;
  gap: var(--sp-6);
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.contact-info__title {
  font-size: var(--fs-lg);
  color: var(--navy);
  margin-bottom: var(--sp-2);
}

.contact-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.contact-item svg {
  color: var(--saffron);
  flex: none;
  margin-top: 2px;
}

.contact-item__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-item__value {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
}

.contact-item__value a {
  color: var(--navy);
  text-decoration: none;
}

.contact-item__value a:hover {
  color: var(--saffron-dark);
}

.contact-item__detail {
  font-size: var(--fs-sm);
  color: var(--ink-soft);
}

.contact-social {
  margin-top: var(--sp-2);
}

.contact-social__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-3);
}

.contact-social__links {
  display: flex;
  gap: var(--sp-3);
}

.contact-social__links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-soft);
  color: var(--navy);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.contact-social__links a:hover {
  background: var(--saffron);
  color: #fff;
  transform: translateY(-3px);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--sh-sm);
}

@media (min-width: 768px) {
  .contact-form {
    padding: var(--sp-7);
  }
}

.contact-form__title {
  font-size: var(--fs-lg);
  color: var(--navy);
  margin-bottom: var(--sp-4);
}

.contact-form .form-group {
  margin-bottom: var(--sp-4);
}

/* ---- Map Section ------------------------------------------- */
.map-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-wrapper iframe {
  display: block;
}

.map-address {
  text-align: center;
  padding: var(--sp-4);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
  background: var(--surface);
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ---- FAQ Accordion ----------------------------------------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 48rem;
  margin-inline: auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}

.faq-item:hover {
  border-color: var(--saffron);
}

.faq-item[open] {
  border-color: var(--saffron);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background-color 0.25s var(--ease);
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--saffron);
  transition: transform 0.3s var(--ease);
  flex: none;
  margin-left: var(--sp-3);
}

.faq-item[open] .faq-item__question::after {
  content: '−';
}

.faq-item__question:hover {
  background: var(--navy-soft);
}

.faq-item__answer {
  padding: 0 var(--sp-5) var(--sp-5) var(--sp-5);
  color: var(--ink-soft);
  font-size: var(--fs-sm);
  line-height: 1.8;
}

.faq-item__answer p {
  margin: 0;
}

.faq-item__answer a {
  color: var(--saffron-dark);
  text-decoration: none;
}

.faq-item__answer a:hover {
  color: var(--navy);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .faq-item__question {
    font-size: var(--fs-sm);
    padding: var(--sp-3) var(--sp-4);
  }

  .faq-item__answer {
    padding: 0 var(--sp-4) var(--sp-4) var(--sp-4);
  }

  .support-card {
    padding: var(--sp-4);
  }

  .involve-form {
    padding: var(--sp-4);
  }

  .donate-section {
    padding: var(--sp-4);
  }

  .checkbox-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form {
    padding: var(--sp-4);
  }
}