/* ============================================
   BYC website
   Palette sampled from the real BYC logo ribbon
   ============================================ */

:root{
  --teal:    #118579;
  --orange:  #e97624;
  --sky:     #207eb0;
  --cyan:    #09abd0;
  --gold:    #edbf1b;

  --cream:   #faf5ea;
  --cream-2: #f2ead9;

  /* semantic text/line tokens: consolidate ~15 ad-hoc opacity values.
     Solid darkened teal, not opacity: opacity-over-cream lightens toward
     the background and fails WCAG AA (old .68-.78 values measured 2.5-2.9:1;
     these solid values measure 4.76:1 / 5.95:1 against --cream). */
  --ink-70: #0d6a5f;   /* secondary body copy on cream, 5.95:1 */
  --ink-50: #327870;   /* tertiary/meta text on cream, 4.76:1 */
  --line: rgba(17,133,121,.1);      /* hairline border, subtle */
  --line-strong: rgba(17,133,121,.15); /* hairline border, stronger (row dividers) */
  /* On this teal, any translucent white/cream fails WCAG AA. Solid white
     is the ceiling (4.51:1) and the only shade of "light text" that clears
     4.5:1 at all, so both tiers share it; hierarchy no longer comes from color here. */
  --cream-85: #ffffff; /* secondary text on teal, 4.51:1 */
  --cream-60: #ffffff; /* tertiary/meta text on teal, 4.51:1 */

  --font-display: 'Sora', 'Noto Sans Bengali', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Noto Sans Bengali', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1200px;
  --edge: clamp(20px, 5vw, 64px);

  /* type scale (documented; applied where it doesn't touch existing rendering) */
  --text-2xs: 11px;
  --text-xs: 12px;
  --text-sm: 13.5px;
  --text-md: 16px;
  --text-lg: 17px;

  /* spacing scale (documented; existing values already largely follow it) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream);
  color: var(--teal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }

/* -------- focus states (keyboard nav) -------- */
a:focus-visible,
button:focus-visible,
.nav-toggle:focus-visible{
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
.nav-cta:focus-visible,
.btn-primary:focus-visible,
.hero-actions .btn-ghost:focus-visible,
.join .btn-primary:focus-visible{
  outline-color: var(--gold);
  outline-offset: 2px;
}
.logo-tile:focus-visible,
.partner-item:focus-visible{
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
h1,h2,h3,h4{ font-family: var(--font-display); margin: 0; line-height: 1.05; }
p{ margin: 0; }
ul{ margin:0; padding:0; list-style:none; }
.italic{ font-style: italic; font-weight: 400; opacity: .75; }

/* -------- grain texture -------- */
.grain{
  position: fixed; inset:0; pointer-events:none; z-index: 500;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* -------- nav -------- */
.site-nav{
  position: relative; z-index: 100;
  background: rgba(250,245,234,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  max-width: var(--container); margin: 0 auto; padding: 14px var(--edge);
  display:flex; align-items:center; justify-content:space-between; gap: 24px;
}
.brand{ display:inline-flex; align-items:center; min-width:88px; }
.brand-logo{ height:82px; width:auto; }
@media(max-width:600px){ .brand-logo{ height:66px; } }
.nav-links{ display:flex; align-items:center; gap: 28px; }
.nav-links a{
  font-size: 13px; font-weight: 500; color: var(--teal);
  display:flex; align-items:center; gap:6px;
  transition: color .2s;
}
.nav-links a:hover{ color: var(--teal); }
.nav-links a.active,
.nav-links .nav-item.active > a{ font-weight:700; color: var(--orange); }
.nav-cta{
  background: var(--teal); color: var(--cream) !important;
  padding: 10px 18px; border-radius: 100px; font-weight: 600;
}
.nav-cta:hover{ background: var(--teal); color: #fff !important; }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding: 6px; }
.nav-toggle span{ width: 22px; height: 2px; background: var(--teal); display:block; }

/* -------- nav dropdown -------- */
.nav-item{ position:relative; }
.nav-item > a{ cursor:pointer; }
.caret{ font-size:8px; opacity:.55; margin-left:1px; transform:translateY(1px); }
.nav-dropdown{
  position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%) translateY(-6px);
  min-width:210px; background:var(--cream); border:1px solid var(--line);
  border-radius:14px; padding:8px; box-shadow:0 24px 48px -20px rgba(0,0,0,.28);
  opacity:0; visibility:hidden; transition:opacity .18s, transform .18s, visibility .18s;
  z-index:120;
}
/* Scoped to desktop widths only: unscoped, this rule's higher specificity
   beat the mobile `.nav-dropdown{ transform:none; }` reset below whenever a
   mouse pointer happened to rest over a nav-item at a narrow/mobile viewport
   (e.g. testing "mobile" by narrowing a desktop browser with a real mouse) —
   that one hovered dropdown's content would render shifted off to the side
   via the leftover translateX(-50%), reading as a random blank group in the
   open mobile menu. */
@media (min-width: 721px){
  .nav-item:hover .nav-dropdown{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
}
.nav-dropdown a{
  display:block; padding:9px 12px; border-radius:8px; font-size:13px;
  font-weight:500; color:var(--teal); white-space:nowrap;
}
.nav-dropdown a:hover{ background:rgba(17,133,121,.08); }

/* -------- nav social -------- */
.nav-social{ display:flex; align-items:center; }
.nav-social-link{
  width:26px; height:26px; border-radius:50%; border:1.5px solid var(--teal);
  display:flex; align-items:center; justify-content:center; color:var(--teal);
  font-family: var(--font-mono); font-size:11px; font-weight:700;
  transition: background .2s, color .2s, border-color .2s;
}
.nav-social-link:hover{ background:var(--teal); color:#fff; }

/* -------- language dropdown (main nav) -------- */
.lang-dropdown{ position:relative; }
.lang-dropdown-toggle{
  display:flex; align-items:center; gap:5px;
  font-family: var(--font-mono); font-size: 12px; font-weight:700; color: var(--teal);
  background:none; border:1.5px solid var(--line); border-radius:100px;
  padding:6px 12px; cursor:pointer; transition: border-color .2s, background .2s;
}
.lang-dropdown-toggle:hover{ border-color: var(--teal); }
.lang-dropdown-toggle .caret{ font-size:8px; opacity:.6; transition: transform .18s; }
.lang-dropdown.open .lang-dropdown-toggle .caret{ transform: rotate(180deg); }
.lang-dropdown-menu{
  position:absolute; top:calc(100% + 10px); right:0;
  min-width:150px; background:var(--cream); border:1px solid var(--line);
  border-radius:14px; padding:8px; box-shadow:0 24px 48px -20px rgba(0,0,0,.28);
  opacity:0; visibility:hidden; transform:translateY(-6px);
  transition:opacity .18s, transform .18s, visibility .18s;
  z-index:120;
}
.lang-dropdown.open .lang-dropdown-menu,
.lang-dropdown:hover .lang-dropdown-menu{ opacity:1; visibility:visible; transform:translateY(0); }
.lang-dropdown-menu a{
  display:block; padding:9px 12px; border-radius:8px; font-size:13px;
  font-weight:500; color:var(--teal); white-space:nowrap; transition: background .2s, color .2s;
}
.lang-dropdown-menu a:hover{ background:rgba(17,133,121,.08); }
.lang-dropdown-menu a.active{ color: var(--orange); font-weight:700; }

/* -------- buttons -------- */
.btn{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 15px 26px; border-radius: 100px; font-weight: 600; font-size: 14px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.btn-primary{ background: var(--teal); color:#fff; }
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 14px 30px -10px rgba(17,133,121,.55); }
.btn-ghost{ border: 1.5px solid var(--teal); color: var(--teal); }
.btn-ghost:hover{ background: var(--teal); color:#fff; }
.btn-lg{ padding: 19px 34px; font-size: 15px; }
.arrow{ transition: transform .25s; }
.btn:hover .arrow{ transform: translateX(4px); }

/* -------- hero -------- */
.hero{
  position: relative; min-height: 94vh; display:flex; flex-direction:column;
  align-items:center; justify-content:center; text-align:center;
  padding: 80px var(--edge) 60px; overflow:hidden;
  background: var(--teal);
}
.hero-photo{ position:absolute; inset:0; z-index:0; }
.hero-photo img{
  width:100%; height:100%; object-fit: cover; object-position: center 30%;
  opacity: .55; filter: saturate(1.05);
}
.hero-photo::after{
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(17,133,121,.92) 0%, rgba(17,133,121,.55) 38%, rgba(17,133,121,.35) 62%, rgba(17,133,121,.88) 100%),
    linear-gradient(100deg, rgba(17,133,121,.45), rgba(9,171,208,.16) 60%, transparent 100%);
}
.hero-inner{ position:relative; z-index:1; max-width: 880px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.08); border:1px solid rgba(250,245,234,.25); padding: 8px 16px; border-radius: 100px;
  margin-bottom: 28px; color: var(--cream); backdrop-filter: blur(6px);
}
.eyebrow .dot{ width:7px; height:7px; border-radius:50%; background: var(--teal); display:inline-block; animation: pulse 2s infinite; }
@keyframes pulse{ 0%,100%{ opacity:1 } 50%{ opacity:.3 } }

.hero-title{ font-size: clamp(2.6rem, 7.5vw, 5.4rem); font-weight: 700; letter-spacing: -.01em; color: var(--cream); }
.hero-title .line{ display:block; opacity:0; transform: translateY(28px); animation: rise .8s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-title .line:nth-child(1){ animation-delay: .05s; }
.hero-title .line:nth-child(2){ animation-delay: .18s; color: var(--gold); }
.hero-title .line:nth-child(3){ animation-delay: .31s; }
@keyframes rise{ to{ opacity:1; transform:none; } }

.hero-sub{
  margin: 30px auto 0; max-width: 620px; font-size: 17px; color: var(--cream-85);
  opacity:0; animation: rise .8s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: .45s;
}
.hero-actions{
  margin-top: 38px; display:flex; gap: 16px; justify-content:center; flex-wrap:wrap;
  opacity:0; animation: rise .8s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: .6s;
}
.hero-actions .btn-primary{ box-shadow: 0 10px 30px -8px rgba(0,0,0,.45); }
.hero-actions .btn-ghost{
  border-color: rgba(250,245,234,.9); color: var(--cream);
  background: rgba(17,133,121,.35); backdrop-filter: blur(6px);
}
.hero-actions .btn-ghost:hover{ background: var(--cream); color: var(--teal); border-color: var(--cream); }
.hero-credit{
  position:absolute; bottom: 60px; left: var(--edge); z-index:1;
  font-family: var(--font-mono); font-size: 11px; color: var(--cream-60); max-width: 260px; text-align:left; line-height:1.5;
}

/* -------- manifesto -------- */
.manifesto{
  background: var(--teal); padding: 70px var(--edge); text-align:center;
  transform:none; margin:0; position:relative; z-index:2;
}
.manifesto p{
  font-family: var(--font-display); font-weight: 700; color: #fff;
  font-size: clamp(1.6rem, 5vw, 3rem); line-height: 1.15; margin:0;
}
.manifesto em{ font-style: normal; color: var(--gold); }

/* -------- marquee -------- */
.marquee-wrap{
  background: var(--teal); overflow:hidden; padding: 16px 0;
  transform:none; margin:0; position:relative; z-index:2;
}
.marquee{ display:flex; align-items:center; width:max-content; gap:20px; animation:scroll-left 32s linear infinite; }
.marquee span{
  font-family: var(--font-display); font-weight:600; font-size: 15px; color: var(--cream);
  text-transform: uppercase; letter-spacing:.03em; white-space:nowrap;
}
.marquee .sep{ color: var(--gold); font-family: var(--font-body); }
@keyframes scroll-left{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* -------- section scaffolding -------- */
main > section{ padding: clamp(64px, 7vw, 88px) var(--edge); }
main > section + section{ padding-top: clamp(48px, 5vw, 64px); }
main > section:has(+ section){ padding-bottom: clamp(48px, 5vw, 64px); }
.section-head{ max-width: var(--container); margin: 0 auto clamp(34px, 4vw, 44px); }
.section-head h2{
  font-size: clamp(2rem, 4.5vw, 3.2rem); margin-top: 14px; font-weight: 700; letter-spacing:-.01em;
}
.section-head.light h2{ color: var(--cream); }
#impact .section-head, #impact .partner-stats{ text-align:center; }

/* -------- about -------- */
.about-grid{
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px;
}
.lede{ font-size: 20px; font-weight:400; color: var(--teal); }
.about-copy p + p{ margin-top: 18px; color: var(--ink-70); }
.mission-vision{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.mv-card{ background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; }
.mv-card h3{ font-size: 15px; color: var(--teal); margin-bottom: 10px; }
.mv-card p{ font-size: 14px; color: var(--ink-70); }

.founding-sprint{ display:flex; flex-direction:column; gap: 4px; }
.sprint-eyebrow{
  font-family: var(--font-mono); font-size: 11.5px; text-transform:uppercase; letter-spacing:.08em;
  color: var(--orange); margin-bottom: 22px; display:block;
}
.sprint-step{
  position: relative; display:flex; gap: 20px; padding: 22px 0;
  border-top: 1px solid var(--line-strong);
  opacity:0; transform: translateX(16px); transition: opacity .6s, transform .6s;
}
.sprint-step.in{ opacity:1; transform:none; }
.sprint-step:last-child{ border-bottom: 1px solid var(--line-strong); }
.sprint-body{ padding-top: 2px; }
.t-date{ font-family: var(--font-mono); font-size: 12px; color: var(--teal); display:block; margin-bottom:6px; }
.sprint-body p{ font-size: 14.5px; color: var(--ink-70); }

/* -------- milestone photo -------- */
.milestone-photo{ margin:0; position:relative; border-radius: 18px; overflow:hidden; }
.milestone-photo img{ width:100%; height: 280px; object-fit:cover; display:block; }
.milestone-photo::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(17,133,121,.85) 100%);
}
.milestone-photo figcaption{
  position:absolute; left:16px; right:16px; bottom:14px; z-index:1;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--cream); line-height:1.4;
}
.milestone-photo.full{
  max-width: var(--container); margin: 56px auto 0;
}
.milestone-photo.full img{ height: 360px; }

/* -------- photo & video galleries -------- */
.media-gallery{ background:var(--cream-2); }
.media-head{ display:flex; align-items:end; justify-content:space-between; gap:36px; }
.media-head > div{ flex:1; }
.media-head .sprint-eyebrow{ margin-bottom:8px; }
.media-head h2{ margin-top:0; }
.media-head > p{ max-width:44ch; color:var(--ink-70); font-size:15px; line-height:1.7; }
.gallery-block{ max-width:var(--container); margin:0 auto; }
.gallery-block + .gallery-block{ margin-top:64px; }
.gallery-label-row{ display:flex; align-items:end; justify-content:space-between; gap:20px; padding-bottom:14px; border-bottom:1px solid var(--line-strong); margin-bottom:22px; }
.gallery-label-row h3{ font-size:18px; color:var(--teal); }
.gallery-label-row span{ font-family:var(--font-mono); font-size:11px; color:var(--orange); text-transform:uppercase; letter-spacing:.08em; }
.photo-gallery-grid{ display:grid; grid-template-columns:repeat(12,1fr); grid-auto-rows:180px; gap:14px; }
.photo-gallery-grid.rolling-gallery,.video-gallery-grid.rolling-gallery{ display:flex; gap:18px; overflow-x:auto; position:relative; scrollbar-width:thin; padding-bottom:12px; }
.rolling-gallery > .gallery-photo,.rolling-gallery > .video-link-card{ flex:0 0 clamp(260px,42vw,460px); height:300px; min-height:0; border-radius:16px; }
.gallery-motion-control{ display:block; margin:0 0 14px auto; padding:8px 14px; min-height:44px; border:1px solid var(--teal); border-radius:6px; background:transparent; color:var(--teal); cursor:pointer; font:inherit; font-size:13px; }
.gallery-photo{ grid-column:span 3; position:relative; overflow:hidden; border-radius:12px; background:var(--teal); isolation:isolate; }
.gallery-photo-featured{ grid-column:span 6; grid-row:span 2; border-radius:20px 12px 12px 20px; }
.gallery-photo-wide{ grid-column:span 6; }
.gallery-photo img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .55s cubic-bezier(.2,.8,.2,1), filter .35s; }
.gallery-photo::after{ content:''; position:absolute; inset:45% 0 0; z-index:0; background:linear-gradient(180deg,transparent,rgba(6,63,56,.88)); }
.gallery-photo > span{ position:absolute; z-index:1; left:16px; right:16px; bottom:13px; color:#fff; font-family:var(--font-mono); font-size:11px; letter-spacing:.03em; }
.gallery-photo:hover img{ transform:scale(1.045); filter:saturate(1.08); }
.gallery-photo:focus-visible{ outline:3px solid var(--orange); outline-offset:3px; }
.video-gallery-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.video-link-card{ position:relative; min-height:320px; overflow:hidden; border-radius:18px; color:#fff; }
.video-link-card > img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; transition:transform .55s cubic-bezier(.2,.8,.2,1); }
.video-link-card::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(8,63,56,.06),rgba(8,63,56,.94)); }
.video-link-overlay{ position:absolute; z-index:1; inset:auto 20px 20px; display:flex; align-items:end; gap:13px; }
.video-link-overlay > span{ display:flex; flex-direction:column; gap:3px; }
.video-link-overlay small{ font-family:var(--font-mono); font-size:10px; text-transform:uppercase; letter-spacing:.07em; opacity:.8; }
.video-link-overlay strong{ font-size:14px; line-height:1.35; }
.video-link-overlay em{ font-style:normal; font-size:10.5px; opacity:.75; }
.play-mark{ display:grid; place-items:center; flex:0 0 42px; width:42px; height:42px; border-radius:50%; background:var(--orange); font-size:13px; padding-left:2px; }
.video-link-card:hover > img{ transform:scale(1.05); }
.video-link-card:focus-visible{ outline:3px solid var(--orange); outline-offset:3px; }

/* -------- themes -------- */
.themes{ background: var(--teal); position: relative; }
.theme-grid{
  max-width: var(--container); margin: 0 auto;
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.theme-card{
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 30px 26px; transform: rotate(var(--r));
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .35s, border-color .35s;
  opacity: 0; translate: 0 22px;
}
.theme-card.in{ opacity:1; translate: 0 0; transition: transform .35s, background .35s, border-color .35s, opacity .6s, translate .6s; }
.theme-card:hover{ transform: rotate(0deg) translateY(-6px); background: rgba(255,255,255,.08); border-color: var(--gold); }
.theme-card h3{ font-size: 19px; color: var(--cream); margin-top: 0; font-weight:600; line-height:1.3; }
.theme-card p{ font-size: 13.5px; color: var(--cream-60); margin-top: 10px; }

/* -------- impact / partners stats -------- */
.partner-stats{
  max-width: var(--container); margin: 0 auto 0;
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 30px 20px;
}
.stat{ text-align:center; border-top: 3px solid var(--orange); padding-top: 16px; }
.stat-num{
  font-family: var(--font-display); font-size: clamp(2.6rem,4vw,3.6rem); font-weight:700; color: var(--teal); display:block;
}
.stat-label{ font-size: 13px; color: var(--ink-50); }

.stat-feature{
  max-width: var(--container); margin: 44px auto 0;
  border-top: 1px solid var(--line); padding-top: 40px;
  display:flex; flex-direction:column; align-items:center; text-align:center; gap: 10px;
}
.stat-feature-num{
  font-family: var(--font-display); font-weight:700; color: var(--orange);
  font-size: clamp(3.4rem, 8vw, 5.6rem); line-height:1; display:block;
}
.stat-feature-label{ font-size: 16px; color: var(--teal); max-width: 320px; line-height:1.4; }

.partner-photo{
  max-width: var(--container); margin: 0 auto 50px; border-radius: 20px; overflow:hidden;
}
.partner-photo img{ width:100%; max-height: 460px; object-fit:cover; display:block; }
.partner-photo figcaption{
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-50); padding: 12px 2px 0;
}

/* -------- roadmap -------- */
.pillar-grid{
  max-width: var(--container); margin: 0 auto;
  display:grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.pillar{ background:#fff; border:1px solid var(--line); border-radius:18px; padding: 26px 22px; }
.pillar h3{ font-size: 16px; margin-top: 0; line-height:1.35; }

/* -------- field notes -------- */
.field-grid{
  max-width: var(--container); margin: 0 auto;
  display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); grid-auto-rows: clamp(260px,29vw,340px); gap: 18px;
}
.field-photo{ margin:0; position:relative; border-radius: 20px; overflow:hidden; grid-row: span 1; }
.field-photo.tall{ grid-row: span 1; }
.field-photo img{ width:100%; height:100%; object-fit:cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.field-photo:hover img{ transform: scale(1.06); }
.field-photo::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(17,133,121,.85) 100%);
}
.field-photo figcaption{
  position:absolute; left:16px; right:16px; bottom:14px; z-index:1;
  font-family: var(--font-mono); font-size: 12px; color: var(--cream); line-height:1.4;
}

/* -------- member organizations -------- */
.members-intro{
  max-width: var(--container); margin: 0 auto 44px; font-size: 16px; color: var(--ink-70); max-width: 560px;
}
.logo-gallery-wrap{
  max-width: var(--container); margin: 0 auto; overflow:hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.logo-gallery{ display:flex; width:max-content; gap:0; }
.logo-gallery.loop-ready{ animation: scroll-left var(--member-loop-duration, 90s) linear infinite; }
.logo-gallery .loop-set{ display:flex; gap:18px; padding-right:18px; }
.logo-gallery:hover{ animation-play-state: paused; }
.logo-tile{
  background:#fff; border: 1px solid var(--line); border-radius: 50%; position:relative;
  width: 96px; height: 96px; flex-shrink:0; display:flex; align-items:center; justify-content:center; padding: 16px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.logo-tile:hover{ transform: translateY(-4px); border-color: var(--teal); box-shadow: 0 14px 30px -18px rgba(17,133,121,.4); }
.logo-tile img{ max-width:100%; max-height:100%; object-fit:contain; }

/* -------- org tile hover links (website/social), shared by member logos & partner marquee -------- */
.org-links{
  position:absolute; inset:0; border-radius:50%;
  background: rgba(17,133,121,.94);
  display:flex; align-items:center; justify-content:center; gap:5px; flex-wrap:wrap; padding:10px;
  opacity:0; visibility:hidden; transition:opacity .2s, visibility .2s;
}
.logo-tile:hover .org-links, .logo-tile:focus-within .org-links,
.partner-item:hover .org-links, .partner-item:focus-within .org-links{ opacity:1; visibility:visible; }
.org-link{
  width:19px; height:19px; border-radius:50%; background:rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center; color:#fff;
  font-family: var(--font-mono); font-size:9px; font-weight:700; letter-spacing:-.02em; line-height:1;
  transition: background .2s, color .2s;
}
.org-link:hover{ background: var(--gold); color: var(--teal); }
.org-link svg{ width:11px; height:11px; }
.members-note{
  max-width: var(--container); margin: 28px auto 0;
  font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-50);
}
.members-note a{ color: var(--teal); font-weight:600; transition: color .2s; }
.members-note a:hover{ color: var(--orange); }

/* -------- faq -------- */
.faq-section{ padding-bottom: 60px; }
.faq-list{ max-width: 760px; margin: 0 auto; display:flex; flex-direction:column; gap: 2px; }
.faq-item{
  border-top: 1px solid var(--line); padding: 22px 0;
}
.faq-item:last-child{ border-bottom: 1px solid var(--line); }
.faq-item summary{
  cursor:pointer; list-style:none; display:flex; align-items:center; justify-content:space-between; gap:20px;
  font-family: var(--font-display); font-size: 17px; font-weight:600; color: var(--teal);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:'+'; flex-shrink:0; font-family: var(--font-mono); font-size:20px; font-weight:400;
  color: var(--orange); transition: transform .25s;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{ font-size: 14.5px; color: var(--ink-70); line-height:1.6; margin-top:14px; max-width: 65ch; }

/* -------- partners (alt/dark reused) -------- */
.partners.alt{ background: var(--cream-2); }
.partners-label{
  max-width: var(--container); margin: 0 auto 16px;
  font-family: var(--font-mono); font-size: 11.5px; text-transform:uppercase; letter-spacing:.08em; color: var(--sky);
}
.partner-marquee-wrap{
  max-width: var(--container); margin: 0 auto 50px; overflow:hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.partner-marquee{ display:flex; width:max-content; gap:0; }
.partner-marquee.loop-ready{ animation: scroll-left 32s linear infinite; }
.partner-marquee .loop-set{ display:flex; gap:22px; padding-right:22px; }
.partner-marquee:hover{ animation-play-state: paused; }
.partner-item{
  display:flex; align-items:center; justify-content:center; position:relative;
  background:#fff; border:1px solid var(--line);
  width: 84px; height: 84px; border-radius: 50%; flex-shrink:0; padding: 14px;
}
.partner-item img{ max-height: 100%; max-width:100%; object-fit:contain; flex-shrink:0; }
.future-goals{ max-width: var(--container); margin: 0 auto; }
.future-goals-label{
  font-family: var(--font-mono); font-size: 11.5px; text-transform:uppercase; letter-spacing:.08em;
  color: var(--cyan); margin-bottom: 6px; display:block;
}
.fg-row{
  display:grid; grid-template-columns: 220px 1fr; gap: 24px; align-items:baseline;
  padding: 24px 0; border-top: 1px solid var(--line-strong);
}
.fg-row:last-child{ border-bottom: 1px solid var(--line-strong); }
.fg-row h4{ font-size: 17px; color: var(--teal); }
.fg-row p{ font-size: 13.5px; color: var(--ink-70); }
@media (max-width: 720px){
  main > section{ padding: 54px var(--edge); }
  main > section + section{ padding-top: 42px; }
  main > section:has(+ section){ padding-bottom: 42px; }
  .section-head{ margin-bottom:32px; }
  .fg-row{ grid-template-columns: 1fr; gap: 8px; }
}

/* -------- notice ticker -------- */
.notice-ticker{
  display:grid; grid-template-columns:auto minmax(0,1fr); align-items:center; background: var(--orange); overflow:hidden;
  transform:none; margin:0; position:relative; z-index:2;
}
.notice-badge{
  flex-shrink:0; background: var(--orange); color:#fff; font-family: var(--font-mono);
  font-size: 11px; font-weight:700; text-transform:uppercase; letter-spacing:.08em;
  display:flex; align-items:center; align-self:stretch; padding: 12px 18px; line-height:24px; white-space:nowrap;
  position:relative; z-index:2; box-shadow: 6px 0 12px -4px rgba(0,0,0,.25);
}
.notice-track{
  display:flex; align-items:center; width:max-content; gap: 20px; padding: 12px 0; line-height:24px;
  animation: scroll-left 28s linear infinite;
  position:relative; z-index:1;
}
.notice-window{ min-width:0; overflow:hidden; }
.notice-track:hover{ animation-play-state: paused; }
.notice-track a{
  font-family: var(--font-mono); font-size: 13px; color:#fff; white-space:nowrap; padding-left: 20px;
  text-decoration: none; transition: opacity .2s;
}
.notice-track a:hover{ opacity:.75; text-decoration: underline; }
.notice-track .sep{ color: rgba(255,255,255,.5); padding-left:0; }

/* -------- news -------- */
.news-grid{
  max-width: var(--container); margin: 0 auto;
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.news-card{
  opacity:0; translate: 0 20px; transition: opacity .6s, translate .6s;
}
.news-card.in{ opacity:1; translate: 0 0; }
.news-photo{ border-radius: 16px; overflow:hidden; height: 160px; }
.news-photo img{ width:100%; height:100%; object-fit:cover; transition: transform .5s; }
.news-card:hover .news-photo img{ transform: scale(1.06); }
.news-date{
  font-family: var(--font-mono); font-size: 11.5px; color: var(--orange); display:block; margin-top: 16px;
}
.news-card h3{ font-size: 17px; margin-top: 8px; line-height:1.3; }
.news-card p{ font-size: 13.5px; color: var(--ink-70); margin-top: 8px; }
.news-card-link{ display:block; height:100%; }
.news-read{ display:inline-block; margin-top:12px; font-family:var(--font-mono); font-size:11px; color:var(--orange); font-weight:600; }
.news-link{
  display:inline-flex; align-items:center; gap:6px; margin-top: 10px;
  font-family: var(--font-mono); font-size: 12px; color: var(--orange); font-weight:600;
}
.news-link:hover{ color: var(--teal); }

/* -------- join -------- */
.join{
  background: linear-gradient(135deg, var(--teal), var(--sky));
  text-align:center; position: relative; overflow:hidden;
}
.join-inner{ max-width: 700px; margin: 0 auto; position:relative; }
.join h2{ color:#fff; font-size: clamp(2rem,4.5vw,3rem); }
.join p{ color: var(--cream-85); margin: 20px auto 34px; max-width: 520px; }
.join .btn-primary{ background:#fff; color: var(--teal); }
.join .btn-primary:hover{ background: var(--teal); color:#fff; }

/* -------- footer -------- */
.site-footer{ background: var(--teal); color: var(--cream-60); padding: 70px var(--edge) 30px; position:relative; }
.site-footer::before{
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--sky), var(--cyan));
}
.footer-inner{
  max-width: var(--container); margin:0 auto;
  display:grid; grid-template-columns: 1.15fr .7fr 1.2fr .85fr; gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,245,234,.12);
}
.footer-logo{ height: 30px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p{ font-size: 13.5px; line-height:1.6; }
.footer-actions{ display:flex; flex-wrap:wrap; align-items:center; gap:16px 24px; margin-top:24px; }
.footer-social{ display:flex; align-items:center; gap:10px; margin:0; }
.footer-member-login{ display:inline-flex; align-items:center; justify-content:center; gap:8px; min-height:44px; margin:0; padding:10px 16px; border:1px solid rgba(255,255,255,.35); border-radius:999px; color:#fff; font-size:12.5px; font-weight:700; }
.footer-member-login:hover{ background:#fff; color:var(--teal); }

/* Consistent vertical rhythm across every content page. */
main > section, main > section + section, main > section:has(+ section){ padding-top:clamp(54px,6vw,76px); padding-bottom:clamp(54px,6vw,76px); }
.about{ padding-top:clamp(48px,5vw,68px)!important; padding-bottom:clamp(48px,5vw,68px)!important; }
.section-head{ margin-bottom:clamp(28px,3.5vw,42px); }

/* Thematic member-post gallery */
.thematic-news-grid{ max-width:var(--container); margin:0 auto; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.thematic-story{ min-height:330px; position:relative; overflow:hidden; border-radius:20px; background:linear-gradient(145deg,var(--teal),var(--sky)); isolation:isolate; }
.thematic-story img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .55s cubic-bezier(.2,.8,.2,1); }
.thematic-story-shade{ position:absolute; inset:0; background:linear-gradient(180deg,rgba(5,50,44,.05) 22%,rgba(5,50,44,.93) 100%); }
.thematic-story-copy{ position:absolute; z-index:1; inset:auto 22px 20px; color:#fff; display:grid; gap:8px; }
.thematic-story-area{ font-family:var(--font-mono); font-size:10px; text-transform:uppercase; letter-spacing:.08em; color:var(--gold); }
.thematic-story-copy strong{ font-family:var(--font-display); font-size:18px; line-height:1.25; }
.thematic-story-copy > span:last-child{ font-family:var(--font-mono); font-size:10.5px; }
.thematic-story:hover img{ transform:scale(1.05); }

/* Full news story */
.story-page{ padding:clamp(52px,5.5vw,74px) var(--edge)!important; }
.story-hero{ max-width:var(--container); margin:0 auto; display:grid; grid-template-columns:minmax(0,1.08fr) minmax(380px,.92fr); gap:clamp(30px,4vw,58px); align-items:center; }
.story-kicker,.section-label{ font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.09em; color:var(--orange); }
.story-hero h1{ font-size:clamp(2.15rem,4vw,3.55rem); margin:16px 0 20px; text-wrap:balance; }
.story-hero-copy > p{ font-size:clamp(16px,2vw,20px); color:var(--ink-70); max-width:58ch; }
.story-meta{ display:flex; gap:10px 20px; flex-wrap:wrap; margin-top:22px; font-family:var(--font-mono); font-size:11px; color:var(--ink-50); }
.story-cover{ margin:0; border-radius:26px; overflow:hidden; aspect-ratio:4/3; }
.story-cover img{ width:100%; height:100%; object-fit:cover; }
.story-layout{ max-width:1000px; margin:clamp(48px,7vw,86px) auto 0; display:grid; grid-template-columns:minmax(0,1fr) 240px; gap:56px; align-items:start; }
.story-content{ font-size:17px; color:#174f49; line-height:1.82; }
.story-content p + p,.story-content ul + p,.story-content p + ul{ margin-top:20px; }
.story-content ul{ list-style:disc; padding-left:24px; }
.story-content a{ color:var(--orange); text-decoration:underline; }
.story-content a.btn-primary{ display:inline-flex; color:#fff; text-decoration:none; margin:28px 0 8px; }
.story-gallery{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin-top:38px; }
.story-gallery a:first-child:nth-last-child(odd){ grid-column:1/-1; }
.story-gallery img{ width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:14px; }
.story-side{ position:sticky; top:110px; display:grid; gap:14px; }
.story-side-card{ background:#fff; border:1px solid var(--line); border-radius:16px; padding:18px; display:grid; gap:10px; }
.story-side-card > span{ font-family:var(--font-mono); font-size:10px; text-transform:uppercase; letter-spacing:.08em; color:var(--ink-50); }
.share-links{ display:grid; gap:6px; }
.share-links a{ padding:8px 10px; border-radius:8px; background:var(--cream-2); font-size:12px; font-weight:700; }
.author-card img{ width:54px; height:54px; object-fit:contain; border-radius:50%; border:1px solid var(--line); padding:7px; }
.author-card a{ color:var(--orange); font-size:12px; font-weight:700; }
.comments-section{ background:var(--cream-2); }
.comments-inner{ max-width:1000px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:64px; }
.comments-inner h2{ font-size:clamp(2rem,4vw,3rem); margin:10px 0 26px; }
.comment{ border-top:1px solid var(--line-strong); padding:18px 0; }
.comment strong{ display:block; }
.comment > span{ font-family:var(--font-mono); font-size:10px; color:var(--ink-50); }
.comment p{ margin-top:8px; color:var(--ink-70); }
.comment-empty{ color:var(--ink-50); }
.comment-form-wrap{ background:#fff; border:1px solid var(--line); border-radius:20px; padding:26px; }
.comment-form-wrap > p{ color:var(--ink-70); font-size:13px; margin:8px 0 18px; }
.comment-form-wrap label{ display:grid; gap:6px; margin-top:13px; font-size:12px; font-weight:700; }
.comment-form-wrap input,.comment-form-wrap textarea{ width:100%; border:1px solid var(--line-strong); border-radius:10px; padding:11px 12px; font:inherit; color:var(--teal); background:#fff; }
.comment-form-wrap button{ margin-top:16px; }
.form-message{ padding:11px 13px; border-radius:10px; background:#e6f4ee; color:#1f7950; font-size:13px; }
.article-empty{ min-height:55vh; text-align:center; display:grid; place-content:center; gap:18px; }
.hp-field{ position:absolute!important; left:-10000px!important; width:1px!important; height:1px!important; overflow:hidden!important; }

@media(max-width:900px){ .thematic-news-grid{ grid-template-columns:repeat(2,1fr); } .story-hero{ grid-template-columns:1fr; } .story-layout{ grid-template-columns:1fr; } .story-side{ position:static; grid-template-columns:repeat(2,1fr); } }
@media(max-width:720px){ main > section,main > section + section,main > section:has(+ section){ padding-top:46px; padding-bottom:46px; } .thematic-news-grid{ grid-template-columns:1fr; } .thematic-story{ min-height:290px; } .comments-inner{ grid-template-columns:1fr; gap:34px; } .story-side{ grid-template-columns:1fr; } .story-gallery{ grid-template-columns:1fr; } .story-gallery a{ grid-column:auto!important; } }
.footer-social-link{
  width:38px; height:38px; border:1px solid rgba(250,245,234,.28); border-radius:50%;
  display:grid; place-items:center; color:var(--cream); transition:background .2s,color .2s,border-color .2s,transform .2s;
}
.footer-social-link svg{ width:17px; height:17px; fill:currentColor; }
.footer-social-link:hover{ background:var(--gold); border-color:var(--gold); color:var(--teal); transform:translateY(-2px); }
.footer-col-label{
  font-family: var(--font-mono); font-size: 11px; text-transform:uppercase; letter-spacing:.08em;
  color: var(--gold); display:block; margin-bottom: 16px;
}
.footer-links{ display:flex; flex-direction:column; gap: 10px; }
.footer-links a{ font-size: 13.5px; transition: color .2s; }
.footer-links a:hover{ color: var(--gold); }
.footer-contact{ display:flex; flex-direction:column; gap: 12px; font-size: 13px; }
.footer-contact-item{
  display:flex; align-items:flex-start; gap: 9px; color: inherit; line-height:1.4; transition: color .2s;
}
.footer-contact-item svg{ flex-shrink:0; margin-top: 1px; opacity:.85; }
a.footer-contact-item:hover{ color: var(--gold); }
.footer-lang-dropdown{ position:relative; width:100%; }
.footer-lang-dropdown summary{
  min-height:44px; padding:10px 12px; border:1px solid rgba(250,245,234,.25); border-radius:12px;
  display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:9px; cursor:pointer;
  background:rgba(255,255,255,.05); font-size:13px; list-style:none; transition:border-color .2s,background .2s;
}
.footer-lang-dropdown summary::-webkit-details-marker{ display:none; }
.footer-lang-dropdown summary:hover,.footer-lang-dropdown[open] summary{ border-color:var(--gold); background:rgba(255,255,255,.09); }
.footer-lang-current{ font-family:var(--font-mono); color:var(--gold); font-weight:700; }
.footer-lang-chevron{ font-size:17px; line-height:1; transition:transform .2s; }
.footer-lang-dropdown[open] .footer-lang-chevron{ transform:rotate(180deg); }
.footer-lang-menu{
  position:absolute; z-index:8; left:0; right:0; bottom:calc(100% + 8px); padding:7px;
  border:1px solid rgba(250,245,234,.2); border-radius:12px; background:#0b6f66; box-shadow:0 18px 36px rgba(0,0,0,.22);
}
.footer-lang-menu a{ display:grid; grid-template-columns:32px 1fr; gap:8px; padding:8px 9px; border-radius:8px; font-size:12.5px; transition:background .2s,color .2s; }
.footer-lang-menu a span{ font-family:var(--font-mono); color:var(--gold); }
.footer-lang-menu a.active{ background:rgba(255,255,255,.1); color:#fff; font-weight:700; }
.footer-lang-menu a:hover{ background:rgba(255,255,255,.09); color:var(--gold); }
.footer-meta{
  max-width: var(--container); margin: 20px auto 0; font-size: 12px;
  display:flex; align-items:center; justify-content:space-between; gap: 16px; flex-wrap:wrap;
}
.footer-meta-left{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.footer-support{ color:rgba(250,245,234,.78); }
.footer-support strong{ color:var(--gold); font-weight:600; }
.footer-top{ color: inherit; font-family: var(--font-mono); font-size: 12px; transition: color .2s; }
.footer-top:hover{ color: var(--gold); }

/* -------- reveal generic -------- */
[data-reveal]{ opacity:0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
[data-reveal].in{ opacity:1; transform:none; }

/* -------- responsive -------- */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .theme-grid{ grid-template-columns: repeat(2,1fr); }
  .partner-stats{ grid-template-columns: repeat(3,1fr); }
  .pillar-grid{ grid-template-columns: repeat(2,1fr); }
  .news-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-inner{ grid-template-columns: 1fr; }
  .hero-credit{ display:none; }
  .photo-gallery-grid{ grid-template-columns:repeat(6,1fr); }
  .gallery-photo{ grid-column:span 2; }
  .gallery-photo-featured,.gallery-photo-wide{ grid-column:span 4; }
}
@media (max-width: 720px){
  .nav-links{
    position: fixed; top: 66px; left: 16px; right: 16px;
    background: var(--cream); border-radius: 18px; border: 1px solid rgba(17,133,121,.1);
    flex-direction: column; align-items: stretch; padding: 18px;
    box-shadow: 0 20px 50px -20px rgba(0,0,0,.3);
    transform-origin: top; transform: scaleY(0); opacity:0; pointer-events:none; visibility:hidden;
    transition: transform .25s, opacity .25s, visibility .25s;
  }
  .nav-links.open{ transform: scaleY(1); opacity:1; pointer-events:auto; visibility:visible; }
  .nav-links a{ padding: 10px 4px; }
  .nav-toggle{ display:flex; }
  .nav-item{ position:static; }
  .caret{ display:none; }
  .nav-dropdown{
    position:static; opacity:1; visibility:visible; transform:none;
    box-shadow:none; border:none; background:transparent;
    padding:0 0 6px 18px; margin-top:-4px;
  }
  .nav-dropdown a{ padding:8px 4px; font-size:12px; font-weight:400; color:var(--teal); opacity:.75; }
  .theme-grid{ grid-template-columns: 1fr; }
  .mission-vision{ grid-template-columns: 1fr; }
  .partner-stats{ grid-template-columns: 1fr; gap: 20px; }
  .pillar-grid{ grid-template-columns: 1fr; }
  .news-grid{ grid-template-columns: 1fr; }
  .field-grid{ grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .field-photo.tall{ grid-row: span 1; }
  .footer-meta,.footer-meta-left{ align-items:flex-start; flex-direction:column; }
  .footer-lang-menu{ position:static; margin-top:8px; }
  .hero-credit{ display:none; }
  .hero-actions{ margin-bottom: 20px; }
  .media-head{ align-items:start; flex-direction:column; gap:16px; }
  .gallery-block + .gallery-block{ margin-top:48px; }
  .gallery-label-row{ align-items:start; flex-direction:column; gap:6px; }
  .photo-gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:150px; }
  .gallery-photo,.gallery-photo-wide{ grid-column:span 1; }
  .gallery-photo-featured{ grid-column:span 2; grid-row:span 2; border-radius:18px; }
  .video-gallery-grid{ grid-template-columns:1fr; }
  .video-link-card{ grid-column:1; min-height:260px; }
}
@media (max-width: 400px){
  .hero-title{ font-size: clamp(1.6rem, 9.3vw, 2.6rem); }
}
