/* =====================================================
   EFMS / CAIRO Journal Club — style.css
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a3a6b;
  --navy-dark: #0f2448;
  --burgundy: #c8102e;
  --burgundy-dark: #a00d24;
  --green: #1a5c3a;
  --purple: #5a3d7a;
  --bg: #f8f6f3;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #555;
  --light-border: rgba(26,58,107,0.1);
  --radius: 8px;
  --radius-lg: 12px;
  font-family: 'Georgia', 'Times New Roman', serif;
}

body { background: var(--bg); color: var(--text); min-height: 100vh; }

/* ── NAVBAR ── */
#navbar {
  background: linear-gradient(135deg, #1a3a6b 0%, #0f2448 100%);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center; height: 64px; gap: 8px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; border: none; background: none; flex-shrink: 0;
}
.nav-brand .efms-logo { width: 38px; height: 38px; object-fit: contain; background: #fff; border-radius: 6px; padding: 3px; }
.nav-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.2); }
.nav-brand .cjc-logo-nav { height: 28px; width: 88px; object-fit: contain; }
.nav-spacer { flex: 1; }
.nav-links { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.nav-btn {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 11px; color: rgba(255,255,255,0.82);
  padding: 6px 9px; border-radius: 4px;
  transition: all 0.2s; letter-spacing: 0.04em;
  text-transform: uppercase; font-weight: 700;
}
.nav-btn:hover, .nav-btn.active { color: #fff; background: rgba(255,255,255,0.15); }
.nav-portal-btn {
  margin-left: 10px; background: var(--burgundy); color: #fff; border: none;
  padding: 8px 16px; border-radius: 4px; font-family: inherit; font-size: 11px;
  font-weight: 700; cursor: pointer; letter-spacing: 0.05em; text-transform: uppercase;
  transition: background 0.2s; flex-shrink: 0;
}
.nav-portal-btn:hover { background: var(--burgundy-dark); }
.hamburger {
  display: none; background: none; border: none; color: #fff;
  font-size: 24px; cursor: pointer; margin-left: 10px;
}
.mobile-menu {
  display: none; background: #0f2448;
  padding: 12px 20px; border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu button {
  display: block; width: 100%; text-align: left; background: none; border: none;
  color: rgba(255,255,255,0.85); padding: 10px 0; font-size: 14px; cursor: pointer;
  font-family: inherit; border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; }
.page-wrap { max-width: 1200px; margin: 0 auto; padding: 64px 20px; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--burgundy); color: #fff; border: none;
  padding: 12px 24px; border-radius: 4px; font-family: inherit;
  font-size: 14px; font-weight: 700; cursor: pointer;
  letter-spacing: 0.05em; text-transform: uppercase; transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--burgundy-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--navy); border: 2px solid var(--navy);
  padding: 11px 24px; border-radius: 4px; font-family: inherit;
  font-size: 14px; font-weight: 700; cursor: pointer;
  letter-spacing: 0.05em; text-transform: uppercase; transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7);
  padding: 11px 24px; border-radius: 4px; font-family: inherit;
  font-size: 14px; font-weight: 700; cursor: pointer;
  letter-spacing: 0.05em; text-transform: uppercase; transition: all 0.2s;
  display: inline-block;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--burgundy); font-weight: 700; margin-bottom: 12px;
  font-family: 'Helvetica Neue', sans-serif;
}
.page-title { font-size: clamp(26px, 4vw, 42px); color: var(--navy); line-height: 1.2; font-weight: 700; }
.page-subtitle {
  font-size: 17px; color: var(--muted); line-height: 1.7;
  max-width: 640px; margin-top: 16px;
  font-family: 'Helvetica Neue', sans-serif;
}

/* ── CARDS ── */
.card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--light-border); overflow: hidden;
  transition: all 0.2s;
}
.card:hover { box-shadow: 0 8px 32px rgba(26,58,107,0.1); transform: translateY(-2px); }

/* ── TAGS ── */
.tag {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; font-family: 'Helvetica Neue', sans-serif;
}
.tag-lung { background: #e8f0f8; color: #1a3a6b; }
.tag-breast { background: #fce8ed; color: #8b1a2e; }
.tag-gu { background: #e8f3ee; color: #1a5c3a; }
.tag-gi { background: #fef3e0; color: #7a4a00; }
.tag-precision { background: #ede8f8; color: #4a1a7a; }
.tag-general { background: #f0efe8; color: #444; }
.tag-gynecology { background: #ffe8f8; color: #7a1a5a; }
.tag-upcoming { background: #e8f3ee; color: #1a5c3a; }
.tag-completed { background: #f0efe8; color: #555; }
.tag-ongoing { background: #fef3e0; color: #7a4a00; }

/* ── FILTER BUTTONS ── */
.filter-btn {
  background: #f0efe8; border: 1px solid rgba(26,58,107,0.15);
  padding: 6px 14px; border-radius: 20px;
  font-family: 'Helvetica Neue', sans-serif; font-size: 12px;
  font-weight: 600; cursor: pointer; color: #555;
  letter-spacing: 0.03em; transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.grid-auto-sm { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.grid-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1a3a6b 0%, #0f2448 60%, #7b2d42 100%);
  margin: 0; padding: 80px 20px; position: relative; overflow: hidden;
}
.hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.hero-radial {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(200,16,46,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-logos { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-efms-wrap { background: #fff; border-radius: 10px; padding: 6px 10px; display: flex; align-items: center; }
.hero-efms-img { width: 60px; height: 50px; object-fit: contain; }
.hero-x { color: rgba(255,255,255,0.4); font-size: 22px; }
.hero-cjc-wrap { border-radius: 10px; padding: 4px 8px; }
.hero-cjc-img { height: 50px; max-width: 180px; object-fit: contain; }
.hero h1 { font-size: clamp(26px, 5vw, 52px); color: #fff; font-weight: 700; line-height: 1.2; max-width: 700px; margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 580px; line-height: 1.7; margin-bottom: 36px; font-family: 'Helvetica Neue', sans-serif; font-weight: 300; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── STATS BAR ── */
.stats-bar { background: var(--white); border-bottom: 3px solid var(--burgundy); }
.stats-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.stat-item { text-align: center; padding: 28px 20px; border-right: 1px solid rgba(26,58,107,0.08); }
.stat-item:last-child { border-right: none; }
.stat-value { font-size: 34px; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin-top: 8px; font-family: 'Helvetica Neue', sans-serif; }

/* ── SECTION DIVIDERS ── */
.section { padding: 64px 0 48px; border-top: 1px solid rgba(26,58,107,0.08); }
.section:first-child { border-top: none; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 28px; }
.timeline-line { position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, #1a3a6b, #c8102e); }
.timeline-item { display: flex; gap: 20px; margin-bottom: 16px; position: relative; }
.timeline-dot { position: absolute; left: -24px; top: 4px; width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--bg); }
.timeline-body { background: var(--white); border-radius: 6px; padding: 12px 16px; flex: 1; border: 1px solid rgba(26,58,107,0.08); }
.timeline-year { font-size: 13px; font-weight: 800; color: var(--burgundy); font-family: sans-serif; margin-right: 12px; }
.timeline-text { font-size: 14px; color: #333; font-family: 'Helvetica Neue', sans-serif; }

/* ── FOUNDER SPOTLIGHT ── */
.spotlight-img-wrap { height: 220px; background: linear-gradient(135deg, #1a3a6b, #0f2448); display: flex; align-items: center; justify-content: center; }
.spotlight-img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; object-position: top; border: 3px solid rgba(255,255,255,0.4); }
.spotlight-body { padding: 20px; }
.spotlight-name { font-weight: 700; font-size: 18px; color: var(--navy); margin-bottom: 4px; }
.spotlight-role { font-size: 12px; color: var(--burgundy); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; font-family: sans-serif; }
.spotlight-inst { font-size: 13px; color: #777; font-family: 'Helvetica Neue', sans-serif; }
.spotlight-quote { font-size: 17px; font-style: italic; color: var(--navy); line-height: 1.7; margin-bottom: 20px; border-left: 4px solid var(--burgundy); padding-left: 20px; }
.spotlight-text { font-size: 15px; color: var(--muted); line-height: 1.8; font-family: 'Helvetica Neue', sans-serif; margin-bottom: 16px; }

/* ── FOUNDER CARDS ── */
.founder-card .card-top { height: 8px; }
.founder-card .card-body { padding: 24px; }
.founder-avatar { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; overflow: hidden; border: 3px solid rgba(26,58,107,0.15); }
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.founder-avatar-initials { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 18px; }
.founder-name { font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 4px; }
.founder-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-family: sans-serif; }
.founder-inst { font-size: 13px; color: #444; font-family: sans-serif; margin-bottom: 4px; }
.founder-role { font-size: 13px; color: #666; font-family: sans-serif; margin-bottom: 14px; }
.founder-bio { font-size: 14px; color: var(--muted); line-height: 1.7; font-family: 'Helvetica Neue', sans-serif; margin-bottom: 14px; }
.founder-specialty { font-size: 12px; color: #888; font-family: sans-serif; border-top: 1px solid rgba(26,58,107,0.08); padding-top: 12px; }
.founder-note { margin-top: 12px; padding: 8px 12px; background: #fff8e8; border-radius: 4px; font-size: 12px; color: #664400; font-family: sans-serif; }
.advisory-note { padding: 12px 16px; background: #fff8e8; border: 1px solid #e8c840; border-radius: 6px; font-size: 13px; color: #664400; font-family: sans-serif; margin-bottom: 32px; }

/* ── EVENT CARDS ── */
.event-card .card-stripe { height: 6px; }
.event-card .card-body { padding: 20px; }
.event-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.event-card .event-subtitle { font-size: 13px; color: var(--burgundy); font-weight: 600; margin-bottom: 12px; font-family: sans-serif; }
.event-card .event-meta { font-size: 13px; color: #777; margin-bottom: 4px; font-family: sans-serif; }
.event-card .event-desc { font-size: 13px; color: var(--muted); line-height: 1.6; font-family: 'Helvetica Neue', sans-serif; margin-bottom: 14px; }
.speakers-wrap { border-top: 1px solid rgba(26,58,107,0.08); padding-top: 12px; }
.speakers-label { font-size: 11px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.08em; font-family: sans-serif; margin-bottom: 8px; }
.speaker-pill { background: #f0eff8; color: #333; font-size: 11px; padding: 3px 8px; border-radius: 4px; font-family: sans-serif; display: inline-block; margin: 2px 2px 2px 0; }
.tags-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.filter-count { font-size: 14px; color: #888; font-family: sans-serif; margin-bottom: 16px; }

/* ── DARK BANNER ── */
.dark-banner { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); border-radius: var(--radius-lg); padding: 36px 40px; color: #fff; margin-top: 48px; }
.dark-banner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.dark-stat-val { font-size: 32px; font-weight: 700; color: #fff; }
.dark-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; font-family: sans-serif; text-align: center; }
.dark-stat-item { text-align: center; }

/* ── FEATURE TILES ── */
.feature-tile { background: var(--white); border-radius: var(--radius); border: 1px solid var(--light-border); padding: 20px 18px; }
.feature-icon { font-size: 24px; margin-bottom: 10px; }
.feature-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feature-text { font-size: 13px; color: #777; line-height: 1.6; font-family: 'Helvetica Neue', sans-serif; }

/* ── FORMAT CARDS ── */
.format-share { background: var(--burgundy); color: #fff; font-size: 12px; padding: 4px 10px; border-radius: 20px; font-weight: 700; font-family: sans-serif; white-space: nowrap; }
.format-abbr { font-size: 11px; color: var(--burgundy); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-family: sans-serif; margin-bottom: 12px; }

/* ── PUBLICATIONS ── */
.pub-year { font-size: 22px; font-weight: 700; color: var(--burgundy); }
.pub-badge { color: #fff; font-size: 11px; padding: 4px 10px; border-radius: 20px; font-weight: 700; font-family: sans-serif; }
.pub-title { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 8px; }
.pub-journal { font-size: 13px; color: #888; font-family: sans-serif; font-style: italic; margin-bottom: 4px; }
.pub-authors { font-size: 13px; color: #666; font-family: sans-serif; margin-bottom: 14px; }
.pub-note { font-size: 13px; color: var(--muted); line-height: 1.7; font-family: 'Helvetica Neue', sans-serif; }

/* ── DIGITAL STATS ── */
.dig-stat { text-align: center; padding: 20px 12px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--light-border); }
.dig-val { font-size: 26px; font-weight: 700; color: var(--navy); }
.dig-lbl { font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; font-family: sans-serif; }

/* ── PORTAL ── */
.portal-login-wrap { max-width: 440px; margin: 0 auto; }
.login-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--light-border); padding: 36px 32px; }
.form-label { display: block; font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 8px; font-family: sans-serif; text-transform: uppercase; letter-spacing: 0.06em; }
.form-input { width: 100%; padding: 12px 14px; border-radius: 6px; border: 1px solid rgba(26,58,107,0.2); font-family: inherit; font-size: 15px; margin-bottom: 20px; outline: none; transition: border 0.2s; }
.form-input:focus { border-color: var(--navy); }
.form-select { width: 100%; padding: 11px 14px; border-radius: 6px; border: 1px solid rgba(26,58,107,0.2); font-family: inherit; font-size: 14px; background: #fff; margin-bottom: 20px; }
textarea.form-input { resize: vertical; }
.disclaimer { padding: 12px 16px; background: #fff8e8; border: 1px solid #e8c840; border-radius: 6px; font-size: 13px; color: #664400; font-family: sans-serif; margin-bottom: 24px; }
.portal-kpi { background: var(--white); border-radius: var(--radius); padding: 20px 16px; text-align: center; border: 1px solid var(--light-border); border-top-width: 4px; }
.portal-kpi-val { font-size: 28px; font-weight: 700; line-height: 1; }
.portal-kpi-lbl { font-size: 12px; color: #555; font-family: sans-serif; margin-top: 6px; font-weight: 600; }
.portal-kpi-note { font-size: 10px; color: #aaa; font-family: sans-serif; margin-top: 4px; font-style: italic; }
.attendance-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(26,58,107,0.06); }
.att-event { font-size: 14px; font-weight: 600; color: var(--navy); }
.att-date { font-size: 12px; color: #888; font-family: sans-serif; }
.att-pts { font-size: 14px; font-weight: 700; color: var(--green); }
.pathway-bar-wrap { margin-bottom: 14px; }
.pathway-name { font-size: 13px; font-weight: 600; color: #333; font-family: sans-serif; }
.pathway-pct-lbl { font-size: 13px; font-weight: 700; font-family: sans-serif; }
.pathway-track { height: 6px; background: #f0eff8; border-radius: 3px; overflow: hidden; margin-top: 6px; }
.pathway-fill { height: 100%; border-radius: 3px; }
.badge-pill { padding: 6px 12px; border-radius: 20px; font-family: sans-serif; font-weight: 600; font-size: 12px; display: inline-block; margin: 4px 4px 4px 0; }
.cert-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; background: var(--bg); border-radius: 6px; margin-bottom: 8px; }
.cert-name { font-size: 13px; color: #333; font-family: sans-serif; }
.cert-btn { background: none; border: 1px solid rgba(26,58,107,0.2); padding: 4px 10px; border-radius: 4px; cursor: pointer; font-size: 11px; color: var(--navy); font-family: sans-serif; font-weight: 600; }

/* ── CONTACT ── */
.contact-tile { display: flex; gap: 16px; margin-bottom: 18px; padding: 16px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--light-border); }
.contact-icon { font-size: 26px; flex-shrink: 0; }
.contact-title { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.contact-desc { font-size: 13px; color: #666; font-family: sans-serif; line-height: 1.6; }
.contact-info { margin-top: 24px; padding: 20px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--light-border); font-size: 13px; color: #666; font-family: sans-serif; line-height: 2; }
.contact-info strong { color: var(--navy); }

/* ── FOOTER ── */
#footer { background: var(--navy-dark); color: #fff; margin-top: 80px; padding: 48px 20px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 36px; margin-bottom: 40px; }
.footer-brand-name { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.footer-brand-sub { font-size: 12px; color: rgba(255,255,255,0.5); font-family: sans-serif; margin-bottom: 4px; }
.footer-col-title { font-weight: 700; font-size: 13px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); }
.footer-link { font-size: 13px; color: rgba(255,255,255,0.7); font-family: sans-serif; margin-bottom: 8px; cursor: pointer; display: block; background: none; border: none; text-align: left; padding: 0; transition: color 0.2s; }
.footer-link:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); font-family: sans-serif; }

/* ── UTILITY ── */
.flex-row { display: flex; align-items: center; gap: 16px; }
.flex-row-between { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.mt-8 { margin-top: 8px; } .mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; } .mt-24 { margin-top: 24px; } .mt-28 { margin-top: 28px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-56 { margin-top: 56px; }
.mb-8 { margin-bottom: 8px; } .mb-12 { margin-bottom: 12px; } .mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; } .mb-24 { margin-bottom: 24px; } .mb-28 { margin-bottom: 28px; }
.mb-36 { margin-bottom: 36px; }
.text-navy { color: var(--navy); } .text-burgundy { color: var(--burgundy); } .text-muted { color: var(--muted); }
.text-sm { font-size: 13px; font-family: sans-serif; }
.text-xs { font-size: 12px; font-family: sans-serif; }
.font-sans { font-family: 'Helvetica Neue', sans-serif; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.line-height-18 { line-height: 1.8; }
.small-divider { height: 1px; background: rgba(26,58,107,0.08); margin: 20px 0; }

/* ── AWARENESS ── */
.awareness-hero { background: linear-gradient(135deg, #c8102e, #7b2d42); border-radius: var(--radius-lg); padding: 28px; color: #fff; margin-bottom: 28px; }
.awareness-stat { text-align: center; padding: 16px 10px; background: var(--white); border-radius: var(--radius); border: 1px solid rgba(200,16,46,0.1); }
.awareness-val { font-size: 22px; font-weight: 700; color: var(--burgundy); }
.awareness-lbl { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; font-family: sans-serif; }

/* ── SENIOR FACULTY ── */
.senior-card { padding: 20px; }
.senior-avatar { width: 48px; height: 48px; border-radius: 50%; background: #e8f0f8; display: flex; align-items: center; justify-content: center; color: var(--navy); font-weight: 700; font-size: 14px; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-portal-btn { display: none; }
  .hamburger { display: block; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-stats { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 50px 20px; }
  .hero h1 { font-size: 28px; }
  .dark-banner { padding: 24px 20px; }
  .page-wrap { padding: 40px 20px; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
