/* ═══════════════════════════
   TOKENS — SouthAsia-IEN BRAND EXACT
═══════════════════════════ */
:root {
  /* BRAND PALETTE — locked per SouthAsia-IEN Brand Guidelines v2
     Primary green: #0E4F06 · Canopy Teal: #1B6B58 · Terracotta Rust: #A04935 · Warm Mist: #EEECEA */

  /* Brand Greens */
  --forest:        #0E4F06;   /* primary brand green */
  --forest-dk:     #062E03;   /* darker shade for hovers */
  --forest-md:     #1A6E0E;   /* medium green */
  --forest-lt:     #2D8F1F;   /* brighter accent green (legible on dark) */
  --forest-pl:     #D5E8CC;   /* very pale green tint */
  --canopy-teal:   #1B6B58;   /* Brand: Canopy Teal — secondary accent */
  --teal:          #1B6B58;   /* alias — Canopy Teal */
  --teal-lt:       #DFE9D7;   /* Brand: Canopy Mist — pale sage */
  --canopy-mist:   #DFE9D7;   /* Brand: Canopy Mist */

  /* Brand Warm Tones */
  --amber:              #A04935;   /* Brand: Terracotta Rust — primary warm accent */
  --amber-dk:           #7E372A;   /* Brand: Mahogany — deep warm */
  --amber-lt:           #F0E0D6;   /* Brand: Terracotta Blush — pale warm tint */
  --harvest-gold:       #C4882A;   /* Brand: Harvest Gold — secondary warm accent */
  --mahogany:           #6D2318;   /* Brand: Mahogany — deepest warm */
  --terracotta-blush:   #F0E0D6;   /* Brand: Terracotta Blush */
  --amber-haze:         #F8EDD8;   /* Brand: Amber Haze — warmest pale tint */
  --red:       #A04935;
  --red-lt:    #F0E0D6;
  --rust:      #A04935;
  --rust-dk:   #7E372A;
  --rust-lt:   #F0E0D6;

  /* Brand Neutrals — warm greys */
  --warm-charcoal:  #2C2825;   /* Brand: Warm Charcoal — primary text */
  --ink:            #2C2825;   /* alias — Warm Charcoal */
  --charcoal:       #3A3D38;   /* dark warm grey */
  --sandstone:      #7A6D64;   /* Brand: Sandstone — secondary text */
  --stone:          #7A6D64;   /* alias — Sandstone */
  --mist:           #9C9087;   /* lighter warm grey for meta text */
  --divider-stone:  #D8D4CF;   /* Brand: Divider Stone — borders/dividers */
  --pearl:          #EEECEA;   /* Brand: Warm Mist — primary background */
  --linen:          #F5F3F1;   /* slight lift from pearl */
  --white:          #FFFFFF;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;   /* Brand: primary display typeface */
  --font-body:    'DM Sans', system-ui, sans-serif;          /* Brand: body/UI typeface */

  --nav-h: 72px;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
}

/* ═══════════════════════════
   RESET + BASE
═══════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
/* keep in-page anchor jumps clear of the sticky header */
section[id], [id].anchor-offset { scroll-margin-top: 92px; }
body { font-family: var(--font-body); background: var(--white); color: var(--ink); overflow-x: clip; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ═══════════════════════════════════════
   STICKY HEADER WRAPPER
   The <header id="site-header"> sticks as
   a single unit so both the announcement
   bar and the nav stay pinned together.
═══════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ═══════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════ */
.anno-bar {
  background: var(--forest);
  color: rgba(255,255,255,.9);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.anno-pill { background: var(--amber); color: var(--white); font-weight: 700; font-size: 10px; padding: 3px 10px; border-radius: 20px; letter-spacing: .08em; text-transform: uppercase; flex-shrink: 0; }
.anno-dot { width: 6px; height: 6px; background: var(--rust-lt); border-radius: 50%; flex-shrink: 0; animation: glow 2s infinite; }
@keyframes glow { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
@keyframes spin  { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
/* Rust accent on the dark-green announcement bar — light-rust for AA contrast */
.anno-link { color: var(--rust-lt); font-weight: 700; border-bottom: 1px solid rgba(242,224,218,.45); transition: border-color .15s; }
.anno-link:hover { border-color: var(--rust-lt); }
.anno-hide { display: inline; }

/* ═══════════════════════════
   TOP NAV — HORIZONTAL ONLY
═══════════════════════════ */
.topnav {
  position: relative;
  z-index: 2;
  /* ── Floating pill ── */
  margin: 6px 16px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  height: var(--nav-h);
  border: 1px solid rgba(255,255,255,.60);
  display: flex;
  align-items: center;
  padding: 0 1.75rem;
  gap: 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 2px 8px rgba(0,0,0,.04),
    0 8px 32px rgba(0,0,0,.09);
}
.logo { display: flex; align-items: center; gap: 13px; flex-shrink: 0; margin-right: 2rem; cursor: pointer; text-decoration: none; }
.logo-mark {
  width: 53px; height: 53px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  transition: transform .25s ease;
}
.logo:hover .logo-mark { transform: rotate(8deg) scale(1.04); }
.logo-words { line-height: 1.15; }
.logo-words strong { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--rust); letter-spacing: .01em; }
.logo-words span { display: block; font-size: 11.5px; font-weight: 700; color: var(--stone); letter-spacing: .055em; text-transform: uppercase; margin-top: 2px; }

.nav-items { display: flex; align-items: center; flex: 1; gap: 0; overflow: visible; }
.nav-items::-webkit-scrollbar { height: 0; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0 13px; height: var(--nav-h);
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  color: var(--charcoal); white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-link:hover, .nav-link.active { color: var(--forest); }
.nav-link.active { border-bottom-color: var(--forest); }
.nav-link.shop-hl { color: var(--amber-dk); }
.nav-link.shop-hl:hover { color: var(--amber); }
.nav-chevron { font-size: 9px; opacity: .5; transition: transform .2s; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(var(--nav-h) - 2px); left: 0;
  min-width: 240px; background: var(--white);
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(27,67,50,.08);
  border-top: 3px solid var(--forest);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .2s ease; z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dd-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px; font-size: 13px; font-weight: 500; color: var(--charcoal);
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: all .12s; cursor: pointer;
}
.dd-item:last-child { border-bottom: none; }
.dd-item:hover { background: var(--teal-lt); color: var(--forest); padding-left: 22px; }
.dd-icon { font-size: 14px; width: 20px; text-align: center; flex-shrink: 0; }

/* ══════════════════════════════════════════
   MEMBERSHIP DROPDOWN — Minimal / Premium
══════════════════════════════════════════ */
.mem-anchor { position: relative; }

.mem-drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 196px;
  background: #0d1c0b;
  border-radius: 13px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 4px 16px rgba(0,0,0,.22),
    0 16px 48px rgba(0,0,0,.28);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity .2s cubic-bezier(.22,.68,0,1.1),
    transform .2s cubic-bezier(.22,.68,0,1.1),
    visibility 0s .2s;
  z-index: 200;
}
.nav-item.mem-anchor:hover .mem-drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition:
    opacity .2s cubic-bezier(.22,.68,0,1.1),
    transform .2s cubic-bezier(.22,.68,0,1.1),
    visibility 0s;
}
.mem-drop-item {
  display: block;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: .005em;
}
.mem-drop-item + .mem-drop-item { border-top: 1px solid rgba(255,255,255,.05); }
.mem-drop-item:hover {
  background: rgba(255,255,255,.07);
  color: #fff;
}

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: .5rem; }
.btn-ghost {
  padding: 8px 16px; border: 1.5px solid var(--forest); border-radius: 22px;
  font-size: 13px; font-weight: 700; color: var(--forest); background: transparent;
  transition: all .15s; white-space: nowrap;
}
.btn-ghost:hover { background: var(--forest); color: var(--white); }
.btn-solid {
  padding: 9px 20px; background: var(--amber); border: none; border-radius: 22px;
  font-size: 13.5px; font-weight: 700; color: var(--white);
  transition: all .15s; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(160,73,53,.35);
}
.btn-solid:hover { background: var(--amber-dk); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(160,73,53,.4); }

.hbg { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; border: none; background: none; border-radius: var(--r-sm); padding: 9px; flex-shrink: 0; }
.hbg span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.hbg.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hbg.open span:nth-child(2) { opacity: 0; }
.hbg.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-join-btn { display: none; padding: 8px 16px; background: var(--amber); border: none; border-radius: 20px; font-size: 13px; font-weight: 700; color: var(--ink); margin-right: 8px; }

.mob-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 997;
  overflow-y: auto;
  /* content clears the floating nav (anno ~41px + margin 6px + nav 72px + margin 10px = 129px) */
  padding-top: calc(var(--nav-h) + 70px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .28s cubic-bezier(.4,0,.2,1), transform .28s cubic-bezier(.4,0,.2,1), visibility 0s .28s;
}
.mob-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
  transition: opacity .28s cubic-bezier(.4,0,.2,1), transform .28s cubic-bezier(.4,0,.2,1), visibility 0s;
}
.mm-top { display: flex; gap: 10px; padding: 20px; }
.mm-top a { flex: 1; padding: 14px; border: none; border-radius: 24px; font-family: var(--font-body); font-size: 14px; font-weight: 700; cursor: pointer; text-align: center; }
.mm-cta-p { background: var(--amber); color: var(--ink); }
.mm-cta-s { background: var(--teal-lt); color: var(--forest); }
.mm-divider { height: 6px; background: var(--pearl); }
.mm-list { padding: 12px 20px; }
.mm-section-title { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); padding: 12px 0 6px; }
.mm-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--pearl); font-size: 15px; font-weight: 600; color: var(--ink); cursor: pointer; transition: color .12s; }
.mm-row:last-child { border-bottom: none; }
.mm-row:hover { color: var(--forest); }
.mm-row.hl { color: var(--amber-dk); font-weight: 700; }
.mm-ri { font-size: 17px; width: 22px; text-align: center; flex-shrink: 0; }

/* ═══════════════════════════
   SHARED SECTION ATOMS
═══════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
.eyebrow { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .65rem; }
.ey-amber { color: var(--amber-dk); }
.ey-teal  { color: var(--forest-md); }
.ey-green { color: var(--forest); }
.ey-white { color: rgba(255,255,255,.65); }

/* On dark backgrounds rust-dark fails AA — swap eyebrow to light rust.
   Heroes are now light Amber Haze, so they keep the standard dark eyebrow. */
.bg-ink .ey-amber, .bg-forest .ey-amber,
.summit-band .ey-amber, .summit-full .ey-amber { color: var(--rust-lt); }
.bg-ink .ey-teal, .bg-forest .ey-teal,
.summit-band .ey-teal { color: #8FD675; }
.section-heading { font-family: var(--font-display); font-weight: 500; line-height: 1.1; margin-bottom: .75rem; letter-spacing: -.01em; }
.sh-xl  { font-size: 3.2rem; }
.sh-lg  { font-size: 2.6rem; }
.sh-md  { font-size: 2rem; }
.sh-sm  { font-size: 1.6rem; }
.sh-ink { color: var(--ink); }
.sh-white { color: var(--white); }
.rule { width: 44px; height: 3px; border-radius: 2px; margin: .5rem 0 2rem; }
.rule-amber { background: var(--amber); }
.rule-teal  { background: var(--teal); }
.rule-green { background: var(--forest); }
.rule-white { background: rgba(255,255,255,.4); }
.lead { font-size: 15.5px; line-height: 1.8; color: var(--stone); max-width: 620px; margin-bottom: 2.5rem; }
.lead-light { color: rgba(255,255,255,.7); }
.lead-center { text-align: center; margin-left: auto; margin-right: auto; }

.pad-lg  { padding: 5.5rem 3rem; }
.pad-md  { padding: 4rem 3rem; }
.pad-sm  { padding: 2.5rem 3rem; }
.bg-white  { background: var(--white); }
.bg-pearl  { background-color: var(--pearl); background-image: url('wallpapers/bandhani-divider-stone.png'); background-size: cover; background-position: center; }
.bg-linen  { background: var(--linen); }
.bg-forest { background: var(--forest); }
.bg-ink    { background-color: var(--ink); background-image: url('wallpapers/ajrak-midnight-charcoal.png'); background-size: cover; background-position: center; }
.bg-teal-lt{ background: var(--teal-lt); }

.cta-amber { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; background: var(--amber); border: none; border-radius: 30px; font-size: 14.5px; font-weight: 700; color: var(--white); transition: all .18s; cursor: pointer; box-shadow: 0 2px 10px rgba(160,73,53,.3); text-decoration: none; }
.cta-amber:hover { background: var(--amber-dk); transform: translateY(-1px); box-shadow: 0 5px 20px rgba(160,73,53,.4); }
.cta-outline-w { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: transparent; border: 1.5px solid rgba(255,255,255,.4); border-radius: 30px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9); transition: all .18s; cursor: pointer; }
.cta-outline-w:hover { border-color: rgba(255,255,255,.85); background: rgba(255,255,255,.08); }
.cta-outline-g { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; background: transparent; border: 1.5px solid var(--forest); border-radius: 30px; font-size: 14px; font-weight: 600; color: var(--forest); transition: all .18s; cursor: pointer; }
.cta-outline-g:hover { background: var(--forest); color: var(--white); }

/* The heroes are now light Amber Haze — white-outline CTAs would vanish there,
   so give them a Forest Green outline. The green summit band keeps the white one. */
.hero .cta-outline-w, .page-hero .cta-outline-w, .about-wrap .cta-outline-w {
  border-color: rgba(14,79,6,.4); color: var(--forest); background: rgba(255,255,255,.4);
}
.hero .cta-outline-w:hover, .page-hero .cta-outline-w:hover, .about-wrap .cta-outline-w:hover {
  border-color: var(--forest); background: rgba(14,79,6,.07);
}

/* HERO — light Amber Haze textile carousel (see hero-carousel.js) */
.hero { background: var(--amber-haze); min-height: 580px; padding: 5.5rem 3rem 4.5rem; position: relative; overflow: hidden; display: flex; align-items: center; }
.hero-orb-1 { position: absolute; right: -80px; top: -80px; width: 520px; height: 520px; border-radius: 50%; border: 1px solid rgba(82,183,136,.1); pointer-events: none; }
.hero-orb-2 { position: absolute; right: 60px; top: 60px; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(82,183,136,.07); pointer-events: none; }
.hero-glow { position: absolute; right: 10%; top: 20%; width: 400px; height: 400px; background: radial-gradient(ellipse, rgba(82,183,136,.08) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(14,79,6,.07); border: 1px solid rgba(14,79,6,.2); border-radius: 20px; padding: 6px 14px; font-size: 12px; font-weight: 600; color: var(--forest); letter-spacing: .03em; margin-bottom: 1.75rem; width: fit-content; }
.hero-tag::before { content: ''; display: none; }
.hero h1 { font-family: var(--font-display); font-weight: 500; font-size: 4rem; line-height: 1.05; color: var(--forest); margin-bottom: 1.5rem; max-width: 680px; letter-spacing: -.01em; }
.hero h1 em  { color: var(--amber); font-style: normal; }
.hero h1 b   { color: var(--teal); }
.hero-sub { font-size: 16.5px; line-height: 1.75; color: var(--warm-charcoal); max-width: 580px; margin-bottom: 2.75rem; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; gap: 2.5rem; border-top: 1px solid rgba(44,40,37,.16); padding-top: 2.25rem; flex-wrap: wrap; }
.hstat strong { display: block; font-family: var(--font-body); font-size: 2.25rem; font-weight: 700; color: var(--forest); line-height: 1; }
.hstat span { display: block; font-size: 11px; color: var(--stone); margin-top: 5px; letter-spacing: .04em; }
.hero-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 340px; flex-shrink: 0; }
.mosaic-cell { border-radius: 14px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; font-size: 40px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.mosaic-cell:nth-child(1) { height: 140px; background: linear-gradient(135deg, rgba(45,143,31,.18), rgba(14,79,6,.25)); }
.mosaic-cell:nth-child(2) { height: 140px; margin-top: 20px; background: linear-gradient(135deg, rgba(160,73,53,.18), rgba(14,79,6,.18)); }
.mosaic-cell:nth-child(3) { height: 140px; margin-top: -20px; background: linear-gradient(135deg, rgba(14,79,6,.25), rgba(45,143,31,.14)); }
.mosaic-cell:nth-child(4) { height: 140px; background: linear-gradient(135deg, rgba(160,73,53,.14), rgba(45,143,31,.18)); }
.mosaic-label { position: absolute; bottom: 8px; left: 10px; right: 10px; font-size: 9px; font-weight: 600; color: rgba(255,255,255,.82); letter-spacing: .04em; text-transform: uppercase; }

/* ── HOME-HERO LAYOUT (home page only) — two columns over the mandala
   wallpaper, a full-width divider, then a two-column row of stats +
   per-slide pattern caption. The mandala itself lives in the carousel
   image; the right column carries only the captions. */
.hero-inner { display: flex; flex-direction: column; gap: 2.25rem; }
.hero-top    { display: grid; grid-template-columns: 1.08fr 1fr; gap: 3rem; align-items: stretch; }
.hero-bottom { display: grid; grid-template-columns: 1.45fr 1fr; gap: 2.5rem; align-items: center; padding-top: 1.5rem; }
.hero .hero-stats { gap: 1.9rem; }
.hero-left   { display: flex; flex-direction: column; }
.hero-right  { display: flex; flex-direction: column; justify-content: flex-end; align-items: center; min-height: 320px; padding: 0 1rem; }
.hero .hero-btns   { margin-bottom: 0; }
.hero .hero-stats  { border-top: none; padding-top: 0; }
.hero-divider {
  width: 100%; height: 1px; background: rgba(44,40,37,.18);
  margin: .5rem 0 0;
}
.hero-mandala-cap {
  font-family: var(--font-display);
  font-weight: 600; font-style: italic;
  font-size: 17.5px; line-height: 1.55;
  /* matches the enhanced (denser-dot) pattern colour, deepened a touch */
  color: #6F5436;
  text-align: center;
  max-width: 460px;
  margin: 0;
}
.hero-pattern-cap {
  font-size: 13.5px; line-height: 1.7;
  color: var(--amber);
  font-style: italic;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  /* Lock height so the carousel's three captions don't change the hero's
     overall height (which would otherwise drift the cover-scaled mandala
     between slides). 130px fits the longest caption (Bandhani) with the
     pattern name now on its own line above the description. */
  min-height: 130px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero-pattern-cap strong {
  display: block;
  font-style: normal; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  font-size: 12.5px;
  margin-bottom: 6px;
}
@media (max-width: 900px) {
  .hero-top, .hero-bottom { grid-template-columns: 1fr; }
  .hero-right { min-height: 0; padding-top: 1rem; }
  .hero-mandala-cap { font-size: 15px; }
}

/* PAGE HERO (slim banner used by secondary pages) — light Amber Haze textile */
.page-hero { background: var(--amber-haze); padding: 4rem 3rem 3rem; position: relative; overflow: hidden; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--amber-dk); }
.page-hero h1 { font-family: var(--font-display); font-weight: 500; font-size: 3.2rem; line-height: 1.1; color: var(--forest); margin: .25rem 0 1rem; max-width: 820px; letter-spacing: -.01em; }
.page-hero h1 em { color: var(--amber); font-style: normal; }
.page-hero h1 b  { color: var(--teal); }
.page-hero p { font-size: 16px; color: var(--warm-charcoal); line-height: 1.75; max-width: 720px; }
.page-hero-orb { position: absolute; right: -120px; top: -120px; width: 480px; height: 480px; border-radius: 50%; border: 1px solid rgba(45,143,31,.12); pointer-events: none; }
.page-hero-orb-2 { position: absolute; right: 80px; top: 40px; width: 260px; height: 260px; border-radius: 50%; border: 1px solid rgba(242,224,218,.14); pointer-events: none; }

.breadcrumb { display: flex; gap: 8px; font-size: 12px; color: var(--stone); margin-bottom: 1rem; }
.breadcrumb a { color: var(--sandstone); transition: color .12s; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb .sep { color: var(--divider-stone); }

/* SUMMIT BAND */
.summit-band { background: var(--forest); padding: 4.5rem 3rem; position: relative; overflow: hidden; }
.summit-band::before { content: '★  ANNUAL SUMMIT 2026'; position: absolute; top: 1.75rem; left: 3rem; font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--rust-lt); }
/* SANGAM acronym — coloured initials show how the acronym is derived */
.summit-band h2 .sg-i { color: var(--harvest-gold); font-weight: 600; }
.summit-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding-top: 1.25rem; }
.summit-info h2 { font-family: var(--font-display); font-weight: 500; font-size: 2.6rem; color: var(--white); line-height: 1.1; margin-bottom: 1.1rem; letter-spacing: -.01em; }
.summit-info p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.72); margin-bottom: 1.75rem; }
.summit-facts { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 2rem; }
.sf { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: rgba(255,255,255,.72); }
.sf::before { content: ''; width: 4px; height: 4px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }
.summit-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.summit-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ss-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 1.25rem 1rem; text-align: center; }
.ss-card strong { display: block; font-family: var(--font-body); font-size: 1.75rem; font-weight: 700; color: var(--rust-lt); line-height: 1; }
.ss-card span { display: block; font-size: 10px; color: rgba(255,255,255,.5); margin-top: 6px; letter-spacing: .04em; }

/* PILLARS */
.pillars { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.pillar-card { background: var(--white); border: 1px solid rgba(27,67,50,.1); border-radius: var(--r-lg); padding: 2rem 1.75rem; cursor: pointer; transition: all .22s; border-top: 3px solid transparent; position: relative; overflow: hidden; display: block; }
.pillar-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-top-color: var(--teal); }
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-card.featured { border-top-color: var(--teal); }
.pillar-ico { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 1.25rem; }
.pi-g { background: var(--teal-lt); }
.pi-a { background: var(--amber-lt); }
.pi-p { background: var(--forest-pl); }
.pillar-card h3 { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: .5rem; line-height: 1.3; }
.pillar-card p { font-size: 13px; color: var(--stone); line-height: 1.7; margin-bottom: 1.5rem; }
.pillar-num { font-family: var(--font-body); font-size: 2rem; font-weight: 700; color: var(--forest); line-height: 1; }
.pillar-num-label { font-size: 11px; color: var(--mist); margin-top: 4px; }
.pillar-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 700; color: var(--amber-dk); margin-top: 1rem; transition: gap .15s; cursor: pointer; }
.pillar-link:hover { gap: 8px; }

/* SAGE */
.sage-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 4.5rem; align-items: start; }
.sage-track-list { display: flex; flex-direction: column; gap: 12px; }
.sage-track { display: flex; align-items: flex-start; gap: 16px; padding: 1.1rem 1.25rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); cursor: pointer; transition: all .18s; border-left: 3px solid transparent; }
.sage-track:hover, .sage-track.active { border-left-color: var(--rust-lt); background: rgba(242,224,218,.10); }
.sage-track-ico { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.sage-track h4 { font-size: 14.5px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.sage-track p  { font-size: 12.5px; color: rgba(255,255,255,.78); line-height: 1.6; }
.sage-track-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .04em; padding: 3px 8px; border-radius: 8px; margin-top: 6px; }
.stt-online { background: rgba(82,183,136,.18); color: var(--teal); }
.stt-person { background: rgba(82,183,136,.18); color: var(--teal); }
.stt-consult{ background: rgba(242,224,218,.18); color: var(--rust-lt); }
.sage-cohort-box { background: rgba(242,224,218,.10); border: 1px solid rgba(242,224,218,.32); border-radius: var(--r-md); padding: 1.25rem; text-align: center; margin-top: 12px; }
.sage-cohort-box p { font-size: 11px; color: rgba(255,255,255,.7); }
.sage-cohort-box strong { display: block; font-size: 1.35rem; font-weight: 700; color: var(--rust-lt); margin-top: 4px; }
.sage-cohort-box span { font-size: 11px; color: rgba(255,255,255,.7); }
.sage-detail-panel h2 { font-family: var(--font-display); font-size: 2rem; color: var(--white); margin-bottom: .75rem; }
.sage-detail-panel p { font-size: 14.5px; line-height: 1.8; color: rgba(255,255,255,.7); margin-bottom: 1.75rem; }
.sage-check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 2rem; }
.sage-check-list li { font-size: 13.5px; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 10px; }
.sage-check-list li::before { content: '✓'; width: 20px; height: 20px; background: rgba(143,214,117,.18); color: #8FD675; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.sage-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* EVENTS */
.events-container { max-width: 1200px; margin: 0 auto; }
.filter-strip { display: flex; align-items: center; gap: 8px; margin-bottom: 2.25rem; flex-wrap: wrap; }
.f-chip { padding: 7px 16px; border-radius: 20px; font-size: 12.5px; font-weight: 600; border: 1.5px solid rgba(27,67,50,.15); color: var(--stone); background: transparent; cursor: pointer; transition: all .15s; white-space: nowrap; }
.f-chip.on { background: var(--forest); color: var(--white); border-color: var(--forest); }
.f-chip:hover:not(.on) { border-color: var(--forest); color: var(--forest); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.ev-card { background: var(--white); border: 1px solid rgba(27,67,50,.1); border-radius: var(--r-lg); padding: 1.6rem; cursor: pointer; transition: all .22s; border-top: 3px solid rgba(27,67,50,.15); display: flex; flex-direction: column; }
.ev-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ev-card.summit-type  { border-top-color: var(--forest); }
.ev-card.webinar-type { border-top-color: var(--red); }
.ev-card.workshop-type{ border-top-color: var(--amber); }
.ev-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.ev-badge { font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 12px; display: inline-flex; align-items: center; gap: 4px; }
.eb-web  { background: var(--red-lt);    color: var(--red); }
.eb-wks  { background: var(--amber-lt);  color: var(--amber-dk); }
.eb-sum  { background: var(--forest-pl); color: var(--forest); }
.ev-fmt { font-size: 11px; color: var(--mist); background: var(--pearl); padding: 3px 9px; border-radius: 10px; }
.ev-card h3 { font-size: 14.5px; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: .65rem; flex: 1; }
.ev-meta { margin-bottom: .85rem; display: flex; flex-direction: column; gap: 4px; }
.ev-mi { font-size: 12px; color: var(--mist); display: flex; align-items: center; gap: 5px; }
.ev-card p { font-size: 12.5px; color: var(--stone); line-height: 1.65; margin-bottom: 1.25rem; }
.ev-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.ev-spots { font-size: 11px; color: var(--mist); }
.btn-reg { font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 14px; border: none; cursor: pointer; text-decoration: none; display: inline-block; }
.br-forest { background: var(--forest); color: var(--white); }
.br-amber  { background: var(--amber);  color: var(--white); }
.br-ol     { background: transparent; color: var(--amber-dk); border: 1.5px solid var(--amber); }
.br-ol:hover { background: rgba(196,136,42,.08); }
.eb-sum-annual { background: rgba(196,136,42,.14); color: var(--harvest-gold); }
.eb-reg        { background: var(--pearl); color: var(--stone); border: 1px solid var(--divider-stone); }
.ev-card.featured-type { border-color: var(--amber); box-shadow: 0 0 0 1px rgba(196,136,42,.18); border-top-color: var(--harvest-gold); }

.summit-full { background: var(--forest); border-radius: var(--r-xl); padding: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; overflow: hidden; }
.summit-full::before { content: '★  ANNUAL SUMMIT'; position: absolute; top: 1.5rem; left: 3rem; font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--rust-lt); }

/* KNOWLEDGE */
.know-wrap { max-width: 1200px; margin: 0 auto; }
.know-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.ks-card { background: var(--white); border: 1px solid rgba(27,67,50,.1); border-radius: var(--r-lg); padding: 1.75rem; }
.ks-ico { font-size: 26px; margin-bottom: 1rem; }
.ks-num { font-family: var(--font-body); font-size: 2.2rem; font-weight: 700; color: var(--amber-dk); line-height: 1; }
.ks-label { font-size: 14px; font-weight: 700; color: var(--ink); margin-top: 4px; margin-bottom: 6px; }
.ks-desc { font-size: 12.5px; color: var(--stone); line-height: 1.65; }
.article-list { background: var(--white); border: 1px solid rgba(27,67,50,.1); border-radius: var(--r-lg); overflow: hidden; }
.al-head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.75rem; border-bottom: 1px solid var(--pearl); }
.al-head h3 { font-size: 16px; font-weight: 700; color: var(--ink); }
.al-head a  { font-size: 13px; font-weight: 700; color: var(--amber-dk); cursor: pointer; }
.al-row { display: flex; align-items: center; gap: 1.1rem; padding: 1.1rem 1.75rem; border-bottom: 1px solid var(--pearl); cursor: pointer; transition: background .12s; }
.al-row:last-child { border-bottom: none; }
.al-row:hover { background: var(--linen); }
.al-tag { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 9px; border-radius: 8px; flex-shrink: 0; }
.at-r { background: var(--forest-pl); color: var(--forest); }
.at-i { background: var(--teal-lt);   color: var(--forest-md); }
.at-p { background: var(--amber-lt);  color: var(--amber-dk); }
.al-title { flex: 1; font-size: 14px; font-weight: 500; color: var(--ink); }
.al-time  { font-size: 11.5px; color: var(--mist); flex-shrink: 0; }

/* COMMUNITY */
.comm-wrap { max-width: 1200px; margin: 0 auto; }
.comm-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.cc-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-xl); padding: 2.25rem; text-align: center; cursor: pointer; transition: all .18s; display: block; }
.cc-card:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.cc-ico { font-size: 36px; margin-bottom: 1.1rem; }
.cc-card h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--white); margin-bottom: .6rem; }
.cc-card p  { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.7; }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tc { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-xl); padding: 2rem; }
.tc-stars { color: var(--rust-lt); font-size: 14px; letter-spacing: 3px; margin-bottom: 1.1rem; }
.tc-quote { font-family: var(--font-display); font-style: italic; font-size: 14.5px; color: rgba(255,255,255,.85); line-height: 1.75; margin-bottom: 1.5rem; }
.tc-person { display: flex; align-items: center; gap: 12px; }
.tc-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--forest-md); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.tc-info strong { display: block; font-size: 13px; font-weight: 700; color: var(--white); }
.tc-info span   { display: block; font-size: 11.5px; color: rgba(255,255,255,.5); }

/* CAREERS */
.careers-wrap { max-width: 1200px; margin: 0 auto; }
.careers-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.search-row { display: flex; gap: 10px; align-items: center; }
.s-input { padding: 9px 16px; border: 1.5px solid rgba(27,67,50,.2); border-radius: 24px; font-size: 13px; color: var(--charcoal); width: 220px; background: var(--white); }
.btn-post-job { padding: 10px 20px; background: var(--forest); color: var(--white); border: none; border-radius: 24px; font-size: 13px; font-weight: 700; cursor: pointer; transition: background .15s; }
.btn-post-job:hover { background: var(--forest-md); }
.job-list { background: var(--white); border: 1px solid rgba(27,67,50,.1); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 2rem; }
.job-row { display: flex; align-items: center; gap: 1.25rem; padding: 1.3rem 1.75rem; border-bottom: 1px solid var(--pearl); cursor: pointer; transition: background .12s; }
.job-row:last-child { border-bottom: none; }
.job-row:hover { background: var(--linen); }
.job-ico { width: 42px; height: 42px; border-radius: 11px; background: var(--forest-pl); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.job-main { flex: 1; min-width: 0; }
.job-title { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.j-sector { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 8px; background: var(--teal-lt); color: var(--forest-md); }
.j-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--stone); }
.j-badge { font-size: 11.5px; font-weight: 700; padding: 5px 14px; border-radius: 12px; flex-shrink: 0; }
.jb-ft { background: var(--forest-pl); color: var(--forest); }
.jb-ct { background: var(--teal-lt);   color: var(--forest-md); }
.j-age { font-size: 11.5px; color: var(--mist); flex-shrink: 0; }
.fellowships-card { background: var(--linen); border: 1px solid rgba(27,67,50,.1); border-radius: var(--r-xl); padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.fc-left h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
.fc-left p  { font-size: 13.5px; color: var(--stone); max-width: 500px; line-height: 1.7; }
.fc-btns { display: flex; flex-direction: column; gap: 8px; }

/* MEMBERSHIP */
.mem-wrap { max-width: 1200px; margin: 0 auto; }
.mem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mc-card { background: var(--white); border: 1.5px solid rgba(27,67,50,.12); border-radius: var(--r-xl); padding: 2.5rem; position: relative; transition: box-shadow .2s; }
.mc-card:hover { box-shadow: var(--shadow-md); }
.mc-card.featured { border-color: var(--forest); box-shadow: 0 0 0 3px var(--forest); }
.mc-pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--forest); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: .04em; padding: 4px 16px; border-radius: 12px; white-space: nowrap; }
.mc-card h3 { font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: .75rem; }
.mc-price { font-family: var(--font-body); font-size: 2.75rem; font-weight: 700; color: var(--amber-dk); line-height: 1; }
.mc-price sub { font-size: 14px; color: var(--stone); font-weight: 500; vertical-align: baseline; }
.mc-features { list-style: none; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 9px; }
.mc-features li { font-size: 13.5px; color: var(--charcoal); display: flex; gap: 9px; align-items: flex-start; }
.mc-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.btn-join-mem { width: 100%; padding: 12px; border-radius: 26px; font-size: 14px; font-weight: 700; cursor: pointer; border: 2px solid var(--forest); color: var(--forest); background: transparent; transition: all .18s; text-align: center; display: inline-block; text-decoration: none; }
.btn-join-mem:hover, .btn-join-mem.filled { background: var(--forest); color: var(--white); }
.mem-note { text-align: center; margin-top: 1.75rem; font-size: 13px; color: var(--stone); }
.mem-note a { color: var(--amber-dk); cursor: pointer; font-weight: 600; }

/* GET INVOLVED */
.inv-wrap { max-width: 1200px; margin: 0 auto; }
.inv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.inv-card { border-radius: var(--r-xl); padding: 2rem; border: 1.5px solid transparent; cursor: pointer; transition: all .22s; display: block; }
.inv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.ic-red    { background: #FFF0F0; border-color: #FFD0D0; }
.ic-teal   { background: var(--teal-lt); border-color: rgba(82,183,136,.25); }
.ic-amber  { background: var(--amber-lt); border-color: rgba(160,73,53,.25); }
.ic-blue   { background: #EBF2FA; border-color: rgba(52,120,210,.22); }
.inv-card .inv-ico { font-size: 30px; margin-bottom: 1rem; }
.inv-card h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.inv-card p  { font-size: 13px; color: var(--stone); line-height: 1.7; margin-bottom: 1.1rem; }
.inv-link { font-size: 12.5px; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; cursor: pointer; transition: gap .15s; }
.inv-link:hover { gap: 8px; }
.il-red   { color: var(--red); }
.il-teal  { color: var(--forest-md); }
.il-amber { color: var(--amber-dk); }
.il-blue  { color: #1A6AC4; }

/* ABOUT */
.about-wrap { max-width: 1200px; margin: 0 auto; }
.tab-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2.75rem; }
.a-tab { padding: 9px 20px; border-radius: 24px; font-size: 13.5px; font-weight: 600; border: 1.5px solid rgba(27,67,50,.15); color: var(--stone); background: transparent; cursor: pointer; transition: all .15s; white-space: nowrap; display: inline-flex; align-items: center; gap: 7px; text-decoration: none; }
.a-tab.on { background: var(--forest); color: var(--white); border-color: var(--forest); }
.a-tab:hover:not(.on) { border-color: var(--forest); color: var(--forest); }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.about-text h2 { font-family: var(--font-display); font-size: 2rem; color: var(--ink); margin-bottom: .8rem; }
.about-text p  { font-size: 14.5px; color: var(--stone); line-height: 1.85; margin-bottom: 1.25rem; }
.about-bq { border-left: 3px solid var(--amber); padding-left: 1.25rem; margin-bottom: 1.75rem; }
.about-bq strong { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.about-img { border-radius: var(--r-xl); height: 400px; background: linear-gradient(135deg, var(--forest-pl) 0%, #c8e6d4 100%); display: flex; align-items: center; justify-content: center; font-size: 100px; position: relative; overflow: hidden; }
.about-stat-chip { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--white); border-radius: 14px; padding: 14px 20px; box-shadow: var(--shadow-md); }
.about-stat-chip strong { display: block; font-size: 1.75rem; font-weight: 700; color: var(--forest); line-height: 1; }
.about-stat-chip span   { display: block; font-size: 12px; color: var(--stone); margin-top: 4px; }
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.leader-card { background: var(--white); border: 1px solid rgba(27,67,50,.1); border-radius: var(--r-xl); padding: 1.75rem; text-align: center; transition: all .2s; }
.leader-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.leader-avatar { width: 96px; height: 96px; border-radius: 50%; background: linear-gradient(135deg, var(--forest-pl), var(--teal-lt)); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.4rem; color: var(--forest); }
.leader-card h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.leader-role { font-size: 12px; color: var(--amber-dk); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .75rem; }
.leader-bio { font-size: 13px; color: var(--stone); line-height: 1.7; }

.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.5rem; }
.partner-card { background: var(--white); border: 1px solid rgba(27,67,50,.08); border-radius: var(--r-md); padding: 1.5rem 1rem; text-align: center; transition: all .15s; }
.partner-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.partner-card .pc-mark { font-family: var(--font-display); font-size: 1.4rem; color: var(--forest); margin-bottom: .25rem; }
.partner-card .pc-name { font-size: 12px; color: var(--stone); }
.partner-card .pc-logo { display: flex; align-items: center; justify-content: center; min-height: 60px; margin-bottom: .65rem; }
.partner-card .pc-logo svg { border-radius: 6px; display: block; }

/* NEWS & UPDATES */
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.news-card { background: var(--linen); border: 1px solid rgba(27,67,50,.08); border-radius: var(--r-lg); padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; text-decoration: none; transition: box-shadow .18s, transform .18s, border-color .18s; }
.news-card:hover { border-color: var(--teal); box-shadow: 0 6px 24px rgba(0,0,0,.09); transform: translateY(-3px); }
.nc-tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: .2rem .65rem; border-radius: 20px; width: fit-content; }
.nc-press    { background: #e0f5f1; color: #1B6B58; }
.nc-conference { background: #fff3e0; color: #B45309; }
.nc-publication { background: #e8f0fe; color: #1a56bb; }
.nc-podcast  { background: #f3e8ff; color: #6D28D9; }
.nc-feature  { background: #fef9e7; color: #92400E; }
.nc-title { font-size: 14.5px; font-weight: 600; color: var(--ink); line-height: 1.5; margin: 0; flex-grow: 1; }
.nc-meta { font-size: 11.5px; color: var(--stone); line-height: 1.4; }
.nc-link { font-size: 12.5px; color: var(--forest); font-weight: 600; margin-top: .35rem; }

/* CONTACT */
.contact-split { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; }
.contact-info h2 { font-family: var(--font-display); font-size: 1.75rem; color: var(--white); margin-bottom: 1rem; }
.contact-info p  { font-size: 14.5px; color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 2rem; }
.ci-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 2rem; }
.ci-row { display: flex; align-items: center; gap: 14px; }
.ci-ico { width: 38px; height: 38px; border-radius: 9px; background: rgba(242,224,218,.15); border: 1px solid rgba(242,224,218,.32); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--rust-lt); flex-shrink: 0; }
.ci-text small  { display: block; font-size: 11px; color: rgba(255,255,255,.70); letter-spacing: .04em; }
.ci-text strong { display: block; font-size: 13.5px; color: rgba(255,255,255,.95); font-weight: 600; }
.nl-box { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 1.5rem; }
.nl-box h4 { font-size: 14.5px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.nl-box p  { font-size: 12.5px; color: rgba(255,255,255,.78); margin-bottom: 1rem; }
.nl-row { display: flex; gap: 8px; }
.nl-in { flex: 1; padding: 10px 14px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.25); border-radius: 24px; font-size: 13px; color: var(--white); }
.nl-in::placeholder { color: rgba(255,255,255,.55); }
.btn-subscribe { padding: 10px 18px; background: var(--amber); border: none; border-radius: 24px; font-size: 13px; font-weight: 700; color: var(--white); cursor: pointer; }
.btn-subscribe:hover { background: var(--amber-dk); }
.contact-form { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-xl); padding: 2.25rem; }
.fg { margin-bottom: 1.1rem; }
.fg label { display: block; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.82); margin-bottom: 6px; letter-spacing: .04em; }
.fg input, .fg textarea { width: 100%; padding: 11px 15px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.25); border-radius: var(--r-sm); font-size: 13.5px; color: var(--white); font-family: var(--font-body); transition: border-color .15s; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.48); }
.fg input:focus, .fg textarea:focus { outline: none; border-color: rgba(143,214,117,.55); }
.fg textarea { min-height: 110px; resize: vertical; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-send-form { width: 100%; padding: 14px; background: var(--amber); border: none; border-radius: 28px; font-size: 14.5px; font-weight: 700; color: var(--white); cursor: pointer; transition: all .18s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-send-form:hover { background: var(--amber-dk); transform: translateY(-1px); }
.btn-send-form:disabled { opacity: .65; cursor: not-allowed; transform: none; }
#cf-status { margin-top: 1rem; }
.cf-success { display: flex; flex-direction: column; align-items: center; gap: .4rem; text-align: center; padding: 1.5rem; background: rgba(143,214,117,.12); border: 1px solid rgba(143,214,117,.3); border-radius: var(--r-md); color: var(--white); }
.cf-tick { font-size: 2rem; line-height: 1; }
.cf-success strong { font-size: 15px; font-weight: 700; }
.cf-success p { font-size: 13px; color: rgba(255,255,255,.7); margin: 0; }
.cf-error { padding: .9rem 1.2rem; background: rgba(160,73,53,.18); border: 1px solid rgba(160,73,53,.4); border-radius: var(--r-sm); font-size: 13px; color: rgba(255,255,255,.85); }
.cf-error a { color: var(--rust-lt); text-decoration: underline; }

/* Light-mode form (for summit registration) */
.contact-form.light { background: var(--white); border: 1px solid rgba(27,67,50,.1); }
.contact-form.light .fg label { color: var(--charcoal); }
.contact-form.light .fg input, .contact-form.light .fg textarea { background: var(--linen); border: 1px solid rgba(27,67,50,.15); color: var(--ink); }
.contact-form.light .fg input::placeholder, .contact-form.light .fg textarea::placeholder { color: var(--mist); }

/* SHOP */
.shop-wrap { max-width: 1200px; margin: 0 auto; }
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.shop-card { background: var(--white); border: 1px solid rgba(27,67,50,.1); border-radius: var(--r-xl); overflow: hidden; cursor: pointer; transition: all .22s; display: block; }
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.shop-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 64px; }
.si-g { background: var(--teal-lt); }
.si-a { background: var(--amber-lt); }
.si-p { background: var(--forest-pl); }
.si-c { background: var(--linen); }
.shop-body { padding: 1.25rem 1.5rem; }
.shop-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--stone); margin-bottom: 5px; }
.shop-body h3 { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 5px; line-height: 1.3; }
.shop-body p  { font-size: 12.5px; color: var(--stone); line-height: 1.55; margin-bottom: 1rem; }
.shop-price-row { display: flex; align-items: center; justify-content: space-between; }
.shop-price { font-family: var(--font-body); font-size: 1.3rem; font-weight: 700; color: var(--forest); }
.btn-add { padding: 7px 15px; border: none; border-radius: 14px; font-size: 12px; font-weight: 700; background: var(--forest); color: var(--white); cursor: pointer; transition: background .15s; }
.btn-add:hover { background: var(--forest-md); }
.shop-banner-row { display: flex; align-items: center; justify-content: space-between; gap: 2rem; background: var(--ink); border-radius: var(--r-xl); padding: 2.5rem 3rem; margin-top: 2rem; flex-wrap: wrap; }
.shop-banner-row h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: .4rem; }
.shop-banner-row p  { font-size: 14px; color: rgba(255,255,255,.65); }

/* CTA BANNER — dark rust bg, white text for WCAG AA */
.cta-big { background: var(--amber); padding: 5rem 3rem; text-align: center; position: relative; overflow: hidden; }
.cta-big::before { content: ''; position: absolute; left: 50%; top: -80px; transform: translateX(-50%); width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,.08); pointer-events: none; }
.cta-big h2 { font-family: var(--font-display); font-weight: 500; font-size: 3rem; color: var(--white); margin-bottom: .75rem; position: relative; letter-spacing: -.01em; }
.cta-big p { font-size: 16px; color: rgba(255,255,255,.88); margin-bottom: 2.5rem; position: relative; }
.cta-big-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.cbtn-dk { padding: 14px 30px; background: var(--ink); color: var(--white); border: none; border-radius: 30px; font-size: 14.5px; font-weight: 700; cursor: pointer; transition: all .18s; text-decoration: none; display: inline-block; }
.cbtn-dk:hover { background: var(--forest); transform: translateY(-1px); }
.cbtn-ol { padding: 13px 24px; background: transparent; border: 2px solid rgba(255,255,255,.55); color: var(--white); border-radius: 30px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .18s; text-decoration: none; display: inline-block; }
.cbtn-ol:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* FOOTER */
.footer { background-color: var(--ink); background-image: url('wallpapers/jaali-midnight-charcoal.png'); background-size: cover; background-position: center; color: rgba(255,255,255,.6); padding: 4rem 3rem 2rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.8fr repeat(4, 1fr); gap: 2.5rem; margin-bottom: 3rem; }
.fb-brand strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.fb-brand p { font-size: 13px; line-height: 1.75; }
.fb-col h4 { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.fb-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fb-col ul li a { font-size: 13px; color: rgba(255,255,255,.78); cursor: pointer; transition: color .12s; }
.fb-col ul li a:hover { color: var(--rust-lt); }
.footer-btm { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-btm p { font-size: 12px; }
.social-r { display: flex; gap: 8px; }
.soc { width: 32px; height: 32px; border-radius: 8px; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 13px; transition: all .15s; }
.soc:hover { border-color: var(--rust-lt); color: var(--rust-lt); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .pillars { grid-template-columns: repeat(2,1fr); }
  .know-stats { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .events-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials { grid-template-columns: 1fr; gap: 1rem; }
  .inv-grid { grid-template-columns: repeat(2,1fr); }
  .summit-grid { gap: 2.5rem; }
  .summit-info h2 { font-size: 2rem; }
  .sage-container { gap: 2.5rem; }
  .leadership-grid { grid-template-columns: repeat(2,1fr); }
  .partners-grid { grid-template-columns: repeat(3,1fr); }
  .news-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .anno-hide { display: none; }
  .anno-bar { font-size: 12px; gap: 10px; }
  .topnav { padding: 0 .875rem; margin: 6px 10px 8px; border-radius: 12px; }
  .nav-items, .nav-actions { display: none; }
  .hbg { display: flex; }
  .mob-join-btn { display: block; }
  .logo-words { display: none; }
  .hero { padding: 3rem 1.25rem; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-mosaic { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 15px; margin-bottom: 1.75rem; }
  .hero-btns { flex-direction: column; }
  .cta-amber, .cta-outline-w { width: 100%; justify-content: center; font-size: 15px; padding: 14px; }
  .hero-stats { gap: 1.25rem; }
  .hstat strong { font-size: 1.75rem; }
  .page-hero { padding: 2.5rem 1.25rem 2rem; }
  .page-hero h1 { font-size: 2.1rem; }
  .pad-lg { padding: 3rem 1.25rem; }
  .pad-md { padding: 2.5rem 1.25rem; }
  .pad-sm { padding: 1.75rem 1.25rem; }
  .summit-band { padding: 3rem 1.25rem 2.5rem; }
  .summit-band::before { left: 1.25rem; }
  .summit-grid { grid-template-columns: 1fr; padding-top: 1.5rem; }
  .summit-info h2 { font-size: 1.85rem; }
  .summit-facts { flex-direction: column; gap: .75rem; }
  .summit-stats { grid-template-columns: repeat(3,1fr); gap: .75rem; }
  .summit-btns { flex-direction: column; }
  .cta-outline-w { justify-content: center; }
  .sage-container { grid-template-columns: 1fr; }
  .sage-btns { flex-direction: column; }
  .pillars { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .filter-strip { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .filter-strip::-webkit-scrollbar { height: 0; }
  .f-chip { flex-shrink: 0; }
  .summit-full { grid-template-columns: 1fr; padding: 2rem 1.25rem; }
  .summit-full::before { left: 1.25rem; }
  .know-stats { grid-template-columns: 1fr 1fr; }
  .comm-cards { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .mem-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .inv-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img { height: 260px; font-size: 80px; }
  .contact-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .fg-row { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .shop-img { height: 140px; font-size: 50px; }
  .shop-banner-row { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-btm { flex-direction: column; gap: 12px; }
  .cta-big { padding: 3.5rem 1.25rem; }
  .cta-big h2 { font-size: 2.1rem; }
  .cta-big-btns { flex-direction: column; align-items: center; }
  .cbtn-dk, .cbtn-ol { width: 100%; max-width: 320px; text-align: center; }
  .tab-row { overflow-x: auto; flex-wrap: nowrap; }
  .tab-row::-webkit-scrollbar { height: 0; }
  .a-tab { flex-shrink: 0; }
  .careers-top { flex-direction: column; }
  .search-row { width: 100%; }
  .s-input { flex: 1; width: auto; }
  .fellowships-card { flex-direction: column; }
  .fc-btns { flex-direction: row; }
  .leadership-grid, .partners-grid, .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .shop-grid { grid-template-columns: 1fr; }
  .know-stats { grid-template-columns: 1fr; }
  .summit-stats { grid-template-columns: repeat(3,1fr); }
  .cta-big h2 { font-size: 1.75rem; }
}

/* ═══════════════════════════
   FLAGS SCROLL BANNER
═══════════════════════════ */
.flags-scroll-wrap {
  background: var(--ink);
  padding: 18px 0;
  overflow: hidden;
  border-top: 3px solid var(--amber);
}
.flags-track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  animation: flagScroll 55s linear infinite;
  will-change: transform;
}
.flags-track:hover { animation-play-state: paused; }
.flag-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  cursor: default;
  flex-shrink: 0;
  opacity: .88;
  transition: opacity .2s;
}
.flag-item:hover { opacity: 1; }
.flag-img {
  display: block;
  height: 36px;
  width: auto;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
  object-fit: cover;
  flex-shrink: 0;
}
.flag-emoji {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.flag-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  letter-spacing: .03em;
}
.flag-item:hover .flag-name { color: #fff; }
@keyframes flagScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .flags-track { animation: none; }
}

/* SANGAM summit logo */
.sangam-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.sangam-mark {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.sangam-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--forest);
  line-height: 1.1;
}
.sangam-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 2px;
}

/* Leader photo */
.leader-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--pearl);
  background: var(--pearl);
  flex-shrink: 0;
}
.leader-photo-lg {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid rgba(27,67,50,.12);
  margin: 0 0 1rem 0;
}
