﻿/*
Theme Name: ISRAND Shared Base
Theme URI: https://www.isrand.org
Author: ISRAND Digital, Data & Technology Division
Author URI: https://www.isrand.org
Description: Shared base theme for ISRAND websites. Includes the current English visual system and an RTL-ready foundation for localized Dari/Pashto deployments.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: isrand
Tags: research, academic, nonprofit, blog, custom-header, custom-menu, featured-images, full-width-template, sticky-post, threaded-comments, translation-ready
*/

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --font-body:   'DM Sans', 'Segoe UI', system-ui, sans-serif;
  --font-display:'Playfair Display', Georgia, serif;
  --gold-rgb:    134, 97, 20;
  --gold-light-rgb: 212, 169, 67;
  --navy:        #0d1f3c;
  --navy-mid:    #162d52;
  --navy-dark:   #080f1e;
  --gold:        #866114;
  --gold-light:  #d4a943;
  --gold-pale:   #f0dda0;
  --gold-bg:     rgb(var(--gold-rgb) / 0.08);
  --gold-light-bg: rgb(var(--gold-light-rgb) / 0.12);
  --cream:       #f7f3ec;
  --white:       #ffffff;
  --text:        #15233a;
  --muted:       #5b6575;
  --border:      rgb(var(--gold-rgb) / 0.18);
  --border-light: rgba(13,31,60,0.08);
  --shadow:      0 10px 28px rgba(13,31,60,0.07);
  --shadow-lg:   0 20px 48px rgba(13,31,60,0.12);
  --radius:      6px;
  --transition:  0.25s ease;
  --max-width:   1240px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
}
h3, h4 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 4.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1em; color: var(--muted); line-height: 1.75; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 600; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--navy); }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }

/* EYEBROW */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
  color: var(--gold); margin-bottom: 14px;
}
.eyebrow-xs { font-size: 0.62rem; }
.eyebrow::after { content: ''; width: 36px; height: 1px; background: var(--gold); }
.eyebrow-light { color: var(--gold-light); }
.eyebrow-light::after { background: var(--gold-light); }

.section-header { margin-bottom: 52px; }
.section-header h2 { margin-bottom: 16px; }
.section-header .lead {
  font-size: 1.05rem; line-height: 1.8;
  color: var(--muted); max-width: 640px;
}
.section-header .lead-light { color: rgba(255,255,255,0.6); }
.section-header h2.light { color: var(--white); }

/* Editorial hierarchy refinement */
.challenge-card h4,
.pillar-item h4,
.proj-card h4,
.gov-card h4,
.structure-box h4,
.mem-card h4,
.partner-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* GRID */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: all var(--transition);
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); }
.btn-outline-gold {
  border: 1.5px solid var(--gold); color: var(--gold); background: transparent;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.4); color: var(--white); background: transparent;
}
.btn-outline-white:hover { border-color: var(--gold-light); color: var(--gold-light); background: var(--gold-light-bg); }
.btn-sm { padding: 8px 18px; font-size: 0.75rem; }

/* TAGS */
.tag {
  display: inline-block;
  font-size: 0.67rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500;
  padding: 4px 10px; border-radius: 2px;
  background: var(--gold-bg); color: var(--gold);
  border: 1px solid var(--border);
}
.tag-navy { background: rgba(13,31,60,0.08); color: var(--navy); border-color: rgba(13,31,60,0.15); }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,31,60,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px;
  padding: 16px 40px; max-width: var(--max-width); margin: 0 auto;
}
/* LOGO */
.site-logo {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  flex: 0 0 auto;
  min-width: 0;
}
.site-logo img {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--gold-light); object-fit: cover;
}
.site-logo-fallback {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--gold-light); background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); color: var(--gold-light); font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.logo-text { color: var(--white); }
.logo-text strong {
  display: block; font-family: var(--font-display);
  font-size: 1.05rem; letter-spacing: 0.03em;
}
.logo-text span {
  display: block; font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-light); margin-top: 2px;
}
/* MAIN NAV */
#primary-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}
#primary-navigation > ul {
  display: flex; align-items: center; justify-content: center; gap: 2px;
  margin: 0; padding: 0;
}
#primary-navigation li { position: relative; }
#primary-navigation > ul > li > a {
  display: block; padding: 10px 12px;
  color: rgba(255,255,255,0.78); font-size: 0.78rem;
  letter-spacing: 0.03em; text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius); transition: all var(--transition);
  white-space: nowrap;
}
#primary-navigation > ul > li > a:hover,
#primary-navigation > ul > li.current-menu-item > a,
#primary-navigation > ul > li.current-menu-ancestor > a {
  color: var(--gold-light); background: rgba(255,255,255,0.05);
}
/* DROPDOWN */
#primary-navigation .sub-menu {
  position: absolute; top: calc(100% + 4px); left: 0;
  min-width: 220px;
  background: var(--navy-dark); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.2s;
  box-shadow: var(--shadow-lg);
}
#primary-navigation li:hover > .sub-menu,
#primary-navigation li:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
#primary-navigation .sub-menu a {
  display: block; padding: 10px 18px;
  color: rgba(255,255,255,0.68); font-size: 0.78rem;
  transition: all var(--transition);
  white-space: nowrap;
}
#primary-navigation .sub-menu a:hover { color: var(--gold-light); background: var(--gold-bg); }
/* HEADER CTA */
.header-cta { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
/* HAMBURGER */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; background: none; border: none;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO - FRONT PAGE
   ============================================================ */
.hero-section {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(134,97,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134,97,20,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-bg-radial {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 60% at 72% 38%, rgba(134,97,20,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 18% 78%, rgba(134,97,20,0.05) 0%, transparent 55%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px;
  animation: heroFadeUp 0.9s 0.1s both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border); padding: 7px 16px;
  border-radius: 2px; margin-bottom: 32px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-light); animation: blink 2s infinite;
}
.hero-badge span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); }
.hero-section h1 { color: var(--white); margin-bottom: 24px; }
.hero-section h1 em { color: var(--gold-light); font-style: normal; }
.hero-lead {
  font-size: 1.08rem; line-height: 1.8;
  color: rgba(255,255,255,0.62); max-width: 580px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  position: absolute; right: 0; bottom: 80px; z-index: 2;
  display: flex; flex-direction: column; gap: 24px; padding-right: 40px;
  animation: heroFadeUp 1s 0.5s both;
}
.hero-stat { text-align: right; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem; color: var(--gold-light); line-height: 1;
}
.hero-stat-label {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-top: 4px;
}
@keyframes heroFadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ============================================================
   CHALLENGE STRIP
   ============================================================ */
.challenge-grid { align-items: start; gap: 64px; }
.challenge-cards { display: flex; flex-direction: column; gap: 14px; }
.challenge-card {
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: border-color var(--transition), background var(--transition);
}
.challenge-card:hover { background: #f0e9d8; }
.challenge-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.challenge-card p { font-size: 0.87rem; margin-bottom: 0; }

/* ============================================================
   MISSION CARDS
   ============================================================ */
.mission-card {
  border: 1px solid rgba(134,97,20,0.2);
  padding: 32px 24px; border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  transition: all var(--transition);
  display: flex; flex-direction: column; height: 100%;
}
.mission-card:hover { border-color: var(--gold); background: rgba(134,97,20,0.06); }
.mission-icon {
  width: 46px; height: 46px;
  background: rgba(134,97,20,0.15);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 20px;
  color: var(--gold-light); line-height: 1;
}
.mission-card h4 { color: var(--gold-light); margin-bottom: 10px; }
.mission-card p { color: rgba(255,255,255,0.68); font-size: 0.85rem; margin-bottom: 0; }

/* ============================================================
   VALUES
   ============================================================ */
.value-card {
  text-align: center; padding: 36px 20px;
  border: 1px solid var(--border);
  background: var(--white); border-radius: var(--radius);
  transition: all var(--transition);
  display: flex; flex-direction: column; align-items: center; height: 100%;
}
.value-card:hover { box-shadow: 0 8px 32px rgba(134,97,20,0.1); transform: translateY(-4px); }
.value-symbol { font-size: 1.9rem; margin-bottom: 16px; color: var(--gold); line-height: 1; }
.value-card h4 { color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.82rem; margin-bottom: 0; flex: 1; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars-row {
  display: grid; grid-template-columns: repeat(5,1fr);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.pillar-item {
  padding: 36px 24px; border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.pillar-item:last-child { border-right: none; }
.pillar-item:hover { background: var(--cream); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 2.4rem; color: var(--gold-pale); line-height: 1; margin-bottom: 18px;
}
.pillar-item h4 { font-size: 0.92rem; color: var(--navy); margin-bottom: 10px; }
.pillar-item p { font-size: 0.82rem; margin-bottom: 0; }

/* ============================================================
   SECTORS / STRUCTURE
   ============================================================ */
.structure-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(134,97,20,0.2);
  border-radius: var(--radius); padding: 26px;
  margin-bottom: 18px;
}
.structure-box h4 {
  font-size: 0.95rem; color: var(--gold-light);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.structure-box h4::before { content:''; width:8px; height:8px; border-radius:50%; background:var(--gold-light); flex-shrink:0; }
.structure-box p { font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-bottom: 0; }
.sectors-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.sector-group h5 {
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(134,97,20,0.2);
}
.sector-group li {
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 8px;
}
.sector-group li::before { content:'>'; color: var(--gold-light); }

/* ============================================================
   GOVERNANCE CARDS
   ============================================================ */
.gov-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px;
  position: relative; overflow: hidden;
  transition: box-shadow var(--transition);
}
.gov-card:hover { box-shadow: var(--shadow); }
.gov-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
}
.gov-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.gov-card p { font-size: 0.85rem; margin-bottom: 14px; }

/* ============================================================
   IMPACT NUMBERS
   ============================================================ */
.impact-nums-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 40px;
}
.impact-num-cell {
  background: var(--cream); padding: 48px 36px; text-align: center;
}
.impact-num-cell strong {
  font-family: var(--font-display);
  font-size: 3.2rem; color: var(--navy); display: block; line-height: 1;
}
.impact-num-cell span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 8px; display: block; }

/* ============================================================
   PROJECT / PUBLICATION CARDS
   ============================================================ */
.proj-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--white); overflow: hidden;
  transition: all var(--transition);
}
.proj-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.proj-card-body { padding: 22px 24px; }
.proj-card h4 { font-size: 0.97rem; color: var(--navy); margin-bottom: 8px; }
.proj-card p { font-size: 0.84rem; margin-bottom: 0; }
.proj-card .tag { margin-bottom: 12px; }

/* ============================================================
   NEWS / BLOG CARDS
   ============================================================ */
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.news-card-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: var(--navy-mid); overflow: hidden;
}
.news-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-card-thumb img { transform: scale(1.04); }
.news-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.news-meta {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  flex-wrap: wrap;
}
.news-cat {
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold-bg); color: var(--gold);
  border: 1px solid var(--border); padding: 3px 8px; border-radius: 2px;
}
.news-date { font-size: 0.78rem; color: var(--muted); }
.news-card h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.news-card p { font-size: 0.85rem; margin-bottom: 16px; flex: 1; }
.news-read-more {
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.news-read-more:hover { gap: 10px; color: var(--gold-light); }

/* ============================================================
   EVENTS
   ============================================================ */
.event-item {
  display: grid; grid-template-columns: 70px 1fr;
  gap: 20px; padding: 20px 0;
  border-bottom: 1px solid var(--border-light); align-items: start;
}
.event-item:last-child { border-bottom: none; }
.event-date-box {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 10px;
  text-align: center;
}
.event-date-box .day { font-family: var(--font-display); font-size: 1.6rem; line-height: 1; }
.event-date-box .month { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-top: 3px; }
.event-info h4 { font-size: 0.97rem; color: var(--navy); margin-bottom: 6px; }
.event-info p { font-size: 0.82rem; margin-bottom: 6px; }
.event-location { font-size: 0.78rem; color: var(--gold); display: flex; align-items: center; gap: 4px; }

/* ============================================================
   PUBLICATIONS PAGE
   ============================================================ */
.publication-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 20px; padding: 24px;
  border: 1px solid var(--border);
  background: var(--white); border-radius: var(--radius);
  transition: box-shadow var(--transition); align-items: start;
}
.publication-item:hover { box-shadow: var(--shadow); }
.pub-year {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--gold); text-align: center;
  padding-top: 4px;
}
.pub-info h4 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.pub-info p { font-size: 0.84rem; margin-bottom: 8px; }
.pub-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.pub-action { display: flex; align-items: flex-start; padding-top: 4px; }

/* ============================================================
   SINGLE POST / PAGE
   ============================================================ */
.entry-header {
  padding: 138px 0 68px;
  background:
    linear-gradient(180deg, rgba(8,15,30,0.94) 0%, rgba(13,31,60,0.98) 100%),
    radial-gradient(circle at top right, rgba(134,97,20,0.14) 0%, transparent 42%);
  border-bottom: 1px solid rgba(134,97,20,0.18);
}
.entry-header .eyebrow { color: var(--gold-light); }
.entry-header h1 { color: var(--white); max-width: 820px; }
.page-hero-title { margin-top: 14px; }
.page-hero-lead {
  margin-top: 18px;
  max-width: 760px;
  color: rgba(255,255,255,0.68);
  font-size: 1.04rem;
  line-height: 1.8;
}
.page-intro-shell { max-width: 900px; }
.page-intro-media {
  margin-bottom: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.entry-meta { display: flex; gap: 20px; margin-top: 16px; flex-wrap: wrap; }
.entry-meta span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.entry-meta strong { color: var(--gold-light); }
.entry-content-wrap { padding: 64px 0; }
.entry-content {
  max-width: 760px;
  font-size: 1.02rem; line-height: 1.85;
}
.entry-content h2 { margin: 2em 0 0.6em; font-size: 1.7rem; }
.entry-content h3 { margin: 1.8em 0 0.5em; font-size: 1.3rem; }
.entry-content p { color: var(--text); }
.entry-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px; margin: 2em 0;
  background: var(--cream); border-radius: 0 var(--radius) var(--radius) 0;
}
.entry-content blockquote p { color: var(--navy); font-family: var(--font-display); font-size: 1.1rem; font-style: italic; }
.entry-content ul, .entry-content ol { margin: 1em 0 1em 1.5em; }
.entry-content li { margin-bottom: 0.5em; color: var(--text); }
.entry-content img { border-radius: var(--radius); margin: 2em 0; }
.entry-content a { color: var(--gold); border-bottom: 1px solid var(--border); }
.entry-content a:hover { color: var(--navy); }
.entry-content table { width: 100%; border-collapse: collapse; margin: 2em 0; }
.entry-content th { background: var(--navy); color: var(--white); padding: 10px 14px; font-size: 0.82rem; text-align: left; }
.entry-content td { padding: 10px 14px; border-bottom: 1px solid var(--border-light); font-size: 0.9rem; color: var(--text); }
.entry-content tr:nth-child(even) td { background: var(--cream); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.widget {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.widget-title {
  font-family: var(--font-display); font-size: 1rem;
  color: var(--navy); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 2px solid var(--gold);
}
.widget ul li {
  padding: 8px 0; border-bottom: 1px solid var(--border-light);
  font-size: 0.87rem;
}
.widget ul li a { color: var(--navy); display: flex; justify-content: space-between; align-items: center; }
.widget ul li a:hover { color: var(--gold); }
.widget ul li:last-child { border-bottom: none; }
.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.section-header-compact { margin-bottom: 28px; }
.stack-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-columns {
  gap: 64px;
  align-items: start;
}
.section-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.section-row h3 { margin-bottom: 0; }
.section-note {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
}
.filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.section-cta-row { margin-top: 24px; }
.section-cta-row.section-cta-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.entry-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, var(--entry-sidebar, 320px));
  gap: var(--entry-gap, 60px);
  align-items: start;
}
.entry-shell > * { min-width: 0; }
.entry-header-tags {
  margin-top: 16px;
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.entry-header-summary {
  margin-top: 18px;
  max-width: 720px;
  color: rgba(255,255,255,0.66);
}
.entry-header-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.entry-feature-media {
  margin-bottom: 36px;
  border-radius: var(--radius);
  overflow: hidden;
}
.entry-content-narrow {
  max-width: 820px;
}
.widget-dark {
  background: var(--navy);
  border-color: var(--border);
}
.widget-dark .widget-title { color: var(--white); }
.tag-light {
  color: var(--gold-light);
  border-color: rgba(134,97,20,0.3);
}
.muted-note {
  margin-bottom: 0;
  color: var(--muted);
}
.archive-search-wrap { margin-top: 24px; }
.archive-filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.announcement-strip {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
}
.announcement-strip-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
}
.announcement-strip-label {
  background: var(--gold-light);
  color: var(--navy);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.announcement-strip-items {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  overflow: hidden;
}
.announcement-strip-items a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.announcement-strip-items a:hover { color: var(--gold-light); }
.announcement-strip-link {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 1px solid var(--border);
  white-space: nowrap;
}
.announcement-strip-link:hover { color: var(--gold-light); }
.section-header-centered {
  text-align: center;
}
.section-header-centered .eyebrow {
  justify-content: center;
}
.section-header-centered .lead {
  margin-left: auto;
  margin-right: auto;
}
.cta-band {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.cta-band-copy {
  color: rgba(255,255,255,0.55);
  margin: 0 auto 32px;
  max-width: 500px;
}
.cta-band-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: start;
}
.about-intro-grid > * { min-width: 0; }
.about-lead {
  font-size: clamp(1.2rem, 1.8vw, 1.48rem);
  line-height: 1.72;
  color: var(--navy);
  margin-bottom: 18px;
}
.about-copy p {
  font-size: 1rem;
  color: var(--text);
}
.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.about-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  min-width: 0;
}
.about-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 12px;
}
.about-stat-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.about-stat-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.about-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}
.about-purpose-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  min-width: 0;
}
.about-purpose-card.is-dark {
  background: linear-gradient(180deg, rgba(13,31,60,1) 0%, rgba(22,45,82,1) 100%);
  border-color: rgba(134,97,20,0.26);
}
.about-purpose-card.is-dark h3,
.about-purpose-card.is-dark strong {
  color: var(--white);
}
.about-purpose-card.is-dark p {
  color: rgba(255,255,255,0.7);
}
.about-purpose-card .eyebrow {
  margin-bottom: 18px;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.about-value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid rgba(134,97,20,0.5);
  border-radius: var(--radius);
  padding: 24px 22px;
  min-height: 100%;
  min-width: 0;
}
.about-value-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.about-value-card p {
  font-size: 0.92rem;
  color: var(--muted);
}
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.about-pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  min-height: 100%;
  box-shadow: var(--shadow);
  min-width: 0;
}
.about-pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(134,97,20,0.08);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1;
}
.about-pillar-card h3 {
  font-size: 1.02rem;
  margin-bottom: 10px;
}
.about-pillar-card p {
  font-size: 0.92rem;
  color: var(--muted);
}
.about-departments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.about-department-group {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  min-width: 0;
}
.about-department-group h3 {
  font-size: 1rem;
  margin-bottom: 16px;
}
.about-department-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-department-list li {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  color: var(--navy);
  font-size: 0.84rem;
  line-height: 1.4;
}
.about-presence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: start;
}
.about-presence-layout > * { min-width: 0; }
.about-presence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.about-presence-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 100%;
  min-width: 0;
}
.about-presence-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.about-presence-card p {
  font-size: 0.92rem;
  color: var(--muted);
}
.about-legal-card {
  background: linear-gradient(180deg, rgba(13,31,60,1) 0%, rgba(22,45,82,1) 100%);
  border: 1px solid rgba(134,97,20,0.24);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-lg);
  min-width: 0;
}
.about-legal-card h3 {
  color: var(--white);
  margin-bottom: 14px;
}
.about-legal-card p {
  color: rgba(255,255,255,0.72);
}
.about-legal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}
.about-legal-item {
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.about-legal-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-legal-item span {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  line-height: 1.7;
}
.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.about-stat-card h3,
.about-purpose-card h3,
.about-value-card h3,
.about-pillar-card h3,
.about-department-group h3,
.about-presence-card h3,
.about-legal-card h3 {
  overflow-wrap: anywhere;
}

/* ============================================================
   MEMBERSHIP PAGE
   ============================================================ */
.membership-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: start;
}
.membership-intro-grid > * { min-width: 0; }
.membership-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.membership-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  min-width: 0;
}
.membership-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 12px;
}
.membership-stat-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.membership-stat-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.membership-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}
.membership-type-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.membership-type-card.is-dark {
  background: linear-gradient(180deg, rgba(13,31,60,1) 0%, rgba(22,45,82,1) 100%);
  border-color: rgba(134,97,20,0.26);
}
.membership-type-card .eyebrow {
  margin-bottom: 18px;
}
.membership-type-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  overflow-wrap: anywhere;
}
.membership-type-card p {
  margin-bottom: 18px;
}
.membership-type-card.is-dark h3 {
  color: var(--white);
}
.membership-type-card.is-dark p {
  color: rgba(255,255,255,0.72);
}
.membership-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.membership-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.7;
}
.membership-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold);
  font-weight: 700;
}
.membership-type-card.is-dark .membership-checklist li {
  color: rgba(255,255,255,0.78);
}
.membership-type-card .btn {
  margin-top: auto;
  align-self: flex-start;
}
.membership-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.membership-step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  min-width: 0;
}
.membership-step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 18px;
}
.membership-step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}
.membership-step-card p {
  font-size: 0.92rem;
  color: var(--muted);
}
.membership-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.membership-faq-card {
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(251,248,241,1) 100%);
  border: 1px solid var(--border);
  border-top: 3px solid rgba(134,97,20,0.4);
  border-radius: var(--radius);
  padding: 28px 24px;
  min-width: 0;
}
.membership-faq-card h3 {
  font-size: 1.02rem;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}
.membership-faq-card p {
  font-size: 0.94rem;
  color: var(--muted);
}
.membership-cta-panel {
  background: linear-gradient(180deg, rgba(13,31,60,1) 0%, rgba(22,45,82,1) 100%);
  border: 1px solid rgba(134,97,20,0.24);
  border-radius: var(--radius);
  padding: 42px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.membership-cta-panel .eyebrow {
  justify-content: center;
}
.membership-cta-panel h2 {
  color: var(--white);
  margin-bottom: 14px;
}
.membership-cta-panel p {
  max-width: 720px;
  margin: 0 auto 26px;
  color: rgba(255,255,255,0.72);
}
.membership-cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   PARTNER PAGE
   ============================================================ */
.partnership-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: start;
}
.partnership-intro-grid > * { min-width: 0; }
.partnership-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.partnership-principle-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  min-width: 0;
}
.partnership-principle-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.partnership-principle-card p {
  font-size: 0.9rem;
  color: var(--muted);
}
.partnership-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.partnership-type-card {
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(251,248,241,1) 100%);
  border: 1px solid var(--border);
  border-top: 3px solid rgba(134,97,20,0.4);
  border-radius: var(--radius);
  padding: 30px 28px;
  min-width: 0;
  box-shadow: var(--shadow);
}
.partnership-type-card h3,
.partnership-support-card h3,
.partnership-engage-card h3,
.partnership-group-card h3,
.partnership-step-card h3,
.partnership-note-panel h3 {
  font-size: 1.08rem;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}
.partnership-type-card p,
.partnership-support-card p,
.partnership-engage-card p,
.partnership-group-card p,
.partnership-step-card p,
.partnership-note-panel p {
  color: var(--muted);
  font-size: 0.94rem;
}
.partnership-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}
.partnership-checklist li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
}
.partnership-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold);
  font-weight: 700;
}
.partnership-support-grid,
.partnership-engage-grid,
.partnership-group-grid,
.partnership-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.partnership-support-card,
.partnership-engage-card,
.partnership-group-card,
.partnership-step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  min-width: 0;
  box-shadow: var(--shadow);
}
.partnership-step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 18px;
}
.partnership-note-panel {
  margin-top: 28px;
  background: linear-gradient(180deg, rgba(13,31,60,1) 0%, rgba(22,45,82,1) 100%);
  border: 1px solid rgba(134,97,20,0.24);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-lg);
}
.partnership-note-panel h3 {
  color: var(--white);
}
.partnership-note-panel p {
  color: rgba(255,255,255,0.72);
}
.partnership-cta-panel {
  background: linear-gradient(180deg, rgba(13,31,60,1) 0%, rgba(22,45,82,1) 100%);
  border: 1px solid rgba(134,97,20,0.24);
  border-radius: var(--radius);
  padding: 42px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.partnership-cta-panel .eyebrow {
  justify-content: center;
}
.partnership-cta-panel h2 {
  color: var(--white);
  margin-bottom: 14px;
}
.partnership-cta-panel p {
  max-width: 760px;
  margin: 0 auto 26px;
  color: rgba(255,255,255,0.72);
}
.partnership-cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   MEMBERSHIP
   ============================================================ */
.mem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(134,97,20,0.2);
  border-radius: var(--radius); padding: 36px;
}
.mem-card.highlight { border-color: var(--gold); background: rgba(134,97,20,0.06); }
.mem-type { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; }
.mem-card h4 { font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.mem-card > p { color: rgba(255,255,255,0.55); font-size: 0.87rem; margin-bottom: 20px; }
.mem-rights li {
  font-size: 0.83rem; color: rgba(255,255,255,0.6);
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: flex-start; gap: 10px;
}
.mem-rights li::before { content: '\2713'; color: var(--gold-light); flex-shrink: 0; }

/* ============================================================
   PARTNER SECTION
   ============================================================ */
.partner-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 32px; text-align: center;
  transition: all var(--transition);
  display: flex; flex-direction: column; align-items: center; height: 100%;
}
.partner-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.partner-icon { font-size: 2.4rem; margin-bottom: 18px; color: var(--gold); line-height: 1; }
.partner-card h4 { font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; }
.partner-card p { font-size: 0.87rem; margin-bottom: 24px; flex: 1; }
.partner-card .btn { margin-top: auto; }

/* ============================================================
   LEADERSHIP / GOVERNANCE
   ============================================================ */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.person-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition);
}
.person-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.person-photo {
  display: block;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.person-photo-img,
.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.person-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
}
.person-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.person-card h3 { font-size: 1.08rem; margin-bottom: 0; }
.person-role {
  margin: -4px 0 0;
  font-size: 0.86rem;
  color: var(--gold);
}
.person-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--muted);
  font-size: 0.79rem;
}
.person-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}
.document-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.document-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  transition: all var(--transition);
}
.document-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.document-main { flex: 1; }
.document-tags,
.project-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.document-item h3 { font-size: 1.05rem; margin-bottom: 10px; }
.document-item p { margin-bottom: 12px; }
.document-meta,
.project-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--muted);
  font-size: 0.8rem;
}
.document-actions,
.project-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.project-card-meta {
  margin: 14px 0 18px;
}
.detail-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.detail-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.detail-list li:last-child { border-bottom: none; padding-bottom: 0; }
.detail-list strong {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.detail-list span,
.detail-list a {
  color: var(--white);
  font-size: 0.88rem;
}
.empty-state {
  background: rgba(255,255,255,0.7);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--muted);
}
.hub-card-grid {
  align-items: stretch;
}
.hub-card {
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(251,248,241,1) 100%);
  border: 1px solid var(--border);
  border-top: 3px solid rgba(134,97,20,0.4);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.hub-card h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}
.hub-card p {
  color: var(--muted);
  margin-bottom: 0;
}
.hub-card-meta {
  margin-top: auto;
  padding-top: 4px;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}
.hub-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--navy);
}
.hub-card-link::after {
  content: ">";
  font-size: 0.9rem;
}
.hub-card-link:hover {
  color: var(--gold);
}
.archive-context {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.95rem;
}
.governance-section + .governance-section {
  margin-top: 56px;
}
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.podcast-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition);
}
.podcast-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.podcast-card-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.podcast-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.podcast-card-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.podcast-card-fallback span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
}
.podcast-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.podcast-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.podcast-duration {
  color: var(--muted);
  font-size: 0.8rem;
}
.podcast-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.podcast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}
.media-highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  height: 100%;
}
.media-highlight-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.media-highlight-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.media-channel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
}
.media-channel-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.media-channel-card h3 { margin-bottom: 0; }
.media-channel-card .btn { margin-top: auto; align-self: flex-start; }
.media-embed-wrap {
  margin-bottom: 36px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 16 / 9;
}
.media-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px;
}
.contact-info-item { text-align: center; }
.contact-info-item .ci-label {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 6px;
}
.contact-info-item a, .contact-info-item span {
  font-size: 0.92rem; color: rgba(255,255,255,0.75);
  display: block;
}
.contact-info-item a:hover { color: var(--gold-light); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(134,97,20,0.3);
  border-radius: var(--radius); color: var(--white);
  font-family: inherit; font-size: 0.9rem; margin-bottom: 16px;
  transition: border-color var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 6px; letter-spacing: 0.05em; }
.contact-page-header {
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  padding: 132px 0 60px;
}
.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: start;
}
.contact-page-layout > * { min-width: 0; }
.contact-form-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-form-card .contact-form input,
.contact-form-card .contact-form textarea,
.contact-form-card .contact-form select {
  background: var(--cream);
  color: var(--text);
  border: 1px solid var(--border);
}
.contact-form-card .contact-form label {
  color: var(--navy);
}
.contact-form-card .contact-form input::placeholder,
.contact-form-card .contact-form textarea::placeholder {
  color: rgba(26,26,46,0.45);
}
.contact-form-card .contact-form select option {
  color: var(--text);
}
.contact-alert {
  margin-bottom: 20px;
  padding: 16px 18px;
  background: rgba(13,31,60,0.08);
  border-left: 4px solid var(--navy);
  color: var(--navy);
}
.contact-alert.is-warning {
  background: rgba(134,97,20,0.08);
  border-left-color: var(--gold);
}
.contact-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-info-card-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(134,97,20,0.08);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.contact-info-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-card-value,
.contact-info-card-value a {
  font-size: 0.94rem;
  color: var(--navy);
  overflow-wrap: anywhere;
}
.contact-media-card {
  margin-top: 32px;
  padding: 28px;
  background: var(--navy);
  border-radius: var(--radius);
}
.contact-media-card h4 {
  color: var(--gold-light);
  margin-bottom: 12px;
}
.contact-media-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}

/* ============================================================
   ARCHIVE PAGE HEADER
   ============================================================ */
.archive-header {
  padding: 132px 0 58px; background: var(--navy);
  border-bottom: 1px solid var(--border);
}
.archive-header h1 { color: var(--white); }
.archive-header p { color: rgba(255,255,255,0.55); max-width: 560px; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 52px; }
.page-numbers {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.85rem; color: var(--navy);
  transition: all var(--transition);
}
.page-numbers:hover, .page-numbers.current {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(134,97,20,0.12);
}
.footer-main {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding: 64px 0 48px;
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand .logo-text strong { font-size: 0.92rem; }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; }
.footer-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 20px;
}
.footer-quick-links a {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.footer-quick-links a:hover { color: var(--gold-light); }
.footer-col h5 {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 18px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(134,97,20,0.2);
}
.footer-col li { margin-bottom: 8px; }
.footer-col li a { font-size: 0.84rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col li a:hover { color: var(--gold-light); }
.footer-contact {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-contact .eyebrow {
  margin-bottom: 10px;
  font-size: 0.62rem;
  color: var(--gold-light);
}
.footer-contact .eyebrow::after {
  background: var(--gold-light);
}
.footer-contact p {
  margin-bottom: 6px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact .footer-email {
  color: var(--gold-light);
}
.footer-contact .footer-site {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.28); margin-bottom: 0; }
.footer-doc { font-size: 0.68rem; color: var(--gold-light); letter-spacing: 0.08em; }
.footer-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-meta a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-meta a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px; border-radius: var(--radius);
  border: 1px solid rgba(134,97,20,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.8rem;
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--gold-light); color: var(--gold-light); background: var(--gold-light-bg); }

/* ============================================================
   SEARCH FORM
   ============================================================ */
.search-form {
  display: flex; gap: 0; max-width: 420px; width: 100%;
}
.search-form input {
  flex: 1; padding: 10px 16px;
  border: 1px solid var(--border); border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: inherit; font-size: 0.87rem;
  background: var(--white); color: var(--text);
}
.search-form button {
  padding: 10px 18px;
  background: var(--navy); color: var(--white);
  border: 1px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: background var(--transition);
}
.search-form button:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy); }

/* ============================================================
   FILTER BAR (archive, research)
   ============================================================ */
.filter-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 20px 0; flex-wrap: wrap;
  border-bottom: 1px solid var(--border-light); margin-bottom: 32px;
}
.filter-bar span { font-size: 0.75rem; color: var(--muted); margin-right: 4px; letter-spacing: 0.08em; text-transform: uppercase; }
.filter-btn {
  padding: 6px 14px; border-radius: 2px;
  border: 1px solid var(--border);
  font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); background: var(--white);
  cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: rgba(255,255,255,0.45);
  margin-bottom: 16px; flex-wrap: wrap;
}
.breadcrumbs a { color: rgba(255,255,255,0.55); }
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs span.sep { color: rgba(255,255,255,0.25); }
.breadcrumbs span.current { color: var(--gold-light); }

/* ============================================================
   NOTICE BANNER
   ============================================================ */
.notice-banner {
  background: var(--gold-light); padding: 10px 40px;
  text-align: center; font-size: 0.82rem;
  color: var(--navy); font-weight: 600; letter-spacing: 0.04em;
}
.notice-banner a { color: var(--navy); text-decoration: underline; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 14px 24px; }
  #primary-navigation, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pillars-row { grid-template-columns: 1fr 1fr; }
  .pillar-item:nth-child(2) { border-right: none; }
  .challenge-grid, .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .sectors-cols { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .hero-section { min-height: auto; padding: 132px 0 72px; }
  .impact-nums-row { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .publication-item { grid-template-columns: 1fr; }
  .document-item { flex-direction: column; }
  .entry-shell,
  .contact-page-layout { grid-template-columns: 1fr; gap: 40px; }
  .membership-intro-grid,
  .membership-type-grid,
  .partnership-intro-grid,
  .partnership-type-grid { grid-template-columns: 1fr; }
  .about-intro-grid,
  .about-presence-layout { grid-template-columns: 1fr; }
  .about-values-grid,
  .about-departments-grid,
  .about-presence-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .section { padding: 60px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .mem-card, .partner-card { padding: 28px 20px; }
  .pillars-row { grid-template-columns: 1fr; }
  .hero-section { padding: 124px 0 60px; }
  .hero-badge { margin-bottom: 24px; padding: 6px 12px; }
  .hero-badge span { font-size: 0.62rem; }
  .hero-lead { font-size: 0.98rem; margin-bottom: 28px; }
  .hero-actions .btn,
  .entry-header-actions .btn,
  .cta-band-actions .btn { width: 100%; justify-content: center; }
  .announcement-strip-inner { grid-template-columns: 1fr; }
  .announcement-strip-label { justify-content: center; padding: 12px 16px; }
  .announcement-strip-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    overflow: visible;
  }
  .announcement-strip-items a {
    width: 100%;
    white-space: normal;
  }
  .announcement-strip-link {
    padding: 12px 16px;
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .search-form {
    flex-direction: column;
    max-width: none;
    gap: 10px;
  }
  .search-form input {
    border-right: 1px solid var(--border);
    border-radius: var(--radius);
  }
  .search-form button {
    width: 100%;
    border-radius: var(--radius);
  }
  .footer-bottom { flex-direction: column; text-align: center; }
  .entry-header { padding: 124px 0 54px; }
  .archive-header { padding: 120px 0 48px; }
  .page-hero-lead { font-size: 0.96rem; }
  .entry-header-summary { font-size: 0.96rem; }
  .entry-feature-media { margin-bottom: 28px; }
  .entry-content-narrow { max-width: 100%; }
  .event-item { grid-template-columns: 56px minmax(0, 1fr); gap: 14px; }
  .person-card-body,
  .document-item { padding: 22px 20px; }
  .person-actions,
  .document-actions,
  .project-card-actions { flex-direction: column; align-items: stretch; }
  .person-actions .btn,
  .document-actions .btn,
  .project-card-actions .btn { justify-content: center; }
  .contact-page-header { padding: 124px 0 52px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 20px; }
  .contact-info-card { padding: 18px; }
  .contact-info-card-icon {
    width: 40px;
    height: 40px;
    font-size: 0.62rem;
  }
  .contact-media-card { padding: 24px 20px; }
  .cta-band { padding: 64px 0; }
  .membership-stat-grid,
  .membership-type-grid,
  .membership-faq-grid,
  .partnership-principles-grid,
  .partnership-type-grid,
  .partnership-support-grid,
  .partnership-engage-grid,
  .partnership-group-grid,
  .partnership-process-grid { grid-template-columns: 1fr; }
  .membership-type-card,
  .membership-step-card,
  .membership-faq-card,
  .partnership-type-card,
  .partnership-support-card,
  .partnership-engage-card,
  .partnership-group-card,
  .partnership-step-card,
  .partnership-note-panel { padding: 24px 20px; }
  .membership-cta-panel { padding: 30px 22px; }
  .membership-type-card .btn,
  .membership-cta-row .btn,
  .partnership-cta-row .btn { width: 100%; justify-content: center; }
  .partnership-cta-panel { padding: 30px 22px; }
  .footer-meta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .notice-banner {
    padding: 10px 48px 10px 16px;
    text-align: left;
  }
  .about-stat-grid,
  .about-purpose-grid,
  .about-values-grid,
  .about-departments-grid,
  .about-presence-grid { grid-template-columns: 1fr; }
  .about-legal-card,
  .about-purpose-card,
  .about-department-group,
  .about-presence-card,
  .about-pillar-card,
  .about-stat-card { padding: 24px 20px; }
}

/* Mobile nav open state */
body.nav-open { overflow: hidden; }
body.nav-open #primary-navigation {
  display: block;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark); z-index: 999;
  padding: 80px 24px 32px; overflow-y: auto;
}
body.nav-open #primary-navigation > ul {
  display: flex; flex-direction: column; align-items: stretch;
  gap: 4px;
}
body.nav-open #primary-navigation > ul > li > a {
  font-size: 1.1rem; padding: 14px 16px;
}
body.nav-open #primary-navigation .sub-menu {
  position: static;
  min-width: 0;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: 0;
  border-left: 1px solid rgba(134,97,20,0.2);
  background: rgba(255,255,255,0.03);
  margin: 4px 0 12px 16px;
  padding: 6px 0;
}
body.nav-open #primary-navigation .sub-menu a {
  font-size: 0.92rem;
  padding: 10px 16px;
}
body.nav-open .header-cta {
  display: flex; position: fixed; bottom: 32px; left: 24px; right: 24px; z-index: 1000;
}
body.nav-open .header-cta .btn-gold { width: 100%; justify-content: center; }

