/* =====================
   Reset & Base
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  font-size: 17px;
  color: #1b1b1b;
  background: #fff;
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* =====================
   Header / Nav
   ===================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#site-header.is-scrolled {
  border-color: #e8e0d8;
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 68px;
}
.header-brand {
  flex: 0 0 34%;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1b1b1b;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.brand-title {
  font-size: 0.72rem;
  color: #b46a30;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.main-nav { flex: 1; display: flex; justify-content: flex-end; }
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 8px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1b1b1b;
  letter-spacing: 0.03em;
  border-radius: 5px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-list > li > a:hover { color: #b46a30; background: #fdf5ee; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid #e8e0d8;
  border-radius: 8px;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  list-style: none;
  padding: 8px 0;
  z-index: 100;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #1b1b1b;
  transition: background 0.15s, color 0.15s;
}
.dropdown li a:hover { background: #fdf5ee; color: #b46a30; }

/* CV button in nav */
.nav-cv {
  background: #b46a30 !important;
  color: #fff !important;
  padding: 7px 16px !important;
  border-radius: 6px !important;
  margin-left: 8px;
}
.nav-cv:hover { background: #d8803c !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #1b1b1b;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================
   Hero
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2c1a0e 0%, #4a2c10 35%, #7a4520 60%, #b46a30 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.04) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}
.hero-text { flex: 1; color: #fff; }
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
}
.hero-name {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.btn-hero {
  display: inline-block;
  background: #fff;
  color: #b46a30;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-hero:hover { background: #f5ebe0; transform: translateY(-2px); }

/* Hero photo + blob */
.hero-photo-wrap {
  flex-shrink: 0;
  position: relative;
  width: 360px;
  height: 360px;
}
.hero-blob {
  position: absolute;
  inset: -20px;
  background: rgba(255,255,255,0.08);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  z-index: 0;
}
.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 55% 45% 50% 50% / 40% 40% 60% 60%;
  border: 4px solid rgba(255,255,255,0.25);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

/* =====================
   Sections
   ===================== */
.section { padding: 88px 32px; }
.section-alt { background: #faf8f5; }
.container { max-width: 1100px; margin: 0 auto; }

.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 16px;
}
.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 3px;
  background: #b46a30;
  border-radius: 2px;
}
.section-heading.light { color: #fff; }
.section-heading.light::after { background: rgba(255,255,255,0.5); }
.accent { color: #b46a30; }

/* =====================
   About
   ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
.about-photo {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  margin-bottom: 24px;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3/4;
}
.about-contact-card {
  background: #fdf5ee;
  border-radius: 10px;
  padding: 20px;
  font-size: 0.88rem;
  line-height: 1.6;
}
.about-contact-card p { margin-bottom: 12px; }
.about-contact-card a { color: #b46a30; }
.about-contact-card a:hover { text-decoration: underline; }
.btn-accent {
  display: inline-block;
  background: #b46a30;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 50px;
  margin-top: 4px;
  transition: background 0.2s;
}
.btn-accent:hover { background: #d8803c; }

.about-lead {
  font-size: 1.08rem;
  color: #1b1b1b;
  font-weight: 400;
  line-height: 1.8;
}

.edu-timeline { margin-top: 32px; }
.subsection-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b46a30;
  margin-bottom: 16px;
}
.edu-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #ede7df;
}
.edu-item:last-child { border-bottom: none; }
.edu-dot {
  flex-shrink: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #b46a30;
  margin-top: 6px;
}
.edu-item strong { display: block; font-size: 0.95rem; color: #1b1b1b; }
.edu-item span { font-size: 0.85rem; color: #5e5e5e; }

/* =====================
   Research
   ===================== */
.research-block { margin-bottom: 56px; }
.block-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1b1b1b;
  border-bottom: 2px solid #ede7df;
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.interests-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.interest-card {
  background: #fff;
  border: 1px solid #ede7df;
  border-radius: 10px;
  padding: 22px;
  border-top: 3px solid #b46a30;
}
.interest-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b46a30;
  margin-bottom: 10px;
}
.interest-card p { font-size: 0.93rem; color: #3e3e3e; margin: 0; line-height: 1.65; }

.paper-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #ede7df;
}
.paper-item:last-child { border-bottom: none; }
.paper-item.featured { background: #fdf5ee; border-radius: 8px; padding: 20px; border: 1px solid #e8d5c0; border-bottom: 1px solid #e8d5c0; margin-bottom: 4px; }
.paper-body { flex: 1; }
.paper-title {
  font-weight: 600;
  font-size: 0.97rem;
  color: #1b1b1b;
  margin-bottom: 5px;
  line-height: 1.5;
}
.paper-authors { font-size: 0.88rem; color: #5e5e5e; margin-bottom: 4px; }
.paper-venue { font-size: 0.88rem; color: #3e3e3e; margin-bottom: 4px; }
.paper-note { font-size: 0.85rem; color: #777; margin-bottom: 4px; }
.paper-doi {
  display: inline-block;
  font-size: 0.8rem;
  color: #b46a30;
  border: 1px solid #e8d5c0;
  padding: 2px 10px;
  border-radius: 20px;
  margin-top: 4px;
  transition: background 0.2s;
}
.paper-doi:hover { background: #fdf5ee; }

.badge {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 2px;
}
.badge.review { background: #fff3cd; color: #7a5a00; }
.badge.forthcoming { background: #d4edda; color: #1a5e2a; }
.badge.wip { background: #d1ecf1; color: #0a4e5e; }
.badge.pipeline { background: #e8e0f5; color: #4a2a7a; }

/* Conference table */
.conf-table { display: flex; flex-direction: column; }
.conf-row {
  display: flex;
  gap: 28px;
  padding: 14px 0;
  border-bottom: 1px solid #ede7df;
  align-items: flex-start;
}
.conf-row:last-child { border-bottom: none; }
.conf-year {
  flex-shrink: 0;
  width: 42px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #b46a30;
  padding-top: 2px;
}
.conf-detail strong { display: block; font-size: 0.93rem; color: #1b1b1b; margin-bottom: 3px; }
.conf-detail p { font-size: 0.88rem; color: #5e5e5e; margin: 0; line-height: 1.5; }

/* Dissertation */
.dissertation-card {
  background: #fff;
  border: 1px solid #ede7df;
  border-left: 4px solid #b46a30;
  border-radius: 0 10px 10px 0;
  padding: 28px;
}
.dissertation-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 16px;
  line-height: 1.4;
}
.diss-meta { margin-bottom: 16px; }
.diss-meta p { font-size: 0.88rem; color: #5e5e5e; margin-bottom: 4px; }
.dissertation-card > p { font-size: 0.93rem; color: #3e3e3e; line-height: 1.75; }

/* =====================
   Teaching
   ===================== */
.teaching-block { margin-bottom: 48px; }
.teaching-interests-bar {
  background: #fdf5ee;
  border-left: 3px solid #b46a30;
  padding: 14px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 0.92rem;
  color: #3e3e3e;
  margin-bottom: 32px;
}

.course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.course-card {
  background: #fff;
  border: 1px solid #ede7df;
  border-radius: 10px;
  padding: 22px;
  transition: box-shadow 0.2s;
}
.course-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.course-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b46a30;
  background: #fdf5ee;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.course-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 4px;
  line-height: 1.4;
}
.course-inst { font-size: 0.82rem; color: #5e5e5e; margin-bottom: 14px; }
.course-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.course-table th {
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5e5e5e;
  padding: 6px 0;
  border-bottom: 1px solid #ede7df;
}
.course-table td { padding: 7px 0; border-bottom: 1px solid #f5f0eb; color: #3e3e3e; }
.course-table tr:last-child td { border-bottom: none; }
.ta-terms { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; }
.ta-terms li {
  font-size: 0.82rem;
  background: #faf8f5;
  border: 1px solid #ede7df;
  padding: 3px 10px;
  border-radius: 20px;
  color: #5e5e5e;
}
.other-exp-card {
  background: #faf8f5;
  border: 1px solid #ede7df;
  border-radius: 8px;
  padding: 18px 22px;
  font-size: 0.92rem;
  color: #3e3e3e;
}
.other-exp-card p { font-size: 0.88rem; color: #5e5e5e; margin: 8px 0 0; }

.philosophy-card {
  background: #fff;
  border: 1px solid #ede7df;
  border-radius: 10px;
  padding: 28px;
  font-size: 0.95rem;
  color: #3e3e3e;
  line-height: 1.8;
  max-width: 860px;
}

/* =====================
   Awards
   ===================== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
}
.award-card {
  background: #fff;
  border: 1px solid #ede7df;
  border-radius: 10px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.award-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.award-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.award-card p { font-size: 0.9rem; color: #3e3e3e; line-height: 1.6; margin: 0; }

/* =====================
   Contact
   ===================== */
.contact-section {
  background: linear-gradient(135deg, #2c1a0e 0%, #4a2c10 40%, #7a4520 100%);
  color: #fff;
}
.contact-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 48px;
  margin-top: -28px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 28px;
  transition: background 0.2s;
}
.contact-card:hover { background: rgba(255,255,255,0.13); }
.contact-icon { font-size: 1.8rem; margin-bottom: 10px; }
.contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.contact-card a, .contact-card p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
}
.contact-card a:hover { color: #fff; text-decoration: underline; }
.btn-accent-light {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 9px 20px;
  border-radius: 50px;
  margin-top: 4px;
  transition: background 0.2s;
}
.btn-accent-light:hover { background: rgba(255,255,255,0.25); }

/* =====================
   Footer
   ===================== */
.site-footer {
  background: #1a0e05;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px 32px;
    overflow-y: auto;
    border-top: 1px solid #ede7df;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  .main-nav.is-open { display: flex; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-list > li > a { padding: 12px 0; font-size: 0.95rem; border-bottom: 1px solid #f5f0eb; border-radius: 0; width: 100%; }
  .dropdown { position: static; box-shadow: none; border: none; padding-left: 16px; display: block; }
  .has-dropdown .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; }
}

@media (max-width: 860px) {
  .hero-inner { flex-direction: column; text-align: center; padding: 60px 24px; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-photo-wrap { width: 280px; height: 280px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-col { display: flex; gap: 24px; align-items: flex-start; }
  .about-photo { width: 180px; flex-shrink: 0; aspect-ratio: auto; }
  .about-contact-card { flex: 1; }
  .interests-grid { grid-template-columns: 1fr; }
  .course-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 64px 20px; }
  .section-heading { font-size: 1.6rem; }
  .about-photo-col { flex-direction: column; }
  .about-photo { width: 100%; }
  .hero-name { font-size: 2.2rem; }
  .conf-row { flex-direction: column; gap: 4px; }
  .conf-year { width: auto; }
  .paper-item { flex-direction: column; gap: 10px; }
}

/* =====================
   Page Hero (inner pages)
   ===================== */
.page-hero {
  background: linear-gradient(135deg, #2c1a0e 0%, #4a2c10 40%, #7a4520 100%);
  padding: 110px 32px 52px;
  color: #fff;
}
.page-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.page-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  line-height: 1.7;
}

/* Active nav link */
.nav-list a.active { color: #b46a30 !important; }

/* =====================
   Quick Links (home)
   ===================== */
.quick-links {
  background: #faf8f5;
  padding: 64px 32px;
}
.quick-links .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ql-card {
  background: #fff;
  border: 1px solid #ede7df;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
  color: inherit;
}
.ql-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  border-color: #d4b89a;
}
.ql-icon { font-size: 2rem; margin-bottom: 12px; }
.ql-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 6px;
}
.ql-card p { font-size: 0.85rem; color: #5e5e5e; margin: 0; line-height: 1.5; }

/* =====================
   Bio bullets
   ===================== */
.bio-bullets {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}
.bio-bullets li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 0.97rem;
  color: #3e3e3e;
  line-height: 1.65;
  border-bottom: 1px solid #f5f0eb;
}
.bio-bullets li:last-child { border-bottom: none; }
.bio-bullets li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #b46a30;
  font-size: 0.8rem;
  top: 8px;
}

/* =====================
   Research tabs bar
   ===================== */
.research-tabs {
  background: #fff;
  border-bottom: 2px solid #ede7df;
  position: sticky;
  top: 68px;
  z-index: 100;
}
.research-tabs .container {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.research-tabs .container::-webkit-scrollbar { display: none; }
.research-tabs a {
  display: block;
  padding: 14px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5e5e5e;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.research-tabs a:hover { color: #b46a30; border-color: #b46a30; }

/* Heading note (small label beside heading) */
.heading-note {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #5e5e5e;
  text-transform: none;
  letter-spacing: 0;
}

/* Invited tag in conference */
.invited-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #fdf5ee;
  color: #b46a30;
  border: 1px solid #e8d5c0;
  padding: 1px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}

/* =====================
   Award card (updated with title/desc)
   ===================== */
.award-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1b1b1b;
  margin-bottom: 4px;
}
.award-desc {
  font-size: 0.85rem;
  color: #5e5e5e;
  margin: 0;
  line-height: 1.5;
}

/* =====================
   Contact page layout
   ===================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.contact-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #ede7df;
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail .contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  padding-top: 2px;
}
.contact-detail h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b46a30;
  margin-bottom: 6px;
}
.contact-detail a, .contact-detail p {
  font-size: 0.95rem;
  color: #3e3e3e;
  line-height: 1.65;
}
.contact-detail a:hover { color: #b46a30; text-decoration: underline; }
.contact-photo-col { text-align: center; }
.contact-photo {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3/4;
  margin-bottom: 20px;
}
.contact-bio-snippet {
  background: #faf8f5;
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 0.9rem;
  color: #3e3e3e;
  line-height: 1.65;
  text-align: left;
}

/* =====================
   Responsive additions
   ===================== */
@media (max-width: 960px) {
  .quick-links .container { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-photo-col { display: flex; gap: 24px; align-items: flex-start; }
  .contact-photo { width: 160px; flex-shrink: 0; aspect-ratio: auto; }
}
@media (max-width: 600px) {
  .quick-links .container { grid-template-columns: 1fr 1fr; gap: 12px; }
  .page-title { font-size: 2rem; }
  .research-tabs a { padding: 12px 14px; font-size: 0.72rem; }
  .contact-photo-col { flex-direction: column; }
  .contact-photo { width: 100%; }
}

/* =====================
   Service list
   ===================== */
.service-list { display: flex; flex-direction: column; }
.service-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #ede7df;
}
.service-item:last-child { border-bottom: none; }
.service-role {
  flex-shrink: 0;
  width: 130px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b46a30;
  padding-top: 3px;
}
.service-name { font-size: 0.95rem; font-weight: 600; color: #1b1b1b; margin-bottom: 2px; }
.service-date { font-size: 0.85rem; color: #5e5e5e; margin: 0; }

/* =====================
   Membership cards
   ===================== */
.membership-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.membership-card {
  background: #fff;
  border: 1px solid #ede7df;
  border-top: 3px solid #b46a30;
  border-radius: 0 0 10px 10px;
  padding: 24px 28px;
  text-align: center;
  min-width: 180px;
  flex: 1;
}
.membership-abbr {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #b46a30;
  margin-bottom: 8px;
}
.membership-card p { font-size: 0.9rem; color: #3e3e3e; margin: 0; }

/* =====================
   Experience timeline
   ===================== */
.exp-timeline { display: flex; flex-direction: column; gap: 0; }
.exp-item {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid #ede7df;
  align-items: flex-start;
}
.exp-item:last-child { border-bottom: none; }
.exp-date {
  flex-shrink: 0;
  width: 180px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #b46a30;
  padding-top: 4px;
  line-height: 1.4;
}
.exp-body { flex: 1; }
.exp-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 4px;
}
.exp-org { font-size: 0.9rem; color: #b46a30; margin-bottom: 6px; font-weight: 600; }
.exp-supervisors { font-size: 0.88rem; color: #5e5e5e; margin-bottom: 8px; }
.exp-bullets { list-style: none; padding: 0; margin: 8px 0 0; }
.exp-bullets li {
  position: relative;
  padding: 4px 0 4px 16px;
  font-size: 0.9rem;
  color: #3e3e3e;
  line-height: 1.6;
}
.exp-bullets li::before { content: '–'; position: absolute; left: 0; color: #b46a30; }

/* =====================
   Coursework
   ===================== */
.coursework-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.coursework-card {
  background: #fff;
  border: 1px solid #ede7df;
  border-radius: 10px;
  padding: 24px;
}
.coursework-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b46a30;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ede7df;
}
.coursework-list { list-style: none; padding: 0; margin: 0; }
.coursework-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f5f0eb;
  font-size: 0.88rem;
}
.coursework-list li:last-child { border-bottom: none; }
.course-name { color: #1b1b1b; flex: 1; }
.course-prof { color: #5e5e5e; font-size: 0.8rem; white-space: nowrap; }

/* =====================
   Other items
   ===================== */
.other-items { display: flex; flex-direction: column; gap: 0; }
.other-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid #ede7df;
}
.other-item:last-child { border-bottom: none; }
.other-icon { font-size: 1.5rem; flex-shrink: 0; width: 32px; text-align: center; }
.other-title { font-weight: 600; font-size: 0.95rem; color: #1b1b1b; margin-bottom: 4px; }
.other-desc { font-size: 0.88rem; color: #5e5e5e; margin: 0; line-height: 1.6; }

/* Responsive for experience/coursework */
@media (max-width: 700px) {
  .exp-item { flex-direction: column; gap: 8px; }
  .exp-date { width: auto; }
  .coursework-grid { grid-template-columns: 1fr; }
  .coursework-list li { flex-direction: column; gap: 2px; }
}
