:root {
  --navy: #16273b;
  --navy-light: #24405e;
  --burgundy: #8c3a4a;
  --burgundy-light: #a9505f;
  --paper: #faf8f5;
  --line: #e2ddd4;
  --text: #2a2a2a;
  --muted: #5c6570;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Georgia", "Iowan Old Style", serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
}

.sans { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; }

a { color: var(--burgundy); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header / Nav */
header {
  position: sticky;
  top: 0;
  background: var(--navy);
  z-index: 100;
  border-bottom: 3px solid var(--burgundy);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1080px;
  margin: 0 auto;
}

.brand {
  color: #fff;
  font-family: "Georgia", serif;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.brand span {
  color: var(--burgundy-light);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav a {
  color: #e8e6e1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

nav a:hover { color: #fff; text-decoration: none; border-bottom: 1px solid var(--burgundy-light); }

.nav-toggle { display: none; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 88px 0 96px;
}

.hero-wrap {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-text { flex: 1.3; }

.eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--burgundy-light);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 18px;
}

.hero p.lede {
  font-size: 18px;
  color: #d7d9dd;
  max-width: 520px;
  margin-bottom: 32px;
}

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 13px 26px;
  border-radius: 2px;
  text-decoration: none !important;
}

.btn-primary { background: var(--burgundy); color: #fff; }
.btn-primary:hover { background: var(--burgundy-light); }
.btn-outline { border: 1px solid #6c7686; color: #fff; }
.btn-outline:hover { border-color: #fff; }

.hero-photo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.photo-frame {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.15);
  background: #3a4d63;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aeb6c2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 13px;
  text-align: center;
  padding: 20px;
}

.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Section generic */
section { padding: 84px 0; }
section.alt { background: #f2ede6; }

.section-head { margin-bottom: 44px; max-width: 640px; }

.section-head .eyebrow { color: var(--burgundy); }

.section-head h2 {
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
}

.section-head p { color: var(--muted); margin-top: 12px; font-size: 16px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
}

.about-grid p { margin-bottom: 16px; color: #333; }

.about-photo {
  width: 100%;
  max-width: 220px;
  margin: 0 0 28px;
  border: 1px solid var(--line);
  border-bottom: 3px solid var(--burgundy);
}

.credentials h3, .timeline h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.credentials ul, .awards-list ul { list-style: none; margin-bottom: 32px; }
.credentials li {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px dotted var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item .yrs {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: var(--burgundy);
  font-weight: 600;
}

.timeline-item .role { font-size: 15px; color: #333; }
.timeline-item .org { font-size: 13px; color: var(--muted); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px 26px;
  border-top: 3px solid var(--burgundy);
}

.service-card h3 {
  font-size: 19px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p { font-size: 14.5px; color: var(--muted); }

/* Awards */
.awards-list ul {
  columns: 2;
  column-gap: 40px;
}

.awards-list li {
  font-size: 14.5px;
  color: #333;
  padding: 7px 0;
  break-inside: avoid;
}

.awards-list li::before {
  content: "— ";
  color: var(--burgundy);
}

/* Publications */
.pub-list { list-style: none; }

.pub-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: #333;
}

.pub-list li .pub-meta {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
}

.pub-more {
  margin-top: 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 14px;
}

/* Media */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.media-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.media-tag {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--burgundy);
}

.media-card h4 { font-size: 16px; font-weight: 400; color: var(--navy); }
.media-card p { font-size: 13.5px; color: var(--muted); }

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--burgundy);
  padding: 30px 28px;
}

.testi-quote {
  font-size: 15px;
  color: #333;
  margin-bottom: 18px;
}

.testi-name {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.testi-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 12.5px;
  color: var(--muted);
}

.testi-placeholder {
  background: #fff;
  border: 1px dashed var(--line);
  padding: 48px;
  text-align: center;
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 14.5px;
}

/* Contact */
.contact-wrap {
  background: var(--navy);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}

.contact-wrap h2 { font-weight: 400; font-size: 30px; margin-bottom: 14px; }
.contact-wrap p { color: #c7cbd2; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

.contact-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 15px;
}

.contact-links a { color: #fff; border-bottom: 1px solid var(--burgundy-light); }

/* Footer */
footer {
  background: #101c29;
  color: #8c95a3;
  text-align: center;
  padding: 24px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 12.5px;
}

/* Responsive */
@media (max-width: 860px) {
  nav ul { display: none; }
  .hero-wrap { flex-direction: column; text-align: center; }
  .hero p.lede { margin-left: auto; margin-right: auto; }
  .btn-row { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .awards-list ul { columns: 1; }
  .hero h1 { font-size: 32px; }
}
