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

:root {
  --teal:     #2A8C84;
  --teal-dk:  #1F6B65;
  --teal-lt:  #D6EEEC;
  --salmon:   #E8907A;
  --black:    #1A1A1A;
  --mid:      #4A4A4A;
  --light:    #F5F5F5;
  --white:    #FFFFFF;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --radius: 6px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

/* ── Type ── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--black);
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--black);
}
h3 { font-size: 1.05rem; font-weight: 700; color: var(--black); }
h4 { font-size: 0.95rem; font-weight: 700; color: var(--black); }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.overline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dk);
  margin-bottom: 0.5rem;
  display: block;
}
.section-intro {
  font-size: 1rem;
  color: var(--mid);
  max-width: 560px;
  margin-top: 0.75rem;
  line-height: 1.65;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 5%;
  background: var(--white);
  border-bottom: 2px solid var(--teal-lt);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
}
.brand img { height: 36px; width: 36px; object-fit: contain; border-radius: 4px; }

nav { display: flex; align-items: center; gap: 1.6rem; }
nav a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover  { color: var(--teal); }
nav a.active { color: var(--teal); }

.nav-button {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  transition: background 0.2s !important;
}
.nav-button:hover { background: var(--teal-dk) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--black);
  cursor: pointer;
}

/* ── Buttons ── */
.button {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.button.primary   { background: var(--teal);   color: var(--white); }
.button.primary:hover   { background: var(--teal-dk); }
.button.secondary { background: transparent; color: var(--black); border: 2px solid var(--black); }
.button.secondary:hover { background: var(--black); color: var(--white); }
.button.outline   { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.button.outline:hover   { background: var(--teal); color: var(--white); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3C!-- Main medallion: outer rounded square --%3E%3Crect x='8' y='8' width='24' height='24' rx='3.5' fill='none' stroke='%239AAED4' stroke-width='1.3' opacity='0.55'/%3E%3C!-- Inner square --%3E%3Crect x='14' y='14' width='12' height='12' rx='2' fill='none' stroke='%239AAED4' stroke-width='1' opacity='0.45'/%3E%3C!-- Cross arms connecting inner to outer --%3E%3Cline x1='20' y1='9.5' x2='20' y2='14' stroke='%239AAED4' stroke-width='1' opacity='0.45'/%3E%3Cline x1='20' y1='26' x2='20' y2='30.5' stroke='%239AAED4' stroke-width='1' opacity='0.45'/%3E%3Cline x1='9.5' y1='20' x2='14' y2='20' stroke='%239AAED4' stroke-width='1' opacity='0.45'/%3E%3Cline x1='26' y1='20' x2='30.5' y2='20' stroke='%239AAED4' stroke-width='1' opacity='0.45'/%3E%3C!-- Center dot --%3E%3Crect x='18' y='18' width='4' height='4' rx='1' fill='%239AAED4' opacity='0.38'/%3E%3C!-- Corner small accent squares (form inter-tile pattern when tiled) --%3E%3Crect x='0.5' y='0.5' width='5' height='5' rx='1.2' fill='none' stroke='%23AABBD8' stroke-width='0.9' opacity='0.38'/%3E%3Crect x='34.5' y='0.5' width='5' height='5' rx='1.2' fill='none' stroke='%23AABBD8' stroke-width='0.9' opacity='0.38'/%3E%3Crect x='0.5' y='34.5' width='5' height='5' rx='1.2' fill='none' stroke='%23AABBD8' stroke-width='0.9' opacity='0.38'/%3E%3Crect x='34.5' y='34.5' width='5' height='5' rx='1.2' fill='none' stroke='%23AABBD8' stroke-width='0.9' opacity='0.38'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 40px 40px;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 6rem 5% 5rem;
}

/* Corner diamond SVGs */
.corner-svg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.corner-svg.top-right    { top: -80px;    right: -80px;  width: 480px; height: 480px; }
.corner-svg.top-left     { top: -60px;    left: -60px;   width: 340px; height: 340px; }
.corner-svg.top-left-sm  { top: -30px;    left: -30px;   width: 180px; height: 180px; }
.corner-svg.bot-left     { bottom: -80px; left: -80px;   width: 420px; height: 420px; }
.corner-svg.bot-right    { bottom: -60px; right: -60px;  width: 280px; height: 280px; }

/* Radial vignette — white at center, fades to transparent at edges */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 75% 80% at 38% 50%,
    rgba(255,255,255,0.96) 30%,
    rgba(255,255,255,0.75) 55%,
    rgba(255,255,255,0.0)  100%);
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.hero-rule-v {
  display: inline-block;
  width: 3px;
  height: 36px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero .eyebrow { color: var(--teal); margin-bottom: 0; }

.hero h1 {
  color: var(--black);
  margin: 0.2rem 0 0;
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.97;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-divider {
  width: 64px;
  height: 4px;
  background: var(--salmon);
  margin: 1.4rem 0 1.4rem;
  border: none;
  border-radius: 2px;
}
.hero-text {
  font-size: 1.02rem;
  color: var(--mid);
  max-width: 480px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
}

/* Ghost button — for hero only */
.button.ghost {
  background: none;
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.75rem 0;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 2px solid var(--teal);
  border-radius: 0;
  transition: color 0.2s, border-color 0.2s;
}
.button.ghost:hover { color: var(--teal); }

/* Hero attribution badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border: 1.5px solid rgba(42,140,132,0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--mid);
  background: rgba(255,255,255,0.7);
}
.hero-badge img {
  height: 20px;
  width: 20px;
  object-fit: contain;
  border-radius: 3px;
  opacity: 0.75;
}
.hero-badge strong { color: var(--teal); font-weight: 600; }

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  position: relative;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Crect x='8' y='8' width='24' height='24' rx='3.5' fill='none' stroke='%239AAED4' stroke-width='1.3' opacity='0.55'/%3E%3Crect x='14' y='14' width='12' height='12' rx='2' fill='none' stroke='%239AAED4' stroke-width='1' opacity='0.45'/%3E%3Cline x1='20' y1='9.5' x2='20' y2='14' stroke='%239AAED4' stroke-width='1' opacity='0.45'/%3E%3Cline x1='20' y1='26' x2='20' y2='30.5' stroke='%239AAED4' stroke-width='1' opacity='0.45'/%3E%3Cline x1='9.5' y1='20' x2='14' y2='20' stroke='%239AAED4' stroke-width='1' opacity='0.45'/%3E%3Cline x1='26' y1='20' x2='30.5' y2='20' stroke='%239AAED4' stroke-width='1' opacity='0.45'/%3E%3Crect x='18' y='18' width='4' height='4' rx='1' fill='%239AAED4' opacity='0.38'/%3E%3Crect x='0.5' y='0.5' width='5' height='5' rx='1.2' fill='none' stroke='%23AABBD8' stroke-width='0.9' opacity='0.38'/%3E%3Crect x='34.5' y='0.5' width='5' height='5' rx='1.2' fill='none' stroke='%23AABBD8' stroke-width='0.9' opacity='0.38'/%3E%3Crect x='0.5' y='34.5' width='5' height='5' rx='1.2' fill='none' stroke='%23AABBD8' stroke-width='0.9' opacity='0.38'/%3E%3Crect x='34.5' y='34.5' width='5' height='5' rx='1.2' fill='none' stroke='%23AABBD8' stroke-width='0.9' opacity='0.38'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 40px 40px;
  overflow: hidden;
  padding: 5rem 5% 4rem;
  border-bottom: 2px solid var(--teal-lt);
}

/* Vignette for page heroes — tighter than full hero */
.page-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 80% 120% at 35% 50%,
    rgba(255,255,255,0.95) 35%,
    rgba(255,255,255,0.65) 60%,
    rgba(255,255,255,0.0)  100%);
  pointer-events: none;
}

.page-hero h1 { color: var(--black); margin-top: 0.3rem; }
.page-hero-sub {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--mid);
  max-width: 540px;
  line-height: 1.65;
}
.page-hero-divider {
  width: 60px;
  height: 4px;
  background: var(--salmon);
  margin: 0.85rem 0;
  border: none;
  border-radius: 2px;
}
.page-hero .corner-svg.top-right  { width: 320px; height: 320px; top: -60px;  right: -60px; }
.page-hero .corner-svg.top-left-sm { width: 160px; height: 160px; top: -25px;  left: -25px; }
.page-hero .corner-svg.bot-right  { width: 180px; height: 180px; bottom: -40px; right: -30px; }
.page-hero-content { position: relative; z-index: 2; }

/* ══════════════════════════════════════
   SHARED SECTION
══════════════════════════════════════ */
.section { padding: 5rem 5%; }

.section-header { margin-bottom: 2.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-intro { margin: 0.75rem auto 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ══════════════════════════════════════
   WHO WE ARE
══════════════════════════════════════ */
.who-section { background: var(--white); }

.accordion-group { display: flex; flex-direction: column; gap: 1rem; }

.accordion {
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.accordion[open] { box-shadow: var(--shadow); border-color: var(--teal-lt); }

.accordion-trigger {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.accordion-trigger::-webkit-details-marker { display: none; }
.accordion-trigger:hover { background: rgba(42,140,132,0.03); }

.accordion-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--black);
  flex: 1;
}
.accordion-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dk);
  background: var(--teal-lt);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}
.accordion-icon {
  width: 20px; height: 20px;
  position: relative; flex-shrink: 0;
}
.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.25s;
}
.accordion-icon::before { width: 2px; height: 14px; top: 3px; left: 9px; }
.accordion-icon::after  { width: 14px; height: 2px; top: 9px; left: 3px; }
.accordion[open] .accordion-icon::before { transform: rotate(90deg); opacity: 0; }

.accordion-body { border-top: 1.5px solid rgba(0,0,0,0.06); }
.accordion-inner { padding: 1.75rem 1.5rem; }

.accordion-text h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.accordion-text p  { font-size: 0.95rem; color: var(--mid); line-height: 1.7; margin-bottom: 0.75rem; }
.accordion-text p:last-child { margin-bottom: 0; }

.stat-pill {
  display: flex; flex-direction: column;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}
.stat-pill:last-child { margin-bottom: 0; }
.stat-pill.midnight { background: var(--teal);   color: var(--white); }
.stat-pill.steel    { background: var(--teal-lt); color: var(--teal-dk); }
.stat-pill.orange   { background: var(--salmon);  color: var(--white); }
.stat-pill strong   { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; }
.stat-pill span     { font-size: 0.82rem; opacity: 0.8; margin-top: 0.1rem; }

.accordion-links { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.accordion-links .overline { margin-bottom: 0; }

/* ══════════════════════════════════════
   VOX JOURNAL
══════════════════════════════════════ */
.journal-section { background: var(--light); }

.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: start;
}

.journal-issue {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.journal-issue.featured { border-top: 4px solid var(--teal); }

.issue-meta { display: flex; align-items: center; justify-content: space-between; }
.issue-number { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-dk); }
.issue-date   { font-size: 0.72rem; font-weight: 600; color: var(--mid); }
.issue-title  { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; text-transform: uppercase; color: var(--black); }
.issue-description { font-size: 0.92rem; color: var(--mid); line-height: 1.6; }

.issue-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--teal-lt); color: var(--teal-dk);
  padding: 0.25rem 0.65rem; border-radius: 20px;
}

.journal-publications { display: flex; flex-direction: column; gap: 1rem; }
.journal-publications > .overline { color: var(--teal-dk); }

.pub-card {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.3rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pub-card:hover { box-shadow: var(--shadow); border-color: var(--teal-lt); }
.pub-card.light { background: var(--white); }

.pub-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.2rem; }
.pub-type { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }
.pub-year { font-size: 0.72rem; color: var(--mid); }
.pub-card h4 { color: var(--black); font-size: 0.92rem; }
.pub-card p  { font-size: 0.8rem; color: var(--mid); }
.pub-link { font-size: 0.8rem; font-weight: 600; color: var(--teal); text-decoration: none; margin-top: 0.25rem; }
.pub-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   TEAM
══════════════════════════════════════ */
.team-section { background: var(--light); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.team-member {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-member.featured {
  border-top: 4px solid var(--teal);
}
.team-member:not(.featured) {
  border-top: 4px solid var(--salmon);
}

.team-headshot-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--teal-lt);
}
.team-headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-headshot.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dk);
  border: 2px dashed var(--teal);
  opacity: 0.6;
  height: 100%;
}

.team-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.team-role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.team-member.featured .team-role { color: var(--teal); }
.team-member:not(.featured) .team-role { color: var(--salmon); }

.team-info h3 {
  font-size: 1.15rem;
  color: var(--black);
  margin: 0;
}
.team-bio {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.65;
  margin-top: 0.25rem;
}
.team-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.team-email {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  border: 1.5px solid var(--teal-lt);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
  transition: background 0.15s, color 0.15s;
}
.team-email:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-member.featured { grid-column: 1 / -1; flex-direction: row; }
  .team-member.featured .team-headshot-wrap { width: 220px; flex-shrink: 0; aspect-ratio: auto; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-member.featured { flex-direction: column; }
  .team-member.featured .team-headshot-wrap { width: 100%; aspect-ratio: 1 / 1; }
}

/* ══════════════════════════════════════
   COHORTS
══════════════════════════════════════ */
.cohorts-section { background: var(--white); }

.cohort-tabs {
  display: flex; gap: 0.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid rgba(0,0,0,0.08);
  padding-bottom: 0;
}
.cohort-tab {
  background: none; border: none;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--black); opacity: 0.4;
  padding: 0.6rem 1.25rem 0.75rem;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 0.5rem;
}
.cohort-tab:hover { opacity: 0.75; }
.cohort-tab.active { opacity: 1; border-bottom-color: var(--teal); }

.tab-badge {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--salmon); color: var(--white);
  padding: 0.15rem 0.45rem; border-radius: 20px;
}

.cohort-panel { display: none; }
.cohort-panel.active { display: block; }

.cohort-year {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal-dk); margin-bottom: 1.75rem;
}

.teams-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; align-items: start;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex; flex-direction: column; gap: 0;
}

.team-header {
  background: var(--teal);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.team-header .overline { color: rgba(214,238,236,0.7); }
.project-title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 800; text-transform: uppercase;
  color: var(--white); line-height: 1.15;
}
.team-pub .overline { color: rgba(214,238,236,0.7); }
.pub-chip {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.82rem; font-weight: 600;
  padding: 0.3rem 0.8rem; border-radius: 20px;
  text-decoration: none; transition: background 0.2s;
}
.pub-chip:hover { background: rgba(255,255,255,0.22); }

.pi-block  { padding: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.pi-card   { display: flex; gap: 1rem; align-items: flex-start; margin-top: 0.75rem; }

.headshot-placeholder {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--teal-lt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--teal-dk);
  border: 2px dashed var(--teal);
}
.headshot-placeholder.small { width: 52px; height: 52px; font-size: 0.62rem; }
.headshot-placeholder img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.pi-info { display: flex; flex-direction: column; gap: 0.2rem; }
.pi-info strong  { font-size: 0.95rem; color: var(--black); }
.pi-info .institution { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-dk); }
.pi-bio { font-size: 0.85rem; color: var(--mid); line-height: 1.6; margin-top: 0.4rem; }

.leads-block  { padding: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.leads-row    { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 0.75rem; }
.lead-card    { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; text-align: center; }
.lead-card strong { font-size: 0.85rem; color: var(--black); }
.lead-card span   { font-size: 0.75rem; color: var(--teal-dk); }

.members-block { padding: 1.5rem; }
.members-list  { list-style: none; margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.members-list li {
  font-size: 0.88rem; color: var(--black);
  padding: 0.4rem 0.75rem;
  background: var(--light); border-radius: 4px;
  border-left: 3px solid var(--teal-lt);
}

.past-empty {
  text-align: center; padding: 5rem 2rem;
  background: var(--light); border-radius: var(--radius);
  border: 2px dashed rgba(0,0,0,0.1);
}
.past-icon   { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.35; }
.past-empty h3 { color: var(--black); margin-bottom: 0.5rem; }
.past-empty p  { font-size: 0.92rem; color: var(--mid); max-width: 400px; margin: 0 auto; line-height: 1.65; }

/* ══════════════════════════════════════
   MISSION & VISION
══════════════════════════════════════ */
.mission-section {
  background: var(--teal);
  padding: 5rem 5%;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.mission-divider {
  width: 1.5px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
  margin-top: 0.5rem;
}

.mission-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.mission-number {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  line-height: 1;
}
.mission-title {
  color: var(--salmon);
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0;
}
.mission-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .mission-divider {
    width: 60px;
    height: 1.5px;
    align-self: auto;
  }
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
  background: var(--light); padding: 5rem 5%;
}
.contact-section h2 { margin-top: 0.4rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label {
  display: flex; flex-direction: column; gap: 0.35rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--black);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.65rem 0.9rem;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem; color: var(--black);
  background: var(--white);
  font-weight: 400; letter-spacing: normal; text-transform: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--teal); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  background: var(--teal); color: var(--white); border: none;
  padding: 0.8rem 1.8rem; border-radius: var(--radius);
  font-family: var(--font-display); font-size: 1rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; align-self: flex-start;
}
.contact-form button:hover { background: var(--teal-dk); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--black); color: rgba(255,255,255,0.45);
  text-align: center; padding: 2rem 5%; font-size: 0.85rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
footer img { height: 32px; opacity: 0.5; border-radius: 3px; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .teams-grid  { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .split           { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  nav a:not(.nav-button) { display: none; }
  .nav-toggle { display: block; }
  .hero { min-height: auto; padding: 4rem 5% 3rem; }
  .hero-logo { height: 44px; }
  .corner-svg.top-right { width: 220px; height: 220px; }
  .corner-svg.bot-left  { width: 200px; height: 200px; }
  .corner-svg.bot-right { width: 160px; height: 160px; }
}

/* ── APPLY SECTION ── */
.apply-section {
  background: var(--black);
  padding: 5rem 5%;
}
.apply-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.apply-text .eyebrow { color: var(--salmon); }
.apply-text h2 { color: var(--white); margin: 0.4rem 0 1rem; }
.apply-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 1.75rem;
}
.apply-desc strong { color: var(--white); }
.deadline-card {
  background: var(--teal);
  padding: 2rem 2.5rem;
  text-align: center;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  min-width: 180px;
}
.deadline-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}
.deadline-date {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.deadline-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.deadline-time {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--salmon);
  letter-spacing: 0.06em;
}
@media (max-width: 700px) {
  .apply-inner { grid-template-columns: 1fr; }
  .apply-deadline { display: flex; justify-content: center; }
}


/* ── JOURNAL FEATURE SECTION ── */
.journal-feature-section {
  background: #f8f8f6;
  padding: 5rem 2rem;
}
.journal-feature-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: center;
}
.journal-cover-wrap {
  position: relative;
}
.journal-cover-img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.10);
  display: block;
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.journal-cover-img:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}
.journal-feature-text .eyebrow { color: var(--teal); }
.journal-feature-text h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0.4rem 0 1rem;
  color: var(--dark);
}
.journal-feature-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
  max-width: 55ch;
  margin-bottom: 1.5rem;
}
.journal-pub-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.journal-pub-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
}
.journal-pub-list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--salmon);
  border-radius: 50%;
  margin-top: 0.45em;
}
.journal-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .journal-feature-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .journal-cover-wrap { max-width: 260px; margin: 0 auto; }
}
