/* ===== ANUSHKA SAXENA — REDESIGNED ===== */
/* Vibrant: Deep Teal + Warm Gold + Rich Plum accents */

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

:root {
  --teal: #1b4d4f;
  --teal-light: #26706e;
  --teal-dark: #0f3538;
  --gold: #c9953c;
  --gold-light: #e8c36a;
  --gold-pale: #fdf5e6;
  --plum: #6b3a5d;
  --plum-light: #8e4f7d;
  --cream: #faf6f0;
  --warm-white: #fffdf8;
  --blush: #f8ece4;
  --text: #2a2a2a;
  --text-light: #555;
  --text-muted: #888;
  --white: #ffffff;
  --border: #e5ddd4;
  --bg: #faf6f0;
  --bg-alt: #f0ebe3;
  --card-shadow: 0 4px 20px rgba(27,77,79,0.08);
  --card-hover: 0 12px 40px rgba(27,77,79,0.15);
  --transition: 0.3s ease;
  --max-width: 1140px;
  --nav-height: 72px;
  --font-heading: 'Cormorant Garamond', 'Alice', Georgia, serif;
  --font-accent: 'Alice', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--teal-dark);
  z-index: 1000;
  border-bottom: 3px solid var(--gold);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto; padding: 0 24px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700;
  color: #fff; letter-spacing: 0.02em;
}
.nav-brand span { color: var(--gold-light); }

.nav-links { display: flex; gap: 4px; list-style: none; }

.nav-links a {
  padding: 8px 18px; border-radius: 8px;
  font-family: var(--font-accent);
  font-size: 0.95rem; font-weight: 400;
  color: #c0cec8; transition: all var(--transition);
}
.nav-links a:hover { color: #fff; background: rgba(201,149,60,0.15); }
.nav-links a.active { color: var(--gold-light); background: rgba(201,149,60,0.2); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
}
.hamburger span {
  width: 24px; height: 2.5px; background: var(--gold-light);
  transition: all var(--transition); border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 40%, var(--plum) 100%);
  color: #fff;
  position: relative; overflow: hidden;
}

/* decorative circles */
.hero::before {
  content: ''; position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,60,0.08), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,58,93,0.12), transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,149,60,0.2); color: var(--gold-light);
  padding: 6px 18px; border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.88rem; margin-bottom: 20px;
  border: 1px solid rgba(201,149,60,0.3);
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px;
  background: var(--gold-light); border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.4rem; font-weight: 700; line-height: 1.1;
  color: #fff; margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--gold-light); }

.hero-subtitle {
  font-size: 1.08rem; color: #b8c8c2; margin-bottom: 28px; line-height: 1.75;
  font-family: var(--font-accent);
}

.hero-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 32px; }
.hero-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: #8aa09a;
}
.hero-meta-item svg { width: 16px; height: 16px; color: var(--gold-light); flex-shrink: 0; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.95rem; font-weight: 400;
  transition: all var(--transition); cursor: pointer; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #d4a84a);
  color: var(--teal-dark);
  font-weight: 600;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,149,60,0.4);
  color: var(--teal-dark);
}
.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid rgba(201,149,60,0.4);
}
.btn-outline:hover {
  border-color: var(--gold-light);
  background: rgba(201,149,60,0.1);
  color: var(--gold-light);
}

.hero-image-wrap { position: relative; display: flex; justify-content: center; }

.hero-image-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border-radius: 24px; padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  max-width: 360px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.hero-avatar {
  width: 100%; aspect-ratio: 1; border-radius: 18px;
  overflow: hidden; margin-bottom: 18px;
  border: 3px solid rgba(201,149,60,0.4);
}
.hero-avatar img {
  width: 100%; height: 100%; object-fit: cover;
}

.hero-card-info { text-align: center; }
.hero-card-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem; color: #fff; margin-bottom: 4px;
}
.hero-card-info p { font-size: 0.85rem; color: #8aa09a; }

.hero-card-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700; color: var(--gold-light);
}
.stat-label {
  font-size: 0.7rem; color: #8aa09a;
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-blush { background: var(--blush); }

.section-header { margin-bottom: 48px; }
.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.82rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem; font-weight: 700; color: var(--teal-dark);
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-light); margin-top: 8px; max-width: 600px;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 48px;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--plum) 100%);
  color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,60,0.06), transparent 70%);
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem; font-weight: 700; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.page-header p {
  color: #b8c8c2; font-size: 1.05rem;
  font-family: var(--font-accent);
  position: relative; z-index: 1;
}
.page-header .section-label { color: var(--gold-light); position: relative; z-index: 1; }

/* ===== ABOUT TEXT ===== */
.about-text {
  max-width: 820px;
  font-family: var(--font-accent);
  font-size: 1.1rem; color: var(--text-light);
  line-height: 1.85;
}
.about-text p { margin-bottom: 18px; }
.about-text p:last-child { margin-bottom: 0; }
.about-text em { color: var(--teal); font-style: italic; }

/* ===== RESEARCH CARDS ===== */
.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.research-card {
  background: var(--white); border-radius: 16px;
  padding: 30px; box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.research-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--plum));
  opacity: 0; transition: opacity var(--transition);
}
.research-card:hover { transform: translateY(-6px); box-shadow: var(--card-hover); }
.research-card:hover::before { opacity: 1; }

.research-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 1.5rem;
  color: #fff;
}

.research-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 10px;
}
.research-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* ===== TIMELINE ===== */
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 700px; }

.timeline-item { display: flex; gap: 24px; }
.timeline-marker { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--gold-light); z-index: 1;
  box-shadow: 0 0 0 4px rgba(201,149,60,0.15);
}
.timeline-line { width: 2px; flex: 1; background: linear-gradient(to bottom, var(--gold), var(--border)); }

.timeline-content { padding-bottom: 32px; }
.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 2px;
}
.timeline-content .org {
  font-family: var(--font-accent);
  font-size: 0.95rem; color: var(--plum); font-weight: 400;
}
.timeline-content .period { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.timeline-content p { font-size: 0.88rem; color: var(--text-light); margin-top: 8px; }

/* ===== PUBLICATION TABS ===== */
.pub-tabs {
  display: flex; gap: 0;
  background: var(--bg-alt);
  padding: 5px; border-radius: 50px;
  width: fit-content; margin-bottom: 32px;
  border: 1px solid var(--border);
}

.pub-tab {
  padding: 11px 28px; border-radius: 50px;
  border: none; background: transparent;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--text-light); cursor: pointer;
  transition: all var(--transition);
}
.pub-tab.active {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  box-shadow: 0 4px 14px rgba(27,77,79,0.3);
}
.pub-tab:hover:not(.active) { color: var(--teal); }

.pub-tab-content { display: none; }
.pub-tab-content.active { display: block; }

/* ===== PUB SEARCH ===== */
.pub-search {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px; max-width: 500px;
  background: var(--white); border: 2px solid var(--border);
  border-radius: 50px; padding: 0 18px;
  transition: border-color var(--transition);
}
.pub-search:focus-within { border-color: var(--teal); }
.pub-search svg { color: var(--text-muted); flex-shrink: 0; }
.pub-search-input {
  flex: 1; padding: 12px 0; border: none; outline: none;
  font-size: 0.9rem; font-family: inherit;
  background: transparent; color: var(--text);
}

.search-input {
  width: 100%; max-width: 500px;
  padding: 12px 22px; border: 2px solid var(--border);
  border-radius: 50px; font-size: 0.9rem; font-family: inherit;
  outline: none; background: var(--white);
  transition: border-color var(--transition);
  margin-bottom: 24px;
}
.search-input:focus { border-color: var(--teal); }

/* ===== PUBLICATION LIST ===== */
.pub-list { display: flex; flex-direction: column; gap: 12px; }

.pub-card {
  background: var(--white); border-radius: 14px;
  padding: 20px 24px; box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex; align-items: flex-start; gap: 16px;
}
.pub-card:hover {
  transform: translateX(4px);
  box-shadow: var(--card-shadow);
  border-left: 3px solid var(--gold);
}

.pub-number {
  flex-shrink: 0; width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: #fff;
}

.pub-info { flex: 1; }
.pub-info h3 {
  font-family: var(--font-accent);
  font-size: 1rem; font-weight: 400; color: var(--text);
  line-height: 1.5; margin-bottom: 4px;
}
.pub-info h3 a { color: inherit; }
.pub-info h3 a:hover { color: var(--teal); }
.pub-source {
  font-size: 0.78rem; color: var(--text-muted); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.04em;
}

.pub-arrow {
  flex-shrink: 0; color: var(--gold);
  opacity: 0; transform: translateX(-4px);
  transition: all var(--transition);
}
.pub-card:hover .pub-arrow { opacity: 1; transform: translateX(0); }

.pub-archive-note {
  margin-top: 32px; padding: 20px 24px;
  background: var(--gold-pale);
  border-radius: 14px; text-align: center;
  border: 1px dashed var(--gold);
}
.pub-archive-note p {
  font-family: var(--font-accent);
  font-size: 0.95rem; color: var(--text-light);
}

/* ===== MEDIA GRID ===== */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.media-card {
  background: var(--white); border-radius: 16px;
  overflow: hidden; box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: all var(--transition); display: block; color: inherit;
}
.media-card:hover { transform: translateY(-4px); box-shadow: var(--card-hover); color: inherit; }

.media-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--teal-dark), var(--plum));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.play-icon {
  width: 60px; height: 60px;
  background: rgba(201,149,60,0.3); backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem;
  transition: all var(--transition); z-index: 1;
  border: 2px solid rgba(201,149,60,0.5);
}
.media-card:hover .play-icon {
  background: rgba(201,149,60,0.5); transform: scale(1.1);
}

.type-badge {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 14px; border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.72rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.type-badge.video { background: var(--gold); color: var(--teal-dark); }
.type-badge.podcast { background: var(--plum); color: #fff; }
.type-badge.article { background: var(--teal); color: #fff; }

.media-body { padding: 20px; }
.media-body h3 {
  font-family: var(--font-accent);
  font-size: 0.95rem; color: var(--text);
  line-height: 1.5; margin-bottom: 6px;
}
.media-body h3 a { color: inherit; }
.media-body h3 a:hover { color: var(--teal); }
.media-body .source { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* ===== QUOTES ===== */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.quote-card {
  background: var(--white); border-radius: 14px;
  padding: 22px; box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  border-left: 4px solid var(--plum);
  transition: all var(--transition);
  display: block; color: inherit;
}
.quote-card:hover { transform: translateY(-2px); box-shadow: var(--card-shadow); color: inherit; }
.quote-card h3 {
  font-family: var(--font-accent);
  font-size: 0.92rem; color: var(--text);
  line-height: 1.5; margin-bottom: 6px;
}
.quote-card h3 a { color: inherit; }
.quote-card h3 a:hover { color: var(--teal); }
.quote-card .source {
  font-size: 0.75rem; color: var(--plum); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.04em;
}

/* ===== SCHOLAR STATS ===== */
.scholar-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 48px;
}

.stat-card {
  background: var(--white); border-radius: 18px;
  padding: 32px 24px; text-align: center;
  box-shadow: var(--card-shadow); border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 700;
  color: var(--teal); line-height: 1; margin-bottom: 8px;
}
.stat-card .stat-label {
  font-family: var(--font-accent);
  font-size: 0.88rem; color: var(--text-muted);
}

.scholar-info-card {
  background: var(--gold-pale);
  border: 1px dashed var(--gold);
  border-radius: 14px; padding: 20px 24px;
  text-align: center; margin-top: 24px;
}
.scholar-info-card p { font-family: var(--font-accent); font-size: 0.95rem; color: var(--text-light); }

/* Scholar Table */
.scholar-table-wrap {
  background: var(--white); border-radius: 16px;
  overflow: hidden; box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}
.scholar-table {
  width: 100%; border-collapse: collapse; font-size: 0.9rem;
}
.scholar-table thead { background: var(--teal-dark); color: #fff; }
.scholar-table th {
  padding: 14px 16px; text-align: left;
  font-family: var(--font-accent);
  font-weight: 400; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.scholar-table td {
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  font-family: var(--font-accent);
}
.scholar-table tbody tr:hover { background: var(--gold-pale); }
.scholar-table .cite-count {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 1.1rem; color: var(--gold); text-align: center;
}

/* ===== CONTACT ===== */
.contact-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}

.contact-card {
  background: var(--white); border-radius: 18px;
  padding: 36px; box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}
.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700;
  color: var(--teal-dark); margin-bottom: 24px;
}

.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--bg-alt);
}
.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff;
}

.contact-detail .label {
  font-size: 0.78rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600;
}
.contact-detail .value { font-size: 0.95rem; color: var(--teal-dark); font-weight: 500; }

/* ===== LOAD MORE ===== */
.load-more-wrap { text-align: center; margin-top: 32px; }

.load-more {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px; border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff; border: none;
  cursor: pointer; transition: all var(--transition);
}
.load-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,77,79,0.3);
}

.hidden { display: none !important; }

.archive-note {
  text-align: center; margin-top: 2rem;
  font-family: var(--font-accent);
  font-size: 0.9rem; color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--teal-dark); color: #8aa09a;
  padding: 48px 0; text-align: center;
  border-top: 3px solid var(--gold);
}
.footer a { color: var(--gold-light); }
.footer a:hover { color: #fff; }
.footer-links-row {
  display: flex; justify-content: center; gap: 28px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.footer-links-row a {
  font-family: var(--font-accent);
  font-size: 0.9rem;
}
.footer p {
  font-family: var(--font-accent);
  font-size: 0.85rem;
}

/* ===== DECORATIVE ===== */
.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; margin: 16px 0 24px;
}
.gold-divider-center {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; margin: 16px auto 24px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; animation: fadeInUp 0.6s ease forwards; }
.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.2s; }
.fade-in:nth-child(4) { animation-delay: 0.3s; }
.fade-in:nth-child(5) { animation-delay: 0.4s; }
.fade-in:nth-child(6) { animation-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; }
  .hero-image-card { max-width: 280px; margin: 0 auto; }
  .hero h1 { font-size: 2.4rem; }
  .contact-section { grid-template-columns: 1fr; }
  .scholar-stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--teal-dark);
    flex-direction: column; padding: 16px 24px;
    border-top: 1px solid var(--teal);
    gap: 4px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .hero { padding-top: calc(var(--nav-height) + 40px); padding-bottom: 60px; }
  .hero h1 { font-size: 2rem; }
  .page-header h1 { font-size: 2rem; }
  .section { padding: 60px 0; }
  .media-grid { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .scholar-stats-grid { grid-template-columns: 1fr 1fr; }
  .research-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .research-grid { grid-template-columns: 1fr; }
  .scholar-stats-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; gap: 8px; }
  .hero-cta { flex-direction: column; }
  .btn { justify-content: center; }
  .pub-card { flex-direction: column; }
}
