/* ============ Header / Nav ============ */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(15, 44, 79, .82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header-inner {
  display: flex; align-items: center; gap: var(--sp-5);
  padding: var(--sp-3) 0;
}
.brand-lockup {
  display: flex; align-items: center; gap: var(--sp-3);
  color: #fff; font-weight: 700; font-family: var(--font-display);
  letter-spacing: .01em;
}
.brand-lockup img { height: 36px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
.brand-lockup .brand-name { font-size: 1.15rem; }
.brand-lockup .brand-tag {
  font-size: .72rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-accent);
  display: block; line-height: 1;
}
.brand-lockup:hover { color: var(--brand-accent); }

.site-nav { margin-left: auto; }
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: var(--sp-5); align-items: center;
}
.site-nav > ul > li { position: relative; }
.site-nav a,
.site-nav .nav-group-trigger {
  color: rgba(255,255,255,.86); font-weight: 500; font-size: .95rem;
  padding: var(--sp-2) 0; position: relative;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav .nav-group-trigger:hover { color: #fff; }
.site-nav a.is-active,
.site-nav .nav-group-trigger.is-active { color: var(--brand-accent); }
.site-nav a.is-active::after,
.site-nav .nav-group-trigger.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--brand-accent); border-radius: 2px;
}

/* Nav dropdown trigger + panel */
.site-nav .nav-group-trigger {
  background: transparent; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit;
}
.site-nav .nav-caret {
  width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--dur-fast) var(--ease);
  opacity: .8;
}
.site-nav .nav-group-trigger[aria-expanded="true"] .nav-caret {
  transform: rotate(-135deg) translate(-2px, -2px);
}
.site-nav .nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  min-width: 260px;
  background: #FFFFFF;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(15, 44, 79, .22);
  padding: 8px;
  display: flex; flex-direction: column; gap: 2px;
  z-index: 60;
}
.site-nav .nav-dropdown[hidden] { display: none; }
.site-nav .nav-dropdown::before {
  content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #fff;
  border-left: 1px solid var(--line); border-top: 1px solid var(--line);
}
.site-nav .nav-dropdown-item {
  display: block; padding: 10px 12px; border-radius: var(--radius-sm);
  color: var(--ink); font-weight: 600; font-size: .94rem;
  white-space: normal;
}
.site-nav .nav-dropdown-item:hover { background: var(--bg-soft); color: var(--brand-primary); }
.site-nav .nav-dropdown-item.is-active { background: rgba(245,185,66,.14); color: var(--brand-primary); }
.site-nav .nav-dropdown-item.is-active::after { display: none; }
.site-nav .nav-dropdown-label { display: block; }
.site-nav .nav-dropdown-desc {
  display: block; margin-top: 2px;
  font-size: .78rem; font-weight: 400; color: var(--muted);
  line-height: 1.35;
}

.lang-badge {
  border: 1px solid rgba(255,255,255,.2); padding: 4px 10px;
  border-radius: var(--radius-pill); font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.85); letter-spacing: .08em;
}

.nav-toggle {
  display: none; background: transparent; border: 0; color: #fff;
  padding: 8px; cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .site-nav {
    position: fixed; inset: 64px 0 auto 0;
    background: var(--bg-navy);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: var(--sp-4);
    transform: translateY(-120%);
    transition: transform var(--dur) var(--ease);
    margin-left: 0;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: var(--sp-3); }
  .site-nav a, .site-nav .nav-group-trigger { padding: var(--sp-3); border-radius: var(--radius-sm); width: 100%; text-align: left; }
  .site-nav a:hover, .site-nav a.is-active { background: rgba(255,255,255,.05); }
  .site-nav .nav-group-trigger { justify-content: space-between; }
  .site-nav .nav-dropdown {
    position: static; transform: none; min-width: 0;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    box-shadow: none; padding: 6px; margin-top: 6px;
  }
  .site-nav .nav-dropdown::before { display: none; }
  .site-nav .nav-dropdown-item { color: rgba(255,255,255,.86); font-weight: 500; }
  .site-nav .nav-dropdown-item:hover { background: rgba(255,255,255,.06); color: #fff; }
  .site-nav .nav-dropdown-item.is-active { background: rgba(245,185,66,.14); color: var(--brand-accent); }
  .site-nav .nav-dropdown-desc { color: rgba(255,255,255,.55); }
  .lang-badge { align-self: flex-start; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-family: var(--font-sans); font-weight: 600; font-size: .94rem;
  padding: 12px 20px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-warm) 100%);
  color: var(--brand-primary);
  box-shadow: 0 10px 24px rgba(245, 185, 66, .35);
}
.btn-primary:hover { color: var(--brand-primary); box-shadow: 0 14px 30px rgba(245, 185, 66, .5); }
.btn-ghost {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover { color: var(--brand-primary); background: #fff; border-color: #fff; }
.btn-outline {
  background: transparent; color: var(--brand-primary);
  border-color: var(--brand-primary-3);
}
.btn-outline:hover { background: var(--brand-primary); color: #fff; }

/* ============ HERO ============ */
.hero {
  position: relative; isolation: isolate;
  color: #fff;
  background:
    radial-gradient(ellipse 60% 45% at 70% 15%, rgba(46,139,148,.35) 0%, transparent 60%),
    radial-gradient(ellipse 55% 40% at 25% 10%, rgba(245,185,66,.20) 0%, transparent 65%),
    linear-gradient(180deg, #0F2C4F 0%, #0A2138 100%);
  padding-block: clamp(4rem, 8vw, 7rem) clamp(6rem, 10vw, 9rem);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: auto 0 -1px 0; height: 120px;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(255,255,255,.06), transparent 70%);
  pointer-events: none;
}
.hero-bridge {
  position: absolute; left: 50%; bottom: -20px; transform: translateX(-50%);
  width: min(140%, 1600px); height: auto; opacity: .18; pointer-events: none;
  z-index: 0;
}
.hero-stars {
  position: absolute; inset: 0; opacity: .35; pointer-events: none; z-index: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.6) 50%, transparent 51%),
    radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,.5) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 40% 60%, rgba(255,255,255,.35) 50%, transparent 51%),
    radial-gradient(1px 1px at 85% 55%, rgba(255,255,255,.45) 50%, transparent 51%),
    radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,.4) 50%, transparent 51%);
  background-size: 400px 400px, 500px 500px, 300px 300px, 350px 350px, 450px 450px;
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: var(--sp-4);
  text-align: center;
}
.hero-flags {
  display: inline-flex; gap: var(--sp-4); align-items: center; justify-content: center;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-pill);
  margin: 0;
}
.hero-flags .flag {
  width: 34px; height: 34px; border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,.35), inset 0 0 0 2px rgba(255,255,255,.5);
  background-size: cover; background-position: center;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  position: relative;
}
.hero-flags .flag:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.5), inset 0 0 0 2px rgba(245,185,66,.85);
  z-index: 2;
}
.hero-flags .flag[data-label]::after {
  content: attr(data-label);
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  padding: 4px 10px; border-radius: 999px;
  background: var(--brand-accent); color: var(--brand-primary);
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transform-origin: bottom center;
  transition: opacity var(--dur-fast) var(--ease);
}
.hero-flags .flag:hover[data-label]::after { opacity: 1; }
.hero-flags .flag-label {
  font-size: var(--fs-xs); letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.75); font-weight: 600;
}
/* Flags — inline SVG data URIs. Circular clip is applied by the parent .flag rules.
   Accurate at 22px (booklet placeholder) up to 40px (partner cards). */
.flag-sk {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect width='100' height='34' fill='%23ffffff'/><rect y='33' width='100' height='34' fill='%230B4EA2'/><rect y='66' width='100' height='34' fill='%23EE1C25'/><path d='M 24,34 L 46,34 L 46,60 Q 46,72 35,78 Q 24,72 24,60 Z' fill='%23EE1C25' stroke='%23ffffff' stroke-width='1.5'/><path d='M 35,40 L 35,72' stroke='%23ffffff' stroke-width='2.4' fill='none' stroke-linecap='round'/><path d='M 29,50 L 41,50' stroke='%23ffffff' stroke-width='2.4' fill='none' stroke-linecap='round'/><path d='M 27,58 L 43,58' stroke='%23ffffff' stroke-width='2.4' fill='none' stroke-linecap='round'/></svg>") center/cover no-repeat;
}
.flag-tr {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect width='100' height='100' fill='%23E30A17'/><circle cx='42' cy='50' r='18' fill='%23ffffff'/><circle cx='47' cy='50' r='14' fill='%23E30A17'/><polygon points='67,40 69.2,46.9 76.5,46.9 70.6,51.2 72.9,58.1 67,53.8 61.1,58.1 63.4,51.2 57.5,46.9 64.8,46.9' fill='%23ffffff'/></svg>") center/cover no-repeat;
}
.flag-ro {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect width='34' height='100' fill='%23002B7F'/><rect x='33' width='34' height='100' fill='%23FCD116'/><rect x='66' width='34' height='100' fill='%23CE1126'/></svg>") center/cover no-repeat;
}
.flag-hu {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect width='100' height='34' fill='%23CE2939'/><rect y='33' width='100' height='34' fill='%23ffffff'/><rect y='66' width='100' height='34' fill='%23477050'/></svg>") center/cover no-repeat;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: rgba(245,185,66,.14);
  border: 1px solid rgba(245,185,66,.4);
  color: var(--brand-accent);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  margin: 0;
}
.hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: var(--fs-hero); letter-spacing: -.025em; line-height: 1.08;
  margin: 0 0 var(--sp-4);
  background: linear-gradient(180deg, #fff 40%, #C7DDF7 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-title .accent {
  background: linear-gradient(90deg, var(--brand-accent) 0%, var(--brand-accent-hi) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: clamp(.97rem, 1.15vw, 1.09rem);
  color: rgba(255,255,255,.85);
  max-width: 660px; margin: 0;
}
.hero-title { margin: 0; }
.hero-ctas { display: inline-flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; margin-top: var(--sp-3); }

.hero-cofunded {
  position: absolute; top: var(--sp-5); right: var(--sp-5);
  background: rgba(255,255,255,.96);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  z-index: 3;
}
.hero-cofunded img { height: 34px; width: auto; }
@media (max-width: 720px) {
  .hero-cofunded { position: static; display: inline-flex; margin: var(--sp-4) auto 0; }
}

/* Hero project badge top-left */
.hero-project {
  position: absolute; top: var(--sp-5); left: var(--sp-5); z-index: 3;
  display: inline-flex; align-items: center; gap: var(--sp-3);
  color: rgba(255,255,255,.85);
  font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
}
.hero-project::before {
  content: ""; width: 30px; height: 2px; background: var(--brand-accent);
}
@media (max-width: 720px) { .hero-project { display: none; } }

/* ============ Sections ============ */
.section-title {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-4);
  flex-wrap: wrap; margin-bottom: var(--sp-6);
}
.section-title h2 { margin: 0; }
.section-title .see-all { color: var(--brand-primary-3); font-weight: 600; }

/* ============ Cards: Story ============ */
.story-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  height: 100%;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-accent);
}
.story-card .cover {
  position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--bg-soft);
}
.story-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.story-card:hover .cover img { transform: scale(1.04); }
.story-card .cover.no-img {
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-3) 100%);
  color: rgba(255,255,255,.85);
}
.story-card .cover.no-img svg { width: 60px; height: 60px; opacity: .6; }
.story-card .cover.cover-placeholder {
  position: relative; background: transparent;
  display: block; padding: 0;
}
.story-card .cover.cover-placeholder svg { width: 100%; height: 100%; opacity: 1; display: block; }
.story-card .cover-initials {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 4.2rem; letter-spacing: -.02em;
  color: rgba(255,255,255,.94);
  text-shadow: 0 4px 20px rgba(0,0,0,.35);
  pointer-events: none;
}
.story-card .type-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  background: rgba(15,44,79,.85); color: #fff;
  display: inline-flex; align-items: center; gap: 6px;
}
.story-card .type-badge.written { background: rgba(46,139,148,.9); }
.story-card .type-badge.video { background: rgba(180,50,42,.9); }
.story-card .body {
  padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); flex-grow: 1;
}
.story-card h3 { font-size: 1.18rem; margin: 0; color: var(--ink); }
.story-card .summary { color: var(--muted); font-size: .95rem; margin: 0; }
.story-card .meta {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: var(--fs-xs); color: var(--muted-2); letter-spacing: .05em;
  margin-top: auto;
}
.story-card .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-2); }

/* Like heart button on the meta strip */
.card-like {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px 4px 8px;
  margin-left: auto;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-family: inherit;
  font-size: .82rem; font-weight: 600;
  cursor: pointer;
  position: relative; z-index: 2;
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}
.card-like svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform var(--dur-fast) var(--ease); }
.card-like:hover { color: var(--danger); border-color: rgba(180,50,42,.25); background: #fff; }
.card-like:hover svg { transform: scale(1.15); }
.card-like.is-liked {
  color: #b4322a;
  background: rgba(180,50,42,.08);
  border-color: rgba(180,50,42,.35);
}
.card-like.is-liked svg { fill: #b4322a; stroke: #b4322a; }
.card-like.is-pulse svg { animation: heartPulse .6s var(--ease); }
.card-like[data-busy="1"] { cursor: progress; opacity: .7; }
@keyframes heartPulse {
  0% { transform: scale(1); }
  30% { transform: scale(1.35); }
  55% { transform: scale(.92); }
  100% { transform: scale(1); }
}
.story-card .storyteller {
  display: flex; align-items: center; gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px dashed var(--line);
}
.story-card .storyteller .avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-soft) center/cover no-repeat;
  border: 2px solid var(--brand-accent);
  display: grid; place-items: center;
  font-weight: 700; color: var(--brand-primary); font-size: .85rem;
}
.story-card .storyteller .who { font-size: .88rem; color: var(--ink); font-weight: 600; }
.story-card .storyteller .where { font-size: .78rem; color: var(--muted); }
.story-card a.card-link {
  position: absolute; inset: 0; text-indent: -9999px; z-index: 1;
}

/* Featured (large) */
.story-card.featured { grid-column: span 2; flex-direction: row; }
.story-card.featured .cover { aspect-ratio: auto; flex-basis: 55%; }
.story-card.featured .body { flex-basis: 45%; padding: var(--sp-6); }
@media (max-width: 820px) { .story-card.featured { grid-column: auto; flex-direction: column; } .story-card.featured .cover { aspect-ratio: 4/3; } }

/* ============ Chips ============ */
.chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: rgba(46,139,148,.10); color: var(--brand-accent-2);
  border: 1px solid rgba(46,139,148,.25);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .04em;
}
.chip.warm { background: rgba(245,185,66,.12); color: #A6741A; border-color: rgba(245,185,66,.35); }
.chip.navy { background: rgba(15,44,79,.08); color: var(--brand-primary); border-color: rgba(15,44,79,.15); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }

/* ============ Audience router tiles ============ */
.audience-grid {
  display: grid; gap: var(--sp-4);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.audience-tile {
  position: relative;
  padding: var(--sp-6);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  overflow: hidden;
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.audience-tile::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-accent-2));
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.audience-tile:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--brand-accent);
}
.audience-tile:hover::before { opacity: 1; }
.audience-tile .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,185,66,.15), rgba(46,139,148,.12));
  display: grid; place-items: center; color: var(--brand-primary);
}
.audience-tile .icon svg { width: 24px; height: 24px; }
.audience-tile h3 { font-size: 1.05rem; margin: 0; color: var(--brand-primary); }
.audience-tile p { color: var(--muted); font-size: .92rem; margin: 0; }
.audience-tile .arrow {
  margin-top: auto; color: var(--brand-primary-3); font-weight: 600; font-size: .9rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.audience-tile a.card-link { position: absolute; inset: 0; text-indent: -9999px; z-index: 1; }

/* ============ Metric counters ============ */
.metric-grid {
  display: grid; gap: var(--sp-4);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.metric-card {
  padding: var(--sp-5); text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.10);
}
.metric-card .value {
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem;
  color: var(--brand-accent); line-height: 1;
  display: block; margin-bottom: 6px;
}
.metric-card .label {
  font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.75); font-weight: 600;
}
.metric-card.on-light .value { color: var(--brand-primary); }
.metric-card.on-light { background: #fff; border-color: var(--line); }
.metric-card.on-light .label { color: var(--muted); }

/* ============ Quote block ============ */
.pull-quote {
  position: relative; text-align: center; padding: var(--sp-7) var(--sp-5);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 0%, rgba(245,185,66,.25), transparent 55%),
    linear-gradient(180deg, var(--brand-primary) 0%, var(--brand-primary-2) 100%);
  color: #fff;
  overflow: hidden;
}
.pull-quote::before {
  content: "\201C"; position: absolute; top: -18px; left: 24px;
  font-family: Georgia, serif; font-size: 8rem; line-height: 1;
  color: rgba(245,185,66,.14); pointer-events: none;
}
.pull-quote blockquote {
  font-family: var(--font-serif); font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.45; margin: 0 auto var(--sp-4); max-width: 640px; font-weight: 500;
  color: #fff;
}
.pull-quote .attribution {
  font-size: var(--fs-sm); color: rgba(255,255,255,.7);
  letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
}

/* ============ Video card ============ */
.video-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--brand-primary); color: #fff;
  aspect-ratio: 16/9;
}
.video-card.reel { aspect-ratio: 9/16; }
.video-card .poster { width: 100%; height: 100%; object-fit: cover; opacity: .78; transition: opacity var(--dur) var(--ease); }
.video-card:hover .poster { opacity: .55; }
.video-card .play {
  position: absolute; inset: 0; display: grid; place-items: center;
  cursor: pointer; background: transparent; border: 0; color: #fff;
}
.video-card .play::before {
  content: ""; width: 62px; height: 62px; border-radius: 50%;
  background: rgba(245,185,66,.95); display: block;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: transform var(--dur) var(--ease);
}
.video-card .play::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-40%, -50%);
  width: 0; height: 0;
  border-top: 12px solid transparent; border-bottom: 12px solid transparent;
  border-left: 18px solid var(--brand-primary);
}
.video-card:hover .play::before { transform: scale(1.08); }
.video-card .meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--sp-4); background: linear-gradient(180deg, transparent, rgba(0,0,0,.75));
}
.video-card .meta h4 { color: #fff; margin: 0 0 4px; font-size: 1.02rem; font-weight: 600; }
.video-card .meta .sub { font-size: .82rem; color: rgba(255,255,255,.75); }
.video-card .duration {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,.6); color: #fff; padding: 3px 8px; border-radius: 6px;
  font-size: .78rem; font-weight: 600;
}
.video-card .cc {
  position: absolute; top: 12px; left: 12px;
  background: rgba(245,185,66,.95); color: var(--brand-primary);
  padding: 3px 8px; border-radius: 6px; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em;
}

/* ============ Quote wall (masonry-ish) ============ */
.quote-grid { display: grid; gap: var(--sp-4); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.quote-card {
  padding: var(--sp-5); border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #fff 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: var(--sp-3);
  min-height: 200px; position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.quote-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.quote-card::before {
  content: "\201C"; font-family: Georgia, serif; font-size: 5rem; line-height: 0.6;
  color: var(--brand-accent); opacity: .3; position: absolute; top: 12px; right: 20px;
}
.quote-card blockquote { margin: 0; font-family: var(--font-serif); font-size: 1.08rem; color: var(--ink); line-height: 1.45; }
.quote-card .who { font-size: .82rem; color: var(--muted); font-weight: 600; letter-spacing: .05em; margin-top: auto; }
.quote-card .who a { color: var(--brand-primary-3); }

/* ============ Filter bar ============ */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: var(--sp-3);
  padding: var(--sp-4); background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  align-items: center; margin-bottom: var(--sp-6);
  box-shadow: var(--shadow-sm);
}
.filter-bar label { font-size: .8rem; color: var(--muted); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.filter-bar select, .filter-bar input[type="search"] {
  font-family: inherit; font-size: .95rem; padding: 10px 14px;
  border: 1px solid var(--line-2); border-radius: var(--radius-pill);
  background: var(--bg); color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  min-width: 160px;
}
.filter-bar select:focus, .filter-bar input[type="search"]:focus {
  border-color: var(--brand-accent); box-shadow: var(--shadow-glow); outline: none;
}
.filter-bar .result-count { margin-left: auto; color: var(--muted); font-size: .88rem; }

/* ============ Partner card ============ */
.partner-card {
  padding: var(--sp-5);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: #fff; display: flex; flex-direction: column; gap: var(--sp-3);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.partner-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.partner-card .head { display: flex; align-items: center; gap: var(--sp-3); }
.partner-card .flag {
  width: 40px; height: 40px; border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.6), 0 4px 10px rgba(0,0,0,.15);
}
.partner-card h3 { margin: 0; font-size: 1.05rem; }
.partner-card .country { font-size: .82rem; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; font-weight: 600; }
.partner-card .role { color: var(--muted); font-size: .95rem; }
.partner-card.lead { border-color: var(--brand-accent); background: linear-gradient(180deg, #fff, rgba(245,185,66,.06)); }
.partner-card.lead .badge {
  display: inline-block; padding: 3px 10px; background: var(--brand-accent); color: var(--brand-primary);
  border-radius: var(--radius-pill); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--brand-primary);
  color: rgba(255,255,255,.82);
  padding-block: var(--sp-8) var(--sp-5);
}
.footer-grid {
  display: grid; gap: var(--sp-6);
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  color: #fff; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: var(--sp-3); font-weight: 700;
}
.footer-col a { display: block; padding: 4px 0; color: rgba(255,255,255,.75); font-size: .92rem; }
.footer-col a:hover { color: var(--brand-accent); }
.footer-brand p { color: rgba(255,255,255,.7); font-size: .92rem; max-width: 32ch; }
.footer-cofunded {
  background: #fff; padding: 10px 14px; border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; gap: var(--sp-3);
  margin-top: var(--sp-3);
}
.footer-cofunded img { height: 38px; width: auto; }
.footer-disclaimer {
  padding-top: var(--sp-5); font-size: .78rem; color: rgba(255,255,255,.55);
  max-width: 900px; line-height: 1.55;
}
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-3);
  padding-top: var(--sp-4); font-size: .8rem; color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); margin-left: var(--sp-3); }
.footer-bottom a:hover { color: var(--brand-accent); }
.socials {
  display: inline-flex; gap: 10px; margin-top: var(--sp-3);
}
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  color: #fff; transition: background var(--dur-fast) var(--ease);
}
.socials a:hover { background: var(--brand-accent); color: var(--brand-primary); }
.socials svg { width: 18px; height: 18px; }

/* ============ Story detail page ============ */
.story-hero {
  position: relative; padding-block: var(--sp-7) var(--sp-6);
  background: linear-gradient(180deg, var(--brand-primary) 0%, var(--brand-primary-2) 100%);
  color: #fff; overflow: hidden;
}
.story-hero .back { color: rgba(255,255,255,.8); font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; margin-bottom: var(--sp-4); }
.story-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.4rem); max-width: 24ch; margin-bottom: var(--sp-4); }
.story-hero h2, .story-hero h3 { color: #fff; }
.story-hero .story-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4);
  color: rgba(255,255,255,.75); font-size: .92rem;
}
.story-hero .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-primary-3) center/cover no-repeat;
  border: 2px solid var(--brand-accent);
  display: grid; place-items: center; font-weight: 700; color: #fff;
}
.story-body {
  max-width: var(--maxw-text); margin: 0 auto; padding-block: var(--sp-7);
  font-family: var(--font-serif); font-size: 1.15rem; line-height: 1.72; color: var(--ink);
}
.story-body h2 { font-family: var(--font-display); font-size: 1.6rem; margin-top: var(--sp-6); }
.story-body h3 { font-family: var(--font-display); font-size: 1.3rem; margin-top: var(--sp-5); }
.story-body blockquote {
  margin: var(--sp-5) 0; padding: var(--sp-4) var(--sp-5);
  border-left: 4px solid var(--brand-accent);
  background: var(--bg-soft); border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--brand-primary); font-style: italic; font-size: 1.2rem;
}
.story-body img { border-radius: var(--radius); margin: var(--sp-4) 0; }

/* Big like button on the story detail page — sits above the share bar */
.story-like {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  margin: var(--sp-6) 0 var(--sp-3);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--brand-primary);
  font-family: inherit;
  font-size: 1rem; font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.story-like svg { width: 22px; height: 22px; transition: transform var(--dur-fast) var(--ease); }
.story-like:hover {
  color: var(--danger); border-color: rgba(180,50,42,.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(180,50,42,.14);
}
.story-like:hover svg { transform: scale(1.15); }
.story-like .story-like-count {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
}
.story-like .story-like-label { font-weight: 500; color: var(--muted); }
.story-like.is-liked {
  color: #b4322a;
  border-color: rgba(180,50,42,.5);
  background: rgba(180,50,42,.06);
}
.story-like.is-liked svg { fill: #b4322a; stroke: #b4322a; }
.story-like.is-liked .story-like-label { color: #b4322a; }
.story-like.is-pulse svg { animation: heartPulse .6s var(--ease); }
.story-like[data-busy="1"] { cursor: progress; opacity: .7; }

.share-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2);
  padding: var(--sp-4); background: var(--bg-soft); border-radius: var(--radius);
  margin-top: var(--sp-4);
}
.share-bar span { font-size: .82rem; color: var(--muted); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-right: var(--sp-3); }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px;
  border-radius: var(--radius-pill); background: #fff; border: 1px solid var(--line);
  color: var(--ink); font-size: .88rem; font-weight: 500; cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.share-btn:hover { border-color: var(--brand-accent); color: var(--brand-primary); }
.share-btn svg { width: 16px; height: 16px; }

/* ============ Impact page ============ */
.impact-hero { background: linear-gradient(180deg, var(--brand-primary), var(--brand-primary-2)); color: #fff; padding-block: var(--sp-8); }
.impact-hero h1 { color: #fff; }

/* ============ Utility for icons ============ */
.icon-svg { width: 20px; height: 20px; }

/* =====================================================================
   HERO — animated background layers + entry choreography
   All decorative, aria-hidden. Fully suppressed under prefers-reduced-motion.
   ===================================================================== */

/* Drifting warm/teal orbs (behind stars, behind content) */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(90px); z-index: 0;
  will-change: transform;
  mix-blend-mode: screen;
}
.hero-orb-1 {
  top: 8%; left: -6%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,185,66,.75) 0%, rgba(245,185,66,0) 65%);
  opacity: .55;
  animation: orbDrift1 22s ease-in-out infinite;
}
.hero-orb-2 {
  top: 28%; right: -8%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(46,139,148,.85) 0%, rgba(46,139,148,0) 65%);
  opacity: .55;
  animation: orbDrift2 26s ease-in-out infinite;
}
.hero-orb-3 {
  bottom: 5%; left: 32%;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(242,163,101,.55) 0%, rgba(242,163,101,0) 65%);
  opacity: .4;
  animation: orbDrift3 30s ease-in-out infinite;
}
@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(60px, 30px) scale(1.12); }
  66%      { transform: translate(120px, -20px) scale(1.05); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-80px, 60px) scale(1.15); }
}
@keyframes orbDrift3 {
  0%, 100% { transform: translate(0, 0) scale(.92); }
  50%      { transform: translate(60px, -40px) scale(1.15); }
}

/* Aurora ribbon — a broad, blurred, gently drifting band across mid-hero */
.hero-aurora {
  position: absolute; left: -20%; right: -20%;
  top: 42%; height: 260px; transform: translateY(-50%);
  z-index: 0; pointer-events: none;
  background: linear-gradient(90deg,
    rgba(245,185,66,0) 0%,
    rgba(245,185,66,.10) 20%,
    rgba(46,139,148,.18) 45%,
    rgba(255,255,255,.06) 55%,
    rgba(46,139,148,.14) 70%,
    rgba(245,185,66,.08) 85%,
    rgba(245,185,66,0) 100%);
  filter: blur(60px);
  animation: auroraShift 14s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes auroraShift {
  from { transform: translateY(-50%) translateX(-8%); }
  to   { transform: translateY(-42%) translateX(8%); }
}

/* Twinkle the existing stars pattern */
.hero-stars { animation: starPulse 6s ease-in-out infinite alternate; }
@keyframes starPulse {
  from { opacity: .25; }
  to   { opacity: .5; }
}

/* Staggered fade-up on hero content children */
.hero .hero-flags,
.hero .hero-eyebrow,
.hero .hero-title,
.hero .hero-sub,
.hero .hero-ctas {
  opacity: 0;
  animation: heroFadeUp .9s cubic-bezier(.2,.8,.2,1) both;
}
.hero .hero-flags   { animation-delay: .10s; }
.hero .hero-eyebrow { animation-delay: .28s; }
.hero .hero-title   { animation-delay: .46s; }
.hero .hero-sub     { animation-delay: .70s; }
.hero .hero-ctas    { animation-delay: .95s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Bridge arc draw-in on load */
.hero-bridge path {
  stroke-dasharray: 4000;
  stroke-dashoffset: 4000;
  animation: bridgeDraw 3.2s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: 1.2s;
}
.hero-bridge path:nth-child(2) { animation-delay: 1.6s; }
@keyframes bridgeDraw {
  to { stroke-dashoffset: 0; }
}
.hero-bridge g line {
  opacity: 0;
  animation: pillarFade 1s ease-out forwards;
}
.hero-bridge g line:nth-child(1) { animation-delay: 3.0s; }
.hero-bridge g line:nth-child(2) { animation-delay: 3.15s; }
.hero-bridge g line:nth-child(3) { animation-delay: 3.30s; }
.hero-bridge g line:nth-child(4) { animation-delay: 3.45s; }
.hero-bridge g line:nth-child(5) { animation-delay: 3.60s; }
.hero-bridge g line:nth-child(6) { animation-delay: 3.75s; }
.hero-bridge g line:nth-child(7) { animation-delay: 3.90s; }
@keyframes pillarFade { to { opacity: 1; } }

/* Continuous accent word shimmer inside the hero title */
.hero-title .accent {
  background: linear-gradient(90deg,
    #F5B942 0%,
    #FFE49B 25%,
    #F5B942 50%,
    #FFE49B 75%,
    #F5B942 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: accentShine 5s linear infinite;
}
@keyframes accentShine {
  from { background-position: 250% 0; }
  to   { background-position: -250% 0; }
}

/* Respect reduced-motion — kill decorative motion, keep content visible */
@media (prefers-reduced-motion: reduce) {
  .hero-orb, .hero-aurora, .hero-stars,
  .hero-bridge path, .hero-bridge g line,
  .hero-title .accent {
    animation: none !important;
  }
  .hero-bridge path { stroke-dashoffset: 0; }
  .hero-bridge g line { opacity: 1; }
  .hero .hero-flags,
  .hero .hero-eyebrow,
  .hero .hero-title,
  .hero .hero-sub,
  .hero .hero-ctas {
    opacity: 1;
    animation: none !important;
  }
}
