/* ============================================================
   JOUD ABDEL MAJEID — GLOBAL DESIGN SYSTEM
   Theme: Global Capital · Strategic Networks · Stewardship Intelligence
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ─── 1. CSS Custom Properties ─────────────────────────────── */
:root {
  /* Colour Palette */
  --navy:        #050c1a;
  --navy-mid:    #0a1628;
  --navy-light:  #0f2040;
  --charcoal:    #141e30;
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-dim:    rgba(201,168,76,0.15);
  --champagne:   #f5e6c3;
  --blue-acc:    #3a7bd5;
  --blue-soft:   #6ea8fe;
  --white:       #ffffff;
  --off-white:   #f0f0f0;
  --muted:       rgba(255,255,255,0.5);
  --muted-2:     rgba(255,255,255,0.2);
  --muted-3:     rgba(255,255,255,0.07);
  --border:      rgba(201,168,76,0.2);
  --border-soft: rgba(255,255,255,0.08);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', 'Inter', sans-serif;
  --font-ui:      'Inter', sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container:   1240px;

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --dur:        400ms;
}

/* ─── 2. Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ─── 3. Typography Scale ────────────────────────────────────── */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
}
.heading-1 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.3;
}
.heading-2 {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.body-text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
}
.small-text {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ─── 4. Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.section { padding: var(--section-pad) 0; }

/* ─── 5. Navigation ──────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: linear-gradient(180deg, rgba(5,12,26,0.95) 0%, rgba(5,12,26,0) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-nav.scrolled {
  background: rgba(5,12,26,0.97);
  border-color: rgba(201,168,76,0.18);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.nav-logo-title {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
}
.nav-link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--dur) var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--dur) var(--ease);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after, .nav-link.active::after {
  right: 0;
}

.nav-cta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 9px 22px;
  transition: all var(--dur) var(--ease);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: all var(--dur) var(--ease);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5,12,26,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  font-size: 1.2rem;
  color: var(--white);
}

/* ─── 6. Password Gate ───────────────────────────────────────── */
.pw-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
}
.pw-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pw-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(58,123,213,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,123,213,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.pw-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(5,12,26,0.8) 100%);
  pointer-events: none;
}
.pw-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  max-width: 520px;
  width: 90%;
}
.pw-emblem {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
}
.pw-emblem::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201,168,76,0.15);
  animation: pulse-border 3s ease-in-out infinite;
}
.pw-emblem svg { color: var(--gold); }
@keyframes pulse-border {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.06); }
}
.pw-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.pw-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 8px;
}
.pw-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 48px;
}
.pw-input-group {
  width: 100%;
  position: relative;
  margin-bottom: 16px;
}
.pw-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  padding: 16px 56px 16px 24px;
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pw-input::placeholder { color: rgba(255,255,255,0.2); letter-spacing: 0.1em; }
.pw-input:focus {
  border-color: rgba(201,168,76,0.6);
  box-shadow: 0 0 24px rgba(201,168,76,0.08);
}
.pw-submit {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border-left: 1px solid rgba(201,168,76,0.2);
  transition: background var(--dur) var(--ease);
}
.pw-submit:hover { background: rgba(201,168,76,0.1); }
.pw-error {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #e05c5c;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  height: 20px;
}
.pw-error.show { opacity: 1; }
.pw-footer-note {
  margin-top: 48px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
}

/* Access granted overlay */
.pw-access-granted {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms var(--ease);
}
.pw-access-granted.show { opacity: 1; pointer-events: all; }
.pw-access-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: fadeUp 600ms var(--ease-out) forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Screen unlock */
.pw-screen.unlocking {
  animation: unlockFade 800ms var(--ease) forwards;
}
@keyframes unlockFade {
  to { opacity: 0; transform: scale(1.04); }
}

/* ─── 7. Hero Section ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(58,123,213,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 60%),
    var(--navy);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(58,123,213,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,123,213,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* ─── 8. Cards & Glassmorphism ───────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.glass-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.gold-card {
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0) 100%);
  transition: all var(--dur) var(--ease);
}
.gold-card:hover {
  border-color: rgba(201,168,76,0.4);
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.02) 100%);
}

/* ─── 9. Dividers & Accents ──────────────────────────────────── */
.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}
.gold-line-center { margin: 20px auto; }
.section-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 24px;
}

/* ─── 10. Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 14px 32px;
  transition: all var(--dur) var(--ease);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateX(4px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 13px 32px;
  transition: all var(--dur) var(--ease);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ─── 11. Image Containers ───────────────────────────────────── */
.img-frame {
  overflow: hidden;
  position: relative;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 600ms var(--ease);
}
.img-frame:hover img { transform: scale(1.04); }

/* Portrait (tall) */
.img-portrait { aspect-ratio: 3/4; }
/* Landscape */
.img-landscape { aspect-ratio: 16/9; }
/* Square */
.img-square { aspect-ratio: 1; }
/* Hero-tall */
.img-hero-tall { aspect-ratio: 4/5; }

/* ─── 12. Stat Blocks ────────────────────────────────────────── */
.stat-block {
  padding: 32px 24px;
  border-top: 1px solid var(--border);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ─── 13. Timeline ───────────────────────────────────────────── */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}
.timeline-item {
  padding: 0 0 48px 40px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -4px; top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(201,168,76,0.5);
}
.timeline-year {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.timeline-role {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.timeline-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* ─── 14. Scroll Reveal Animations ──────────────────────────── */
.reveal-up, .reveal-left, .reveal-right, .reveal-fade {
  opacity: 0;
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-fade  { transform: scale(0.97); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger delays */
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }

/* ─── 15. Page Header (Inner Pages) ─────────────────────────── */
.page-header {
  padding: calc(72px + 80px) 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border-soft);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(58,123,213,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 30% 50% at 10% 100%, rgba(201,168,76,0.05) 0%, transparent 60%);
}
.page-header-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.page-header-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}
.breadcrumb a { transition: color var(--dur); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ─── 16. Image Grid ─────────────────────────────────────────── */
.img-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.img-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.img-grid-masonry {
  columns: 3;
  column-gap: 16px;
}
.img-grid-masonry .img-item {
  break-inside: avoid;
  margin-bottom: 16px;
}

/* ─── 17. Pull Quote ─────────────────────────────────────────── */
.pull-quote {
  border-left: 2px solid var(--gold);
  padding: 24px 32px;
  background: rgba(201,168,76,0.04);
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--champagne);
}
.pull-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}

/* ─── 18. Network/Canvas Elements ───────────────────────────── */
.network-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ─── 19. Form Elements ──────────────────────────────────────── */
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--dur) var(--ease);
  resize: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 16px rgba(201,168,76,0.06);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.2); }

/* ─── 20. Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-soft);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-soft);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 8px;
}
.footer-brand-title {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-nav-title {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-nav-links { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--dur);
}
.footer-nav-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all var(--dur) var(--ease);
}
.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-credit {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
.footer-credit a {
  color: var(--gold);
  transition: opacity var(--dur);
}
.footer-credit a:hover { opacity: 0.7; }
.footer-contact-line {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.footer-contact-line a {
  color: rgba(255,255,255,0.5);
  transition: color var(--dur);
}
.footer-contact-line a:hover { color: var(--gold); }

/* ─── 21. Map / Infographic Elements ───────────────────────── */
.world-map-container {
  position: relative;
  background: rgba(58,123,213,0.04);
  border: 1px solid var(--border-soft);
  border-radius: 0;
  overflow: hidden;
  padding: 40px;
}

/* ─── 22. Role Badge ─────────────────────────────────────────── */
.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 12px;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.06);
}
.role-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ─── 23. Progress / Flow Lines ─────────────────────────────── */
.flow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 60px 0;
  position: relative;
}
.flow-line::after {
  content: '◆';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 8px;
  background: var(--navy);
  padding: 0 8px;
}

/* ─── 24. Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .timeline::before { left: 0; }
  .img-grid-3 { grid-template-columns: 1fr 1fr; }
  .img-grid-masonry { columns: 2; }
}
@media (max-width: 480px) {
  .img-grid-2, .img-grid-3 { grid-template-columns: 1fr; }
  .img-grid-masonry { columns: 1; }
}

/* ─── 25. Utility ────────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-muted  { color: rgba(255,255,255,0.55); }
.text-center { text-align: center; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-auto { margin-top: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ─── 26. Page-specific overrides ───────────────────────────── */

/* Stewardship pillars */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pillar-card {
  padding: 40px 32px;
  border-top: 2px solid var(--gold);
  background: rgba(255,255,255,0.02);
  transition: all var(--dur) var(--ease);
}
.pillar-card:hover {
  background: rgba(201,168,76,0.05);
  transform: translateY(-6px);
}
.pillar-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--champagne);
}
.pillar-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* Insight reveal panels */
.insight-panel {
  position: relative;
  overflow: hidden;
}
.insight-panel-inner {
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(58,123,213,0.06) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--dur) var(--ease);
}
.insight-panel-inner:hover {
  border-color: rgba(201,168,76,0.25);
}
.insight-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 16px;
}
.insight-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 12px;
}
.insight-text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}
