*{box-sizing:border-box}
:root{
  --navy:#0b1f3a;
  --navy2:#17365d;
  --gold:#AE7F0A;
  --paper:#fffdf8;
  --ink:#18202a;
  --muted:#5f6874;
  --line:#d9dee5;
}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:Cambria, Georgia, "Times New Roman", serif;
  line-height:1.58;
}
.hero{
  background:var(--navy);
  border-bottom:5px solid var(--gold);
  color:white;
}
.hero-inner{
  max-width:960px;
  margin:auto;
  padding:34px 28px 30px;
  display:flex;
  align-items:center;
  gap:30px;
}
.logo{
  width:152px;
  height:152px;
  border-radius:50%;
  object-fit:cover;
  flex:none;
  box-shadow:0 0 0 4px rgba(255,255,255,.16);
}
.identity h1{
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(2.15rem,5vw,3.45rem);
  line-height:1.05;
  margin:.08em 0 .22em;
  font-weight:700;
}
.eyebrow{
  color:#e3c15b;
  letter-spacing:.18em;
  font-size:.78rem;
  font-weight:700;
  margin:0;
}
.role{
  font-size:1.2rem;
  text-transform:uppercase;
  letter-spacing:.055em;
  margin:.15rem 0;
}
.subrole{font-size:1.08rem;margin:.1rem 0}
.phd{
  color:#e3b83c;
  font-size:1.08rem;
  font-weight:600;
  font-style:italic;
  letter-spacing:.045em;
  margin:.35rem 0 0;
}
main{max-width:900px;margin:auto;padding:0 28px}
.intro{text-align:center;padding:40px 0 32px}
.focus{
  color:var(--navy);
  font-family:Georgia, "Times New Roman", serif;
  font-weight:700;
  font-size:clamp(1.45rem,3.5vw,2.15rem);
  margin:0 0 18px;
}
.summary{max-width:760px;margin:0 auto;color:#3f4854;font-size:1.08rem}
.actions{
  margin:30px auto 0;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
.button{
  display:inline-block;
  min-width:170px;
  padding:12px 18px;
  border:1.5px solid var(--navy);
  color:var(--navy);
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-weight:700;
  border-radius:4px;
  background:white;
}
.button.primary{background:var(--navy);color:white}
.button:hover,.button:focus{outline:3px solid rgba(174,127,10,.28);outline-offset:2px}
.section{padding:34px 0;border-top:1px solid var(--line)}
.section h2{
  font-family:Georgia, "Times New Roman", serif;
  color:var(--navy);
  text-align:center;
  font-size:1.55rem;
  margin:0 0 24px;
}
.section h2:after{
  content:"";
  display:block;
  width:48px;
  height:3px;
  background:var(--gold);
  margin:9px auto 0;
}
.interest-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.interest-grid article{
  background:white;
  border-left:4px solid var(--gold);
  padding:18px 20px;
  box-shadow:0 2px 12px rgba(11,31,58,.07);
}
.interest-grid h3{margin:0;color:var(--navy2);font-size:1.03rem}
.profile p{max-width:760px;margin:auto;text-align:center}
.contact{text-align:center;padding-bottom:46px}
.contact p{margin-bottom:8px}
.email{
  color:var(--navy);
  font-weight:700;
  font-size:1.08rem;
  overflow-wrap:anywhere;
}
footer{
  background:var(--navy);
  color:#e9edf3;
  text-align:center;
  padding:18px;
  letter-spacing:.08em;
  font-size:.9rem;
}
@media (max-width:650px){
  .hero-inner{flex-direction:column;text-align:center;padding-top:30px}
  .logo{width:132px;height:132px}
  .role{font-size:1.03rem}
  .subrole,.phd{font-size:1rem}
  main{padding:0 20px}
  .intro{padding-top:36px}
  .interest-grid{grid-template-columns:1fr}
  .button{width:100%}
}


/* V2 refinements */
@media (min-width: 900px){
  .focus{white-space:nowrap}
}
@media (max-width:650px){
  .hero-inner{padding:24px 20px 22px;gap:20px}
  .logo{width:118px;height:118px}
  .identity h1{font-size:2.45rem;margin:.05em 0 .18em}
  .eyebrow{font-size:.73rem}
  .role{font-size:.96rem;line-height:1.35}
  .subrole{font-size:.96rem}
  .phd{font-size:.94rem;margin-top:.28rem}
  .intro{padding:28px 0 26px}
  .focus{font-size:1.68rem;line-height:1.18;margin-bottom:14px}
  .summary{font-size:1rem;line-height:1.5}
  .actions{margin-top:22px;gap:10px}
  .button{padding:11px 15px}
  .section{padding:28px 0}
  .section h2{font-size:1.42rem;margin-bottom:20px}
  .interest-grid{gap:10px}
  .interest-grid article{padding:15px 16px}
  .interest-grid h3{font-size:.99rem;line-height:1.35}
  .profile p{font-size:.98rem;line-height:1.55}
  .contact{padding-bottom:36px}
}
