/* ═══════════════════════════════════════════════════════════════
   CFK FELLOWSHIP — Main Stylesheet
   ───────────────────────────────────────────────────────────────
   All styles live here. One file, clearly sectioned.
   If you add a new page, add its styles at the bottom with a
   clear section header.
   ═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────────
   Change colours here and they update across the whole site.
   ──────────────────────────────────────────────────────────────*/
:root {
  --header-height: 105px; /* fallback — JS updates this dynamically */
  --navy:      #060F5B;
  --navy-dark: #040a42;
  --cyan:      #0BECD6;
  --cyan-dim:  rgba(11,236,214,0.15);
  --pink:      #FF1BA2;
  --mint:      #89FEB8;
  --white:     #FFFFFF;
  --off:       #F7F7F7;
  --text:      #1A1A1A;
  --muted:     #666;
  --border:    #E8E8E8;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Urbanist', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; }

/* ── LAYOUT UTILITY ─────────────────────────────────────────── */
.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .inner { padding: 0 24px; } }

/* ── SCROLL ANIMATION ───────────────────────────────────────── */
.anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.anim.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .anim { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.fixed-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; flex-direction: column;
}
.nav {
  background: var(--navy);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 12px 20px; width: 100%;
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.nav-logo-link { flex-shrink: 0; }
.nav-links {
  display: flex; align-items: center; gap: 24px;
}
.nav-link {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); transition: color 0.2s;
}
.nav-link:hover, .nav-link-active { color: rgba(255,255,255,0.9); }
.nav-link-external { font-style: italic; text-transform: none; letter-spacing: 0; color: rgba(255,255,255,0.35); }
.nav-link-external:hover { color: rgba(255,255,255,0.6); }
.nav-cta {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 16px; transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: rgba(255,255,255,0.2); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.7); border-radius: 2px;
}

/* Announcement bar */
.announcement {
  background: #1a1a2e;
  border-bottom: 2px solid var(--cyan);
  text-align: center; padding: 10px 24px;
}
.announcement p {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.7); letter-spacing: 0.02em;
}
.announcement a {
  color: var(--cyan); text-decoration: underline;
  margin-left: 8px; font-weight: 700;
}
.announcement-badge {
  display: inline-block;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 3px 10px; margin-right: 10px; vertical-align: middle;
}
.announcement-badge-reviewing { background: rgba(255,195,0,0.12); border-color: #ffc300; color: #ffc300; }
.announcement-badge-active    { background: rgba(137,254,184,0.12); border-color: var(--mint); color: var(--mint); }
.announcement-badge-between   { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn-cyan {
  background: var(--cyan); color: var(--navy);
  font-weight: 800; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 36px; display: inline-block;
  transition: opacity 0.2s; cursor: pointer; border: none;
}
.btn-cyan:hover { opacity: 0.88; }

.btn-ghost {
  color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--cyan); border-color: var(--cyan); }

.btn-navy {
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 32px; display: inline-block; transition: opacity 0.2s;
}
.btn-navy:hover { opacity: 0.85; }

.btn-outline {
  border: 1px solid rgba(11,236,214,0.4);
  color: var(--cyan); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 22px; display: inline-block;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: var(--cyan-dim); border-color: var(--cyan); }

/* ══════════════════════════════════════════════════════════════
   TYPE UTILITIES
══════════════════════════════════════════════════════════════ */
.eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 14px; display: block;
}
.eyebrow-cyan { color: var(--cyan); }
.sh {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800; line-height: 1.1;
  color: var(--navy); margin-bottom: 18px;
}
.sh-light { color: var(--white); }
.sb {
  font-size: 17px; line-height: 1.72;
  color: var(--muted); max-width: 560px; margin-bottom: 48px;
}
.sb-light { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════════════════════════════
   HOMEPAGE HERO
══════════════════════════════════════════════════════════════ */
.hero {
  background: var(--navy);
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  position: relative; overflow: hidden;
  min-height: 92vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/assets/images/fellows-hero.jpg');
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,15,91,0.97) 0%, rgba(6,15,91,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--cyan); display: block; }
.hero-h1 {
  font-size: clamp(36px, 5.5vw, 60px); font-weight: 800;
  line-height: 1.1; color: var(--white); max-width: 780px; margin-bottom: 24px;
}
.hero-h1 .italic { font-style: italic; color: var(--cyan); }
.hero-sub {
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,0.62); max-width: 500px;
  margin-bottom: 44px; font-weight: 300;
}
.hero-status {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(11,236,214,0.3);
  background: rgba(11,236,214,0.06);
  padding: 10px 18px; font-size: 13px;
  color: rgba(255,255,255,0.65); margin-bottom: 40px;
}
.hero-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); opacity: 0.6;
}
.hero-status strong { color: var(--cyan); font-weight: 700; }
.hero-ctas { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 72px; }
.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 48px;
}
.hero-stat { flex: 1; padding-right: 32px; }
.hero-stat + .hero-stat { padding-left: 32px; border-left: 1px solid rgba(255,255,255,0.1); }
.hero-stat-num { font-size: 38px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; }

/* Ticker */
.ticker { background: var(--cyan); padding: 13px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: scroll-ticker 22s linear infinite; }
.ticker-item { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); padding: 0 36px; }
.ticker-sep { color: var(--navy); font-size: 16px; vertical-align: middle; opacity: 0.5; }
@keyframes scroll-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ══════════════════════════════════════════════════════════════
   HOMEPAGE SECTIONS (shared styles)
══════════════════════════════════════════════════════════════ */
.section    { padding: 100px 0; }
.section-sm { padding: 72px 0; }

/* What-cards */
.what-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; }
.what-card { background: var(--off); padding: 36px 32px; border-left: 3px solid var(--cyan); }
.what-card-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.what-card-body  { font-size: 15px; line-height: 1.68; color: var(--muted); }

/* Tracks */
.tracks-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; margin-top: 48px; }
.track-link { display: block; height: 100%; }
.track {
  background: rgba(255,255,255,0.045); padding: 40px 36px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  height: 100%; display: flex; flex-direction: column;
}
.track:hover { background: rgba(11,236,214,0.08); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.track-icon-img { height: 40px; width: auto; margin-bottom: 18px; object-fit: contain; }
.track-name { font-size: 21px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.track-desc { font-size: 14px; line-height: 1.68; color: rgba(255,255,255,0.52); margin-bottom: 18px; flex: 1; }
.track-pill {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan); border: 1px solid rgba(11,236,214,0.28);
  padding: 4px 11px; margin-top: auto; width: fit-content;
}

/* Journey timeline */
.journey-list { display: flex; flex-direction: column; max-width: 760px; margin-top: 48px; }
.journey-item { display: grid; grid-template-columns: 108px 3px 1fr; gap: 0 28px; }
.journey-marker { text-align: right; padding-top: 6px; padding-bottom: 40px; }
.journey-phase { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.journey-time  { font-size: 24px; font-weight: 800; color: var(--navy); line-height: 1; }
.journey-line  { width: 3px; background: var(--border); position: relative; }
.journey-line-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0%; background: var(--cyan); transition: height 0.1s linear; }
.journey-line::before {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--border); border: 2px solid var(--white); z-index: 2; transition: background 0.3s;
}
.journey-item.active-trace .journey-line::before { background: var(--cyan); }
.journey-item.highlight .journey-time { color: var(--pink); }
.journey-item:last-child .journey-line { background: linear-gradient(to bottom, var(--border), transparent); }
.journey-item:last-child .journey-line-fill { display: none; }
.journey-body  { padding-top: 2px; padding-bottom: 40px; }
.journey-name  { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.journey-desc  { font-size: 15px; line-height: 1.68; color: var(--muted); }

/* Calendar */
.calendar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 40px; }
.calendar-card { background: rgba(255,255,255,0.05); padding: 36px; transition: background 0.25s; }
.calendar-card-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.calendar-card-name  { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.calendar-card-dates { font-size: 15px; color: var(--cyan); font-weight: 500; margin-bottom: 12px; }
.calendar-card-note  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.55; }
.calendar-card.closed { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); position: relative; overflow: hidden; }
.calendar-card.closed::after { content: 'CLOSED'; position: absolute; top: 18px; right: -22px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.3); font-size: 9px; font-weight: 800; letter-spacing: 0.2em; padding: 4px 36px; transform: rotate(45deg); }
.calendar-card.closed .calendar-card-name  { color: rgba(255,255,255,0.45); }
.calendar-card.closed .calendar-card-dates { color: rgba(255,255,255,0.25); }
.calendar-card.open { background: rgba(11,236,214,0.07); border: 1px solid rgba(11,236,214,0.2); }
.calendar-card.open .calendar-card-label { color: var(--cyan); }

/* Gain */
.gain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 48px; }
.gain-card { background: var(--white); padding: 36px 32px; }
.gain-num   { font-size: 52px; font-weight: 800; color: #EFEFEF; line-height: 1; margin-bottom: 16px; }
.gain-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.gain-body  { font-size: 14px; line-height: 1.68; color: var(--muted); }

/* Photo band */
.photo-band { background: var(--navy); height: 320px; overflow: hidden; position: relative; }
.photo-band img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.photo-band-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.photo-band-text { font-size: clamp(28px,4vw,52px); font-weight: 800; color: var(--white); text-align: center; line-height: 1.1; }
.photo-band-text span { color: var(--cyan); font-style: italic; }

/* Companion */
.companion-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.companion-label   { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pink); margin-bottom: 14px; }
.companion-heading { font-size: clamp(26px,3vw,40px); font-weight: 800; color: var(--navy); line-height: 1.1; margin-bottom: 16px; }
.companion-body    { font-size: 16px; line-height: 1.72; color: var(--muted); margin-bottom: 28px; }
.companion-points  { display: flex; flex-direction: column; gap: 20px; }
.companion-point   { display: flex; gap: 16px; align-items: flex-start; }
.companion-point-icon  { width: 36px; height: 36px; background: var(--off); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.companion-point-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.companion-point-desc  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* Waitlist / notify section */
.notify-section { background: var(--navy); padding: 100px 0; position: relative; overflow: hidden; }
.notify-section::before { content: ''; position: absolute; top: -120px; right: -120px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(11,236,214,0.06) 0%, transparent 70%); pointer-events: none; }
.notify-inner { max-width: 640px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.notify-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--cyan); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.notify-eyebrow::before, .notify-eyebrow::after { content: ''; display: block; width: 24px; height: 1px; background: var(--cyan); opacity: 0.4; }
.notify-heading { font-size: clamp(32px,4.5vw,52px); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.notify-heading em { font-style: italic; color: var(--cyan); }
.notify-sub { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 48px; font-weight: 300; }
.notify-form-wrap { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); padding: 40px 36px; }
.notify-input { flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); color: var(--white); font-family: 'Urbanist', sans-serif; font-size: 15px; padding: 15px 20px; outline: none; transition: border-color 0.2s, background 0.2s; -webkit-appearance: none; }
.notify-input::placeholder { color: rgba(255,255,255,0.28); }
.notify-input:focus { border-color: rgba(11,236,214,0.4); background: rgba(255,255,255,0.1); }
.notify-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 2px; }
.notify-name-row .notify-input { border-right: 1px solid rgba(255,255,255,0.14); }
.notify-name-row .notify-input:first-child { border-right: none; }
.notify-email-row { display: flex; gap: 0; margin-top: 2px; }
.notify-email-row .notify-input { border-right: none; }
.notify-track-row { margin-top: 2px; margin-bottom: 2px; }
.notify-track-row .notify-input { width: 100%; border-right: 1px solid rgba(255,255,255,0.14); cursor: pointer; }
.notify-track-row select.notify-input option { background: #0d1a6b; color: var(--white); }
.notify-btn { background: var(--cyan); color: var(--navy); font-family: 'Urbanist', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; padding: 15px 28px; border: none; cursor: pointer; transition: opacity 0.2s; white-space: nowrap; flex-shrink: 0; }
.notify-btn:hover { opacity: 0.88; }
.notify-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.notify-consent { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 16px; line-height: 1.55; }
.notify-success { display: none; text-align: center; padding: 32px 0 8px; }
.notify-success-icon    { font-size: 40px; margin-bottom: 16px; }
.notify-success-heading { font-size: 22px; font-weight: 800; color: var(--cyan); margin-bottom: 8px; }
.notify-success-body    { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.notify-note { margin-top: 28px; font-size: 13px; color: rgba(255,255,255,0.5); text-align: center; }
.notify-note a { color: rgba(255,255,255,0.7); text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════
   PAGE HEADER (inner pages — About, Fellows, Cohorts)
══════════════════════════════════════════════════════════════ */
.page-header {
  background: var(--navy);
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%);
  width: 60%; height: 250px;
  background: radial-gradient(ellipse at center, rgba(11,236,214,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; }
.page-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 1rem; display: block;
}
.page-title {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
  color: var(--white); line-height: 1.1; margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.page-intro {
  font-size: 1.05rem; line-height: 1.7;
  color: rgba(255,255,255,0.6); max-width: 560px; font-weight: 300;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════════ */
.about-section { padding: 5rem 0; }
.about-section-white  { background: var(--white); }
.about-section-off    { background: var(--off); }
.about-section-navy   { background: var(--navy); }

.about-content { max-width: 780px; }
.about-content h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800;
  color: var(--navy); line-height: 1.15; margin-bottom: 1.5rem;
}
.about-section-navy .about-content h2 { color: var(--white); }
.about-content p {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--muted); margin-bottom: 1.2rem;
}
.about-section-navy .about-content p { color: rgba(255,255,255,0.65); }

/* Commitment cards */
.commitment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 3rem; }
.commitment-card { background: rgba(255,255,255,0.05); padding: 2rem; }
.commitment-icon  { font-size: 2rem; margin-bottom: 1rem; }
.commitment-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.commitment-body  { font-size: 0.93rem; line-height: 1.7; color: rgba(255,255,255,0.55); }

/* Timeline */
.timeline { max-width: 700px; margin-top: 3rem; }
.timeline-item { display: grid; grid-template-columns: 120px 2px 1fr; gap: 0 24px; padding-bottom: 2.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-date {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cyan);
  text-align: right; padding-top: 4px;
}
.timeline-line { background: rgba(11,236,214,0.2); position: relative; }
.timeline-line::before {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 9px; height: 9px; border-radius: 50%; background: var(--cyan);
}
.timeline-body { padding-top: 2px; }
.timeline-label { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.timeline-desc  { font-size: 0.9rem; line-height: 1.65; color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════════════════════════
   FELLOWS DIRECTORY PAGE
══════════════════════════════════════════════════════════════ */
.fellows-section { padding: 4rem 0; }
.fellows-section + .fellows-section { border-top: 1px solid var(--border); }

.fellows-section-heading {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 2rem; display: flex; align-items: center; gap: 1rem;
}
.fellows-section-heading::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── LEVEL BADGE ── */
.level-badge {
  display: inline-flex; align-items: center;
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
  width: fit-content;
}
.level-badge-senior-fellow    { background: #0BECD6; color: var(--navy); }
.level-badge-associate-fellow { background: #89FEB8; color: var(--navy); }
.level-badge-foundation-fellow{ background: rgba(6,15,91,0.08); border: 1px solid rgba(6,15,91,0.15); color: var(--navy); }
.level-badge-principal-fellow { background: #CC1580; color: var(--white); }

/* ── FELLOWS GRID ── */
.fellows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* ── FELLOW CARD ── */
.fellow-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  box-shadow: 0 1px 4px rgba(6,15,91,0.06);
}
.fellow-card:hover {
  box-shadow: 0 8px 28px rgba(6,15,91,0.12);
  transform: translateY(-3px);
}

/* Coloured top accent bar — colour matches level */
.fellow-card::before {
  content: ''; display: block;
  height: 4px; width: 100%;
  background: var(--border);
}
.fellow-card.card-senior::before    { background: #0BECD6; }
.fellow-card.card-associate::before { background: #89FEB8; }
.fellow-card.card-foundation::before{ background: rgba(6,15,91,0.15); }
.fellow-card.card-principal::before { background: #CC1580; }
.fellow-card.fellow-card-alumni::before  { background: var(--border); }
.fellow-card.fellow-card-emeritus::before{ background: #CC1580; }

/* Card inner padding */
.fellow-card-inner {
  padding: 1.5rem;
  display: flex; flex-direction: column;
  flex: 1;
}

/* Photo + badge row */
.fellow-card-top {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.fellow-card-photo {
  width: 64px; height: 64px; border-radius: 50%;
  overflow: hidden; background: var(--navy);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(6,15,91,0.15);
}
.fellow-card-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  z-index: 2;
}
.fellow-card-initials {
  font-size: 1.1rem; font-weight: 800; color: #0BECD6;
  position: relative; z-index: 1;
}

/* Name */
.fellow-card-name {
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.15rem;
  line-height: 1.2;
}

/* Track */
.fellow-card-track {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 0.6rem;
}

/* Role */
.fellow-card-role {
  font-size: 0.82rem; color: var(--muted);
  line-height: 1.5; flex: 1; margin-bottom: 1.25rem;
}

/* View profile link */
.fellow-card-link {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}
.fellow-card-link::after {
  content: '→';
  transition: transform 0.2s;
}
.fellow-card-link:hover { color: var(--cyan); }
.fellow-card-link:hover::after { transform: translateX(3px); }

/* ── ALUMNI CARD — quiet, greyed, part of the story but not in the room ── */
.fellow-card.fellow-card-alumni {
  background: #F4F4F6;
  border-color: #DDDDE3;
  box-shadow: none;
}
.fellow-card.fellow-card-alumni:hover {
  box-shadow: 0 4px 16px rgba(6,15,91,0.07);
  transform: translateY(-2px);
}
.fellow-card.fellow-card-alumni::before { background: #DDDDE3; }
.fellow-card.fellow-card-alumni .fellow-card-name  { color: #444; }
.fellow-card.fellow-card-alumni .fellow-card-track { color: #888; }
.fellow-card.fellow-card-alumni .fellow-card-role  { color: #999; }
.fellow-card.fellow-card-alumni .fellow-card-link  { color: #888; }
.fellow-card.fellow-card-alumni .fellow-card-link:hover { color: var(--navy); }
.fellow-card.fellow-card-alumni .fellow-card-initials { color: #4A4B6A; }
.fellow-card.fellow-card-alumni .fellow-card-photo { background: #C8C9D8; }

/* Alumni badges — greyscale */
.fellow-card.fellow-card-alumni .level-badge {
  background: rgba(0,0,0,0.06);
  color: #888;
  border: 1px solid rgba(0,0,0,0.1);
}
.alumni-tag {
  display: inline-flex; align-items: center;
  font-size: 9px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: #888;
  margin-bottom: 0.5rem;
}

/* ── EMERITUS CARD — dark navy, honoured, permanent ── */
.fellow-card.fellow-card-emeritus {
  background: var(--navy);
  border-color: rgba(11,236,214,0.15);
  box-shadow: 0 2px 12px rgba(6,15,91,0.2);
}
.fellow-card.fellow-card-emeritus:hover {
  box-shadow: 0 10px 32px rgba(6,15,91,0.3);
  transform: translateY(-3px);
}
.fellow-card.fellow-card-emeritus::before { background: #CC1580; }
.fellow-card.fellow-card-emeritus .fellow-card-inner { padding: 1.5rem; }
.fellow-card.fellow-card-emeritus .fellow-card-name  { color: #fff; }
.fellow-card.fellow-card-emeritus .fellow-card-track { color: var(--cyan); }
.fellow-card.fellow-card-emeritus .fellow-card-role  { color: rgba(255,255,255,0.55); }
.fellow-card.fellow-card-emeritus .fellow-card-link  { color: rgba(255,255,255,0.6); }
.fellow-card.fellow-card-emeritus .fellow-card-link:hover { color: var(--cyan); }
.fellow-card.fellow-card-emeritus .fellow-card-initials { color: var(--cyan); }
.fellow-card.fellow-card-emeritus .fellow-card-photo { background: rgba(11,236,214,0.1); border: 2px solid rgba(11,236,214,0.2); }

/* Emeritus badge */
.fellow-card.fellow-card-emeritus .level-badge {
  background: rgba(204,21,128,0.15);
  color: #FF1BA2;
  border: 1px solid rgba(204,21,128,0.3);
}
.emeritus-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 9px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: #FF1BA2;
  margin-bottom: 0.5rem;
}
.emeritus-tag::before {
  content: '✦';
  font-size: 8px;
}

/* ── COLLAPSIBLE ALUMNI SECTION ── */
.alumni-toggle-btn {
  display: flex; align-items: center; gap: 0.75rem;
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  width: 100%;
}
.alumni-toggle-btn::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.alumni-toggle-chevron {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--border); flex-shrink: 0;
  transition: transform 0.25s, background 0.2s;
}
.alumni-toggle-chevron svg { width: 11px; height: 11px; }
.alumni-toggle-btn[aria-expanded="true"] .alumni-toggle-chevron { transform: rotate(180deg); background: var(--navy); color: white; }
.alumni-collapsible { overflow: hidden; transition: max-height 0.4s ease; }
.alumni-collapsible.collapsed { max-height: 0; }

/* Current cohort cards (lighter — no profile link) */
.cohort-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2px;
}
.cohort-card {
  background: var(--off); padding: 1.5rem 1.25rem;
  text-align: center;
}
.cohort-card-photo {
  width: 64px; height: 64px; border-radius: 50%;
  overflow: hidden; background: var(--navy);
  margin: 0 auto 0.75rem;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.cohort-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  position: absolute; inset: 0;
}
.cohort-card-initials {
  font-size: 1.1rem; font-weight: 800; color: #0BECD6;
  position: relative; z-index: 1;
}
.cohort-card-name  { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.cohort-card-track { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ══════════════════════════════════════════════════════════════
   INDIVIDUAL FELLOW PROFILE PAGE
══════════════════════════════════════════════════════════════ */
.fellow-header {
  background: var(--navy);
  padding: 9rem 0 4rem;
  position: relative; overflow: hidden;
}
.fellow-header::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,236,214,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.back-link {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  display: inline-block; margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--cyan); }
.fellow-header-inner {
  display: flex; gap: 3rem; align-items: flex-start;
  position: relative; z-index: 1;
}
.fellow-photo-wrap { flex-shrink: 0; }
.fellow-photo-wrap {
  position: relative;
  width: 140px; height: 140px;
  flex-shrink: 0;
}
/* Placeholder always rendered, sits at z-index 0 */
.fellow-photo-placeholder {
  position: absolute; inset: 0;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(11,236,214,0.15);
  border: 3px solid #0BECD6;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 800; color: #0BECD6;
  z-index: 0;
}
/* Photo sits on top at z-index 1 — covers placeholder when it loads */
.fellow-photo {
  position: absolute; inset: 0;
  width: 140px; height: 140px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  border: 3px solid rgba(11,236,214,0.3);
  z-index: 1;
}
.fellow-level-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 0.5rem;
}
.fellow-level-senior-fellow    { background: #0BECD6; border: 1px solid #0BECD6; color: var(--navy); }
.fellow-level-associate-fellow { background: #89FEB8; border: 1px solid #89FEB8; color: var(--navy); }
.fellow-level-foundation-fellow{ background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.4); color: var(--white); }
.fellow-level-principal-fellow { background: #CC1580; border: 1px solid #CC1580; color: var(--white); }

.fellow-status-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 10px; margin-bottom: 0.75rem; margin-left: 6px;
}
.fellow-status-alumni   { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); }
.fellow-status-emeritus { background: rgba(255,27,162,0.1); color: var(--pink); }

.fellow-name {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
  color: var(--white); line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 0.4rem;
}
.fellow-role {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  font-weight: 400; margin-bottom: 1.5rem;
}
.fellow-meta-row { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.fellow-meta-item { display: flex; flex-direction: column; gap: 3px; }
.fellow-meta-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.fellow-meta-value {
  font-size: 0.88rem; color: #ffffff; font-weight: 600;
  background: none;
}
/* Cohort link inside the fellow profile meta row */
.fellow-profile-info .fellow-meta-value a.fellow-meta-link,
.fellow-header .fellow-meta-value a.fellow-meta-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  transition: color 0.2s, border-color 0.2s;
}
.fellow-profile-info .fellow-meta-value a.fellow-meta-link:hover,
.fellow-header .fellow-meta-value a.fellow-meta-link:hover {
  color: var(--cyan) !important;
  border-bottom-color: var(--cyan);
}


/* Social links on profile */
.fellow-social { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.fellow-social-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 12px; border-radius: 100px;
  transition: all 0.2s;
}
.fellow-social-link:hover { color: var(--cyan); border-color: rgba(11,236,214,0.4); background: rgba(11,236,214,0.06); }
.fellow-social-link svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Profile body */
.fellow-body { padding: 4rem 0; background: var(--white); }
.fellow-body-inner { display: flex; flex-direction: column; gap: 3rem; max-width: 760px; }
.fellow-section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1.25rem; display: block;
  padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}
.fellow-bio { font-size: 1.05rem; line-height: 1.85; color: var(--text); margin-bottom: 1.25rem; }
.fellow-statement {
  border-left: 3px solid var(--cyan); padding-left: 1.25rem;
  font-size: 1rem; font-style: italic; color: var(--muted);
  line-height: 1.75;
}
.fellow-current-role { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.fellow-other-roles { list-style: none; margin-bottom: 1.25rem; }
.fellow-other-roles li {
  font-size: 0.9rem; color: var(--muted); padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}
.fellow-timeline { margin-top: 1rem; }
.fellow-timeline-entry {
  font-size: 0.88rem; color: var(--muted); padding: 0.5rem 0;
  border-bottom: 1px dotted var(--border);
}
.fellow-timeline-entry:last-child { border-bottom: none; }

.fellow-footer-nav { background: var(--off); padding: 3rem 0; border-top: 1px solid var(--border); }

/* ── FELLOW PROFILE HEADER — REDESIGNED ── */

/* Outer wrapper — full width navy section */
.fellow-header {
  background: var(--navy);
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 0;
  position: relative; overflow: hidden;
}
.fellow-header::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,236,214,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Back link sits above the card */
.back-link {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  display: inline-block; margin-bottom: 2rem;
  transition: color 0.2s; position: relative; z-index: 1;
}
.back-link:hover { color: var(--cyan); }

/* The profile card — photo left, info right */
.fellow-profile-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: stretch;
  position: relative; z-index: 1;
  margin-top: 1rem;
}

/* Left — square photo block */
.fellow-profile-photo {
  width: 320px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(11,236,214,0.08);
  flex-shrink: 0;
  position: relative;
}
.fellow-profile-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  position: relative; z-index: 1;
}
/* Initials fallback for the square photo */
.fellow-profile-photo-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; font-weight: 800;
  color: rgba(11,236,214,0.3);
  z-index: 0;
}

/* Right — info panel */
.fellow-profile-info {
  padding: 2.5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
  background: rgba(255,255,255,0.03);
  border-left: 1px solid rgba(255,255,255,0.06);
}

.fellow-level-badge {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
  margin-bottom: 1rem; width: fit-content;
}
.fellow-level-senior-fellow    { background: #0BECD6; color: var(--navy); }
.fellow-level-associate-fellow { background: #89FEB8; color: var(--navy); }
.fellow-level-foundation-fellow{ background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: var(--white); }
.fellow-level-principal-fellow { background: #CC1580; color: var(--white); }

.fellow-status-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 10px; margin-bottom: 0.75rem; margin-left: 8px;
}
.fellow-status-alumni   { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.45); }
.fellow-status-emeritus { background: rgba(204,21,128,0.15); color: #FF1BA2; }

.fellow-name {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  color: var(--white); line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 0.4rem;
}
.fellow-role {
  font-size: 1rem; color: rgba(255,255,255,0.5);
  font-weight: 400; margin-bottom: 2rem;
}

.fellow-meta-row { display: flex; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.fellow-meta-item { display: flex; flex-direction: column; gap: 4px; }
.fellow-meta-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.fellow-meta-value {
  font-size: 0.88rem; color: #ffffff; font-weight: 600;
  background: none;
}


/* Social links */
.fellow-social { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.fellow-social-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 12px; border-radius: 100px;
  transition: all 0.2s;
}
.fellow-social-link:hover { color: var(--cyan); border-color: rgba(11,236,214,0.4); background: rgba(11,236,214,0.06); }
.fellow-social-link svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Notice banners (alumni/emeritus) */
.fellow-alumni-notice,
.fellow-emeritus-notice {
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 100%;
}
.fellow-alumni-notice {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
}
.fellow-emeritus-notice {
  background: rgba(204,21,128,0.07);
  border-left: 3px solid #CC1580;
  color: rgba(255,255,255,0.6);
}
.fellow-emeritus-notice strong { color: #FF1BA2; }

/* Profile body — bio, roles, timeline */
.fellow-body { padding: 4rem 0; background: var(--white); }
.fellow-body-inner { display: flex; flex-direction: column; gap: 3rem; max-width: 760px; }
.fellow-section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1.25rem; display: block;
  padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}
.fellow-bio { font-size: 1.05rem; line-height: 1.85; color: var(--text); margin-bottom: 1.25rem; }
.fellow-statement {
  border-left: 3px solid var(--cyan); padding-left: 1.25rem;
  font-size: 1rem; font-style: italic; color: var(--muted);
  line-height: 1.75;
}
.fellow-current-role { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.fellow-other-roles { list-style: none; margin-bottom: 1.25rem; }
.fellow-other-roles li {
  font-size: 0.9rem; color: var(--muted); padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}
.fellow-timeline { margin-top: 1rem; }
.fellow-timeline-entry {
  font-size: 0.88rem; color: var(--muted); padding: 0.5rem 0;
  border-bottom: 1px dotted var(--border);
}
.fellow-timeline-entry:last-child { border-bottom: none; }
.fellow-footer-nav { background: var(--off); padding: 3rem 0; border-top: 1px solid var(--border); }

/* ── RESPONSIVE — Fellow profile ── */
@media (max-width: 900px) {
  .fellow-profile-card {
    grid-template-columns: 1fr;
  }
  .fellow-profile-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 340px;
  }
  .fellow-profile-info {
    padding: 2rem;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
}

@media (max-width: 640px) {
  .fellow-profile-photo {
    max-height: 280px;
  }
  .fellow-profile-info { padding: 1.75rem 1.25rem; }
  .fellow-meta-row { gap: 1.25rem; }
  .fellow-name { font-size: 1.75rem; }
}

/* ── ALUMNI PROFILE HEADER ── */
.fellow-header-alumni {
  background: #2A2A3E;  /* dark desaturated — not as warm as navy, slightly removed */
}
.fellow-header-alumni .fellow-name { color: rgba(255,255,255,0.85); }
.fellow-header-alumni .fellow-role { color: rgba(255,255,255,0.45); }
.fellow-header-alumni .fellow-meta-label { color: rgba(255,255,255,0.4); }
.fellow-header-alumni .fellow-meta-value { color: rgba(255,255,255,0.7); }
.fellow-header-alumni .back-link { color: rgba(255,255,255,0.3); }
.fellow-header-alumni .fellow-photo { border-color: rgba(255,255,255,0.15); }
.fellow-header-alumni .fellow-photo-placeholder {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.3);
}

/* Alumni notice banner */
.fellow-alumni-notice {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid rgba(255,255,255,0.2);
  padding: 0.75rem 1rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 480px;
}

/* ── EMERITUS PROFILE HEADER ── */
.fellow-header-emeritus {
  background: var(--navy);
  border-bottom: 3px solid #CC1580;
}
.fellow-header-emeritus .fellow-meta-value { color: #ffffff; }

/* Emeritus honour notice */
.fellow-emeritus-notice {
  background: rgba(204,21,128,0.08);
  border-left: 3px solid #CC1580;
  padding: 0.75rem 1rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 480px;
}
.fellow-emeritus-notice strong { color: #FF1BA2; font-weight: 700; }

/* ══════════════════════════════════════════════════════════════
   COHORTS PAGES
══════════════════════════════════════════════════════════════ */
.cohorts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2px; margin-top: 3rem; }
.cohort-summary-card {
  background: var(--off); padding: 2.5rem;
  display: flex; flex-direction: column;
  transition: background 0.2s;
}
.cohort-summary-card:hover { background: var(--white); }
.cohort-summary-card.cohort-active { background: var(--navy); }
.cohort-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 10px; margin-bottom: 1rem; width: fit-content;
}
.cohort-badge-active   { background: rgba(11,236,214,0.15); border: 1px solid var(--cyan); color: var(--cyan); }
.cohort-badge-founding { background: rgba(255,27,162,0.1); border: 1px solid var(--pink); color: var(--pink); }
.cohort-badge-completed{ background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); }
.cohort-summary-name   { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.4rem; }
.cohort-active .cohort-summary-name { color: var(--white); }
.cohort-summary-dates  { font-size: 0.9rem; margin-bottom: 0.75rem; }
.cohort-active .cohort-summary-dates { color: var(--cyan); }
.cohort-summary-desc   { font-size: 0.88rem; line-height: 1.65; color: var(--muted); flex: 1; margin-bottom: 1.5rem; }
.cohort-active .cohort-summary-desc { color: rgba(255,255,255,0.55); }
.cohort-meta-row { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cohort-meta-item { display: flex; flex-direction: column; gap: 2px; }
.cohort-meta-label { font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.cohort-active .cohort-meta-label { color: rgba(255,255,255,0.5); }
.cohort-meta-val { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.cohort-active .cohort-meta-val { color: var(--white); }
.cohort-link {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy);
  border-bottom: 1px solid var(--navy); padding-bottom: 2px;
  display: inline-block; margin-top: auto; transition: all 0.2s;
}
.cohort-active .cohort-link { color: var(--cyan); border-color: rgba(11,236,214,0.4); }
.cohort-link:hover { color: var(--cyan); border-color: var(--cyan); }

/* Individual cohort page */
.cohort-page-header-meta { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1.5rem; }
.cohort-report-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan); color: var(--navy);
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 12px 24px;
  transition: opacity 0.2s;
}
.cohort-report-btn:hover { opacity: 0.88; }
.cohort-report-btn svg { width: 15px; height: 15px; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
footer {
  background: var(--navy); padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  align-items: flex-start;
  max-width: 1100px; margin: 0 auto; padding: 0 48px;
  display: flex; flex-direction: column; gap: 24px;
}
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-nav a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; }
.footer-copy    { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-email   { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-email:hover { color: var(--cyan); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .what-layout, .tracks-grid, .gain-grid,
  .calendar-grid, .companion-inner,
  .commitment-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 28px; }
  .hero-stat + .hero-stat { border-left: none; padding-left: 0; }
  .journey-item { grid-template-columns: 80px 3px 1fr; }
  .notify-name-row { grid-template-columns: 1fr; }
  .notify-name-row .notify-input { border-right: 1px solid rgba(255,255,255,0.14); }
  .fellow-header-inner { flex-direction: column; gap: 1.5rem; }
  .fellow-photo, .fellow-photo-placeholder { width: 100px; height: 100px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 105px; left: 0; right: 0; background: rgba(4,10,66,0.98); padding: 1.5rem; gap: 1rem; z-index: 199; border-bottom: 1px solid rgba(11,236,214,0.15); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero { padding-top: calc(var(--header-height) + 40px); }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-stat + .hero-stat { border-left: none; padding-left: 0; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-cyan { width: 100%; text-align: center; }
  .fellows-grid { grid-template-columns: 1fr 1fr; }
  .cohort-card-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner {
  align-items: flex-start; padding: 0 24px; }
  .notify-form-wrap { padding: 28px 20px; }
  .notify-email-row { flex-direction: column; }
  .notify-email-row .notify-input { border-right: 1px solid rgba(255,255,255,0.14); }
  .notify-btn { width: 100%; margin-top: 2px; }
  .timeline-item { grid-template-columns: 90px 2px 1fr; }
}

@media (max-width: 400px) {
  .fellows-grid { grid-template-columns: 1fr; }
  .cohort-card-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   EARLIER COHORTS ACCORDION (cohorts/index.html)
══════════════════════════════════════════════════════════════ */
.earlier-cohorts-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: none; border: 1px solid var(--border);
  cursor: pointer; padding: 0.75rem 1.25rem;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}
.earlier-cohorts-btn:hover { border-color: var(--navy); color: var(--navy); }
.earlier-cohorts-chevron {
  display: inline-flex; align-items: center;
  transition: transform 0.25s;
}
.earlier-cohorts-chevron svg { width: 14px; height: 14px; }
.earlier-cohorts-btn[aria-expanded="true"] .earlier-cohorts-chevron {
  transform: rotate(180deg);
}
.earlier-cohorts-body {
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.earlier-cohorts-body.collapsed { max-height: 0; }
