/* =========================================================
   TRANSPORT FUTURES — Shared Stylesheet
   Fonts: Space Grotesk (display) + Manrope (body)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;600;700&family=Manrope:wght@300;400;500;600&display=swap');

/* ---- DESIGN TOKENS ---- */
:root {
  --c-navy:      #0A1628;
  --c-navy-700:  #112240;
  --c-navy-600:  #1a3a5c;
  --c-navy-500:  #2d5282;
  --c-teal:      #00C4CC;
  --c-teal-700:  #009AA0;
  --c-teal-100:  #dff8f9;
  --c-white:     #FFFFFF;
  --c-grey-50:   #F4F6F9;
  --c-grey-100:  #E8ECF3;
  --c-grey-200:  #D1D9E6;
  --c-grey-400:  #8E9BB5;
  --c-grey-600:  #4E617F;
  --c-grey-700:  #3D4F6B;
  --c-ink:       #0e1c33;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Manrope', sans-serif;

  --max-w:    1280px;
  --r:        6px;
  --r-lg:     14px;

  --shadow-sm: 0 2px 8px  rgba(10,22,40,.07);
  --shadow-md: 0 8px 32px rgba(10,22,40,.12);
  --shadow-lg: 0 24px 72px rgba(10,22,40,.18);

  --ease: cubic-bezier(.25,.46,.45,.94);
  --t:    all .3s var(--ease);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--c-navy);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1;
}
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(3.2rem, 8.5vw, 7.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem,  4.5vw, 3.75rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.3rem; font-weight: 600; }
h5 { font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }

p {
  font-family: var(--font-body);
  line-height: 1.75;
  color: var(--c-grey-600);
  font-size: 1.05rem;
}
a { color: var(--c-teal); text-decoration: none; transition: var(--t); }

/* ---- LAYOUT ---- */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 5.5rem 2rem; }
.section-sm { padding: 3.5rem 2rem; }

/* ---- LABEL ---- */
.label {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 1rem;
}
.label::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--c-teal);
  flex-shrink: 0;
}
.label-dark { color: rgba(0,196,204,.8); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2.1rem;
  border-radius: var(--r);
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-teal);
  color: var(--c-navy);
  border-color: var(--c-teal);
}
.btn-primary:hover {
  background: #1dd6de;
  border-color: #1dd6de;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,196,204,.3);
  color: var(--c-navy);
}
.btn-outline {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.3);
}
.btn-outline:hover {
  border-color: var(--c-teal);
  color: var(--c-teal);
}
.btn-ghost {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-grey-200);
}
.btn-ghost:hover {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: var(--c-white);
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.5rem;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.scrolled {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: .9rem 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo-mark {
  height: 2.4rem;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 1.1;
}

/* Links */
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--c-teal);
  transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active  { color: var(--c-white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--c-teal) !important;
  color: var(--c-navy) !important;
  padding: .55rem 1.4rem;
  border-radius: var(--r);
  font-size: .8rem !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: #1dd6de !important; color: var(--c-navy) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--c-white); transition: var(--t); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed; inset: 0; z-index: 950;
  background: var(--c-navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-white);
  letter-spacing: .04em;
}
.nav-mobile a:hover { color: var(--c-teal); }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: rgba(255,255,255,.55);
  font-size: 2rem;
  line-height: 1;
  padding: .25rem;
}

/* ========== HERO (HOME) ========== */
.hero {
  background:
    linear-gradient(105deg, rgba(10,22,40,0.97) 38%, rgba(10,22,40,0.72) 70%, rgba(10,22,40,0.55) 100%),
    url('../images/hero-bg.jpg') center 40% / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,196,204,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,196,204,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-glow-1 {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,204,.12) 0%, transparent 70%);
  top: -300px; right: -250px;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,204,.07) 0%, transparent 70%);
  bottom: -100px; left: 5%;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  width: 100%;
  padding: 9rem 2rem 7rem;
}
.hero-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 5rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2.5rem; height: 2px;
  background: var(--c-teal);
}
.hero h1 {
  color: var(--c-white);
  font-size: clamp(3.5rem, 8.5vw, 7rem);
  line-height: .95;
  font-weight: 800;
  margin-bottom: 1.75rem;
  letter-spacing: -.02em;
}
.hero h1 .accent { color: var(--c-teal); }
.hero-word-rotate { display: inline-block; }
.hero-word-rotate::after {
  content: '|';
  color: var(--c-teal);
  margin-left: 2px;
  animation: cursorBlink .65s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.55);
  max-width: 560px;
  margin-bottom: 2.75rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-meta {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-meta-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-teal);
  line-height: 1;
}
.hero-meta-stat span {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .08em;
  margin-top: .3rem;
  display: block;
}

/* Hero side panel */
.hero-panel {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hero-panel-label {
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-teal);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hero-panel-row {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hero-panel-row:last-child { border-bottom: none; padding-bottom: 0; }
.hero-panel-row:first-of-type { padding-top: 0; }
.panel-metric {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-teal);
  line-height: 1;
  margin-bottom: .25rem;
}
.panel-desc { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.45; }
.panel-bar {
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  margin-top: .6rem;
  overflow: hidden;
}
.panel-bar-fill {
  height: 100%;
  background: var(--c-teal);
  border-radius: 2px;
  transition: width 1.5s ease;
}

/* ========== PILLARS ========== */
.pillars-section {
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  margin-top: -3.5rem;
}
.pillars-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--c-grey-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  gap: 1px;
  box-shadow: var(--shadow-lg);
}
.pillar {
  background: var(--c-white);
  padding: 2.5rem 2rem 2.25rem;
  transition: var(--t);
  position: relative;
}
.pillar:hover { background: var(--c-navy); }
.pillar:hover h3, .pillar:hover p { color: rgba(255,255,255,.8); }
.pillar:hover .pillar-icon { background: rgba(0,196,204,.15); color: var(--c-teal); }
.pillar-icon {
  width: 50px; height: 50px;
  background: var(--c-teal-100);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--c-teal-700);
  transition: var(--t);
}
.pillar h3 { font-size: 1.65rem; margin-bottom: .65rem; transition: color var(--t); }
.pillar p  { font-size: .92rem; line-height: 1.7; transition: color var(--t); }

/* ========== FEATURED RESEARCH ========== */
.section-header { max-width: var(--max-w); margin: 0 auto 2.75rem; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; }
.section-header h2 { margin: 0; }

.research-grid-3 {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.r-card {
  background: var(--c-white);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--t);
  position: relative;
}
.r-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-grey-100);
  transition: background .3s ease;
}
.r-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.r-card:hover::before { background: var(--c-teal); }
.r-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.r-card-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .28rem .8rem;
  border-radius: 3px;
  background: var(--c-teal-100);
  color: var(--c-teal-700);
  margin-bottom: 1rem;
}
.r-card h4 { font-size: 1.2rem; margin-bottom: .7rem; color: var(--c-navy); line-height: 1.3; }
.r-card p  { font-size: .9rem; color: var(--c-grey-600); line-height: 1.65; flex: 1; }
.r-card-footer {
  padding: 1.2rem 1.75rem;
  border-top: 1px solid var(--c-grey-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.r-card-date {
  font-family: var(--font-display);
  font-size: .75rem;
  color: var(--c-grey-400);
  letter-spacing: .06em;
}
.r-card-link {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-teal);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.r-card-link svg { transition: transform .3s ease; }
.r-card-link:hover svg { transform: translateX(4px); }

/* ========== STATS BAND ========== */
.stats-band {
  background: var(--c-navy);
  padding: 4rem 2rem;
}
.stats-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats-band-item .n {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--c-teal);
  line-height: 1;
}
.stats-band-item .u { color: rgba(0,196,204,.55); font-weight: 300; }
.stats-band-item p { font-size: .82rem; color: rgba(255,255,255,.4); margin-top: .45rem; letter-spacing: .05em; }

/* ========== PARTNERS TICKER ========== */
.partners-section {
  background: #ffffff;
  padding: 4rem 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.partners-eyebrow {
  text-align: center;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #374151;
  margin-bottom: 2.5rem;
  padding: 0 2rem;
}
.partners-track-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #fff 8%, #fff 92%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, #fff 8%, #fff 92%, transparent 100%);
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
  animation: partnerScroll 40s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes partnerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1rem 1.8rem;
  min-width: 120px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color .35s, background .35s, box-shadow .35s;
}
.partner-chip:hover {
  border-color: rgba(0,196,204,.5);
  background: rgba(0,196,204,.05);
  box-shadow: 0 4px 16px rgba(0,196,204,.1);
}
.partner-logo {
  width: 64px;
  height: 36px;
  object-fit: contain;
}
.partner-logo-fallback {
  display: none;
  width: 64px;
  height: 36px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
}
.partner-chip-name {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: .03em;
  transition: color .35s;
}
.partner-chip:hover .partner-chip-name { color: #111827; }
.dot-wb         { background: #1a73e8; }
.dot-afdb       { background: #0077b6; }
.dot-unhabitat  { background: #009edb; }
.dot-nepad      { background: #00853f; }
.dot-giz        { background: #009a44; }
.dot-fia        { background: #e63946; }
.dot-c40        { background: #00b4d8; }
.dot-bloomberg  { background: #0e4a86; }
.dot-itf        { background: #2d6a4f; }
.dot-afd        { background: #003189; }
.dot-ford       { background: #f4a261; }
.dot-slocat     { background: #2a9d8f; }

/* ========== NEWS ========== */
.news-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.news-featured {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-grey-50);
  display: flex;
  flex-direction: column;
  transition: var(--t);
  border: 1px solid var(--c-grey-100);
}
.news-featured:hover { box-shadow: var(--shadow-md); }
.news-img {
  height: 220px;
  background: linear-gradient(135deg, #0A1628 0%, #1a3a5c 60%, #2d5282 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1.5rem;
  overflow: hidden;
}
.news-img::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(0,196,204,.15) 0%, transparent 50%),
    linear-gradient(rgba(0,0,0,0) 40%, rgba(0,0,0,.5) 100%);
}
.news-img-tag {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-navy);
  background: var(--c-teal);
  padding: .28rem .8rem;
  border-radius: 3px;
}
.news-img-deco {
  position: absolute;
  right: -20px; top: -20px;
  width: 200px; height: 200px;
  border: 1px solid rgba(0,196,204,.15);
  border-radius: 50%;
}
.news-img-deco2 {
  position: absolute;
  right: 20px; top: 20px;
  width: 120px; height: 120px;
  border: 1px solid rgba(0,196,204,.08);
  border-radius: 50%;
}
.news-featured-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.news-featured-body h3 { font-size: 1.6rem; margin-bottom: .8rem; color: var(--c-navy); line-height: 1.2; }
.news-featured-body p { font-size: .92rem; line-height: 1.7; flex: 1; }
.news-featured-foot { margin-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.news-date {
  font-family: var(--font-display);
  font-size: .75rem;
  color: var(--c-grey-400);
  letter-spacing: .06em;
}

.news-list { display: flex; flex-direction: column; }
.news-item {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--c-grey-100);
  display: flex;
  gap: 1.25rem;
  transition: var(--t);
}
.news-item:first-child { padding-top: 0; }
.news-item:last-child  { border-bottom: none; padding-bottom: 0; }
.news-item:hover { opacity: .75; }
.news-item-n {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--c-grey-200);
  line-height: 1;
  flex-shrink: 0;
  width: 2.25rem;
  text-align: right;
  padding-top: .1rem;
}
.news-item-body h4 { font-size: 1rem; color: var(--c-navy); margin-bottom: .3rem; line-height: 1.3; }
.news-item-body p  { font-size: .85rem; color: var(--c-grey-600); line-height: 1.55; }
.news-item-date    { font-size: .75rem; color: var(--c-grey-400); margin-top: .35rem; font-family: var(--font-display); letter-spacing: .05em; }

/* ========== NEWSLETTER ========== */
.newsletter-section {
  background: var(--c-navy);
  padding: 5.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,196,204,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,196,204,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.newsletter-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
}
.newsletter-inner h2 { color: var(--c-white); margin-bottom: 1rem; }
.newsletter-inner > p  { color: rgba(255,255,255,.5); margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; gap: .75rem; max-width: 460px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: .9rem 1.25rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: var(--t);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.28); }
.newsletter-form input:focus { border-color: var(--c-teal); background: rgba(255,255,255,.1); }

/* ========== FOOTER ========== */
.footer {
  background: #060d1a;
  color: var(--c-white);
  padding: 4.5rem 2rem 2rem;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .nav-logo  { margin-bottom: 1.1rem; }
.footer-brand > p { color: rgba(255,255,255,.38); font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .7rem; }
.footer-col a { color: rgba(255,255,255,.4); font-size: .87rem; transition: var(--t); }
.footer-col a:hover { color: var(--c-white); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 1.75rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,.22); font-size: .78rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.32);
  font-size: .75rem;
  transition: var(--t);
}
.footer-social a:hover { border-color: var(--c-teal); color: var(--c-teal); }

/* ========== PAGE HERO (non-home) ========== */
.page-hero {
  background: var(--c-navy);
  padding: 9rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,196,204,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,196,204,.05) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,204,.1) 0%, transparent 70%);
  top: -100px; right: 0;
  pointer-events: none;
}
.page-hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative; z-index: 1;
}
.page-hero h1 { color: var(--c-white); font-size: clamp(2.5rem,6vw,5rem); margin-bottom: 1rem; }
.page-hero .hero-sub { color: rgba(255,255,255,.5); font-size: 1.1rem; max-width: 540px; line-height: 1.75; }

/* ========== ABOUT PAGE ========== */
.about-lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--c-navy);
  line-height: 1.65;
  border-left: 4px solid var(--c-teal);
  padding-left: 1.75rem;
  margin-bottom: 2.5rem;
}
.about-content-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-600) 100%);
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding: 2.5rem;
  width: 100%;
}
.about-vis-block {
  background: rgba(0,196,204,.08);
  border: 1px solid rgba(0,196,204,.15);
  border-radius: var(--r);
  padding: 1.25rem;
}
.about-vis-block strong {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--c-teal);
  line-height: 1;
  display: block;
}
.about-vis-block span { font-size: .75rem; color: rgba(255,255,255,.4); letter-spacing: .06em; margin-top: .25rem; display: block; }
.about-vis-accent {
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border: 1px solid rgba(0,196,204,.12);
  border-radius: 50%;
}

.approach-grid {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.approach-step {
  padding: 2rem;
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r-lg);
  background: var(--c-white);
  transition: var(--t);
}
.approach-step:hover { border-color: var(--c-teal); box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 800;
  color: var(--c-grey-100);
  line-height: 1;
  margin-bottom: 1rem;
}
.approach-step h4 { margin-bottom: .5rem; font-size: 1.15rem; }
.approach-step p  { font-size: .9rem; line-height: 1.65; }

.values-grid {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.value-card {
  padding: 2rem;
  border-radius: var(--r-lg);
  background: var(--c-white);
  border: 1px solid var(--c-grey-100);
  transition: var(--t);
}
.value-card:hover { border-color: var(--c-teal); box-shadow: var(--shadow-md); }
.value-n {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 800;
  color: var(--c-grey-100);
  line-height: 1;
  margin-bottom: 1rem;
}
.value-card h4 { margin-bottom: .5rem; font-size: 1.1rem; }
.value-card p  { font-size: .88rem; line-height: 1.65; }

.history-timeline {
  max-width: 760px;
  margin: 0 auto;
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--c-grey-100);
  position: relative;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: 57px; top: 0; bottom: 0;
  width: 2px;
  background: var(--c-grey-100);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800;
  color: var(--c-teal);
  line-height: 1;
  padding-top: .1rem;
  position: relative; z-index: 1;
}
.timeline-body h4 { margin-bottom: .4rem; font-size: 1.1rem; }
.timeline-body p  { font-size: .9rem; line-height: 1.65; }

/* ========== RESEARCH PAGE ========== */
.filter-bar { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.filter-btn {
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .55rem 1.3rem;
  border-radius: 100px;
  border: 1.5px solid var(--c-grey-200);
  background: var(--c-white);
  color: var(--c-grey-600);
  cursor: pointer;
  transition: var(--t);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: var(--c-white);
}

.featured-report {
  background: var(--c-navy);
  border-radius: var(--r-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.featured-report::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,196,204,.12) 0%, transparent 55%);
  pointer-events: none;
}
.featured-report-content { position: relative; z-index: 1; }
.featured-report-content .label { color: var(--c-teal); }
.featured-report-content h3 { color: var(--c-white); font-size: clamp(1.5rem,2.5vw,2.2rem); margin-bottom: 1rem; }
.featured-report-content p  { color: rgba(255,255,255,.5); font-size: .95rem; line-height: 1.7; max-width: 500px; }
.featured-report-cta { position: relative; z-index: 1; flex-shrink: 0; }

.research-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.research-card { transition: opacity .35s ease, transform .35s ease; }

/* ========== EVENTS PAGE ========== */
.events-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.events-col h2 { margin-bottom: 2rem; }
.event-item {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--c-grey-100);
  transition: var(--t);
}
.event-item:last-child { border-bottom: none; }
.event-item:hover .event-info h4 { color: var(--c-teal); }
.event-date-box {
  flex-shrink: 0;
  width: 68px; height: 68px;
  background: var(--c-navy);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.event-date-box .day {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 800;
  color: var(--c-teal);
  line-height: 1;
}
.event-date-box .mon {
  font-family: var(--font-display);
  font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.event-info { flex: 1; }
.event-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .25rem .7rem; border-radius: 3px;
  background: var(--c-teal-100);
  color: var(--c-teal-700);
  margin-bottom: .65rem;
}
.event-info h4 { font-size: 1.15rem; color: var(--c-navy); margin-bottom: .4rem; transition: color .25s ease; }
.event-meta-row {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  margin-bottom: .55rem;
}
.event-meta-item {
  display: flex; align-items: center; gap: .35rem;
  font-size: .78rem; color: var(--c-grey-400);
  font-family: var(--font-display); letter-spacing: .05em;
}
.event-info p  { font-size: .88rem; color: var(--c-grey-600); line-height: 1.6; }

.events-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--c-grey-50);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h5 {
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-grey-600);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-grey-200);
}
.past-event-item { padding: .9rem 0; border-bottom: 1px solid var(--c-grey-100); }
.past-event-item:last-child { border-bottom: none; padding-bottom: 0; }
.past-event-item h6 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  color: var(--c-navy);
  margin-bottom: .25rem;
}
.past-event-item span { font-size: .78rem; color: var(--c-grey-400); font-family: var(--font-display); letter-spacing: .05em; }

/* ========== TEAM PAGE ========== */
.team-grid {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.team-card { transition: var(--t); }
.team-card:hover .team-avatar { border-color: var(--c-teal); }
.team-avatar {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--r-lg);
  border: 2px solid var(--c-grey-100);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2.75rem; font-weight: 800;
  color: var(--c-white);
  margin-bottom: 1.25rem;
  transition: border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.team-avatar::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--av-bg, linear-gradient(135deg, var(--c-navy-600) 0%, var(--c-navy) 100%));
}
.team-avatar span { position: relative; z-index: 1; }
.team-card h4 { font-size: 1.15rem; margin-bottom: .2rem; }
.team-role {
  font-size: .78rem;
  color: var(--c-teal);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}
.team-card p { font-size: .87rem; color: var(--c-grey-600); line-height: 1.6; }
.team-socials { margin-top: .75rem; display: flex; gap: .5rem; }
.team-socials a { font-size: .75rem; color: var(--c-grey-400); transition: color .25s ease; }
.team-socials a:hover { color: var(--c-teal); }

/* ----- Collapsible team bio ----- */
.bio-toggle {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: transparent;
  border: 1px solid var(--c-grey-200);
  border-radius: 100px;
  padding: .5rem .95rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-grey-600);
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.bio-toggle:hover {
  border-color: var(--c-teal);
  color: var(--c-teal);
  background: rgba(0, 196, 204, .07);
}
.bio-toggle:focus-visible { outline: 2px solid var(--c-teal); outline-offset: 2px; }
.team-card.open .bio-toggle { border-color: var(--c-teal); color: var(--c-teal); }

.bio-toggle-ic { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.bio-toggle-ic::before,
.bio-toggle-ic::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
.bio-toggle-ic::before { width: 11px; height: 2px; }
.bio-toggle-ic::after  { width: 2px; height: 11px; }
.team-card.open .bio-toggle-ic::after { transform: translate(-50%, -50%) rotate(90deg); }

.team-bio-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s cubic-bezier(.4, 0, .2, 1);
}
.team-card.open .team-bio-wrap { grid-template-rows: 1fr; }
.team-bio-inner { overflow: hidden; }
.team-bio-inner p { margin: .9rem 0 0; }

/* ========== CONTACT PAGE ========== */
.contact-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 6rem;
  align-items: start;
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-grey-600);
  margin-bottom: .5rem;
}
.form-control {
  width: 100%;
  padding: .9rem 1.25rem;
  border: 1.5px solid var(--c-grey-200);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-navy);
  background: var(--c-white);
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.form-control:focus {
  border-color: var(--c-teal);
  box-shadow: 0 0 0 3px rgba(0,196,204,.12);
}
textarea.form-control { resize: vertical; min-height: 140px; line-height: 1.6; }

.contact-detail { display: flex; gap: 1.25rem; margin-bottom: 2rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--c-teal-100);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-teal-700);
  flex-shrink: 0;
}
.contact-detail-text h5 {
  font-size: .72rem; letter-spacing: .12em;
  color: var(--c-grey-400);
  margin-bottom: .35rem;
}
.contact-detail-text p { font-size: .95rem; color: var(--c-navy); line-height: 1.6; margin: 0; }
.map-placeholder {
  height: 200px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-600) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.28);
  font-family: var(--font-display);
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  margin-top: 2.5rem;
  position: relative; overflow: hidden;
}
.map-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,196,204,.08) 0%, transparent 60%);
}
.map-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,196,204,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,196,204,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ========== CONTACT PAGE (extended) ========== */
.contact-form-col h2 { margin: .5rem 0 0; }
.contact-form { margin-top: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-form label {
  display: block;
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--c-grey-600);
  margin-bottom: .45rem;
}
.contact-form .req { color: var(--c-teal); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: .9rem 1.25rem;
  border: 1.5px solid var(--c-grey-200);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: .97rem;
  color: var(--c-navy);
  background: var(--c-white);
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a0aec0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.contact-form select option[value=""][disabled] { color: var(--c-grey-400); }
.contact-form textarea { resize: vertical; min-height: 160px; line-height: 1.65; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--c-teal);
  box-shadow: 0 0 0 3px rgba(0,196,204,.12);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--c-grey-400); font-size: .9rem; }
.form-check {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.75rem;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid var(--c-grey-200);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  position: relative;
  background: #fff;
  transition: background .15s ease, border-color .15s ease;
}
.form-check input[type="checkbox"]:hover { border-color: var(--c-teal); }
.form-check input[type="checkbox"]:checked {
  background: var(--c-teal);
  border-color: var(--c-teal);
}
.form-check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px; top: 2px;
  width: 4px; height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-check input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,196,204,.2);
}
.form-check label {
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--c-grey-600);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 0;
  cursor: pointer;
}
.contact-submit { margin-top: .25rem; }
.form-success {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(0,196,204,.07);
  border: 1px solid rgba(0,196,204,.25);
  border-radius: var(--r);
  font-size: .92rem;
  color: var(--c-navy);
}
.contact-info-card {
  background: var(--c-grey-50);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.contact-info-card h5 {
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-grey-500);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-grey-200);
}
.contact-detail {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(0,196,204,.1);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-teal);
  flex-shrink: 0;
}
.contact-detail > div { flex: 1; }
.contact-detail strong {
  display: block;
  font-family: var(--font-display);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-grey-400);
  margin-bottom: .35rem;
}
.contact-detail p { font-size: .92rem; color: var(--c-navy); line-height: 1.65; margin: 0; }
.contact-detail a { color: var(--c-navy); text-decoration: none; transition: color .2s; }
.contact-detail a:hover { color: var(--c-teal); }
.contact-map { border-radius: var(--r-lg); overflow: hidden; }
.map-placeholder {
  height: 220px;
  background: linear-gradient(135deg, var(--c-navy) 0%, #1a3a5c 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  gap: .75rem;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,196,204,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,196,204,.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-dot {
  width: 12px; height: 12px;
  background: var(--c-teal);
  border-radius: 50%;
  position: relative; z-index: 2;
  box-shadow: 0 0 0 4px rgba(0,196,204,.3);
}
.map-ripple {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,196,204,.35);
  animation: ripple 2.4s ease-out infinite;
  z-index: 1;
}
@keyframes ripple {
  0%   { transform: scale(.3); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}
.map-label {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.direct-contact {
  padding: .85rem 0;
  border-bottom: 1px solid var(--c-grey-100);
}
.direct-contact:last-child { border-bottom: none; padding-bottom: 0; }
.direct-label {
  font-family: var(--font-display);
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-grey-400);
  margin-bottom: .3rem;
}
.direct-contact a { font-size: .88rem; color: var(--c-navy); text-decoration: none; transition: color .2s; }
.direct-contact a:hover { color: var(--c-teal); }

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-wrap   { grid-template-columns: 1fr; max-width: 700px; }
  .hero-panel  { display: none; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .research-full-grid { grid-template-columns: repeat(2,1fr); }
  .featured-report { grid-template-columns: 1fr; }
  .featured-report-cta { display: none; }
  .team-grid   { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }
  .about-content-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .news-grid    { grid-template-columns: 1fr; }
  .events-layout { grid-template-columns: 1fr; }
  .events-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .pillars-grid  { grid-template-columns: 1fr; }
  .stats-band-inner { grid-template-columns: repeat(2,1fr); }
  .research-grid-3 { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .section { padding: 3.5rem 1.25rem; }
  .page-hero { padding: 8rem 1.25rem 4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
  .research-full-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3rem, 12vw, 5rem); }
  .pillars-section { margin-top: -2rem; }
  .featured-report { padding: 2rem; }
  .team-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
