/* ===========================================================
   Base tokens
=========================================================== */
:root{
  --white:#FFFFFF;
  --black:#0A0A0A;
  --gray:#5C5C5C;
  --gray-light:#E4E4E4;
  --red:#C1121F;
  --max:760px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  background:var(--white);
  color:var(--black);
  font-family:'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  line-height:1.65;
  font-size:17px;
}

h1,h2,h3{ margin:0; font-weight:600; letter-spacing:-0.01em; }
p{ margin:0; }
a{ color:var(--black); border-bottom:1px solid var(--red); text-decoration:none; }
a:hover{ color:var(--red); }
a:focus-visible{ outline:2px solid var(--red); outline-offset:3px; }

.wrap{ max-width:var(--max); margin:0 auto; padding:70px 28px 90px; }

/* ===========================================================
   Header — photo left, name/intro right
=========================================================== */
.profile{
  display:flex;
  align-items:flex-start;
  gap:28px;
  margin-bottom:40px;
}
.photo{
  width:110px;
  height:110px;
  flex:none;
  border-radius:50%;
  overflow:hidden;
  border:2px solid var(--black);
  position:relative;
}
.photo img{ width:100%; height:100%; object-fit:cover; display:block; }
/* placeholder graphic shown until a real photo is added */
.photo .placeholder{
  width:100%; height:100%;
  background:var(--gray-light);
  display:flex; align-items:center; justify-content:center;
}
.photo .placeholder svg{ width:46%; height:46%; }

.profile-text h1{ font-size:24px; }
.profile-text .role{
  color:var(--red);
  font-size:14px;
  font-weight:600;
  letter-spacing:0.03em;
  margin-top:4px;
}
.profile-text .location{ color:var(--gray); font-size:14px; margin-top:6px; }

/* ===========================================================
   Section shell
=========================================================== */
section{ margin-top:44px; }
section h2{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:0.14em;
  color:var(--red);
  font-weight:700;
  margin-bottom:14px;
  border-bottom:1px solid var(--gray-light);
  padding-bottom:10px;
}
section p{ color:var(--black); }
section p + p{ margin-top:14px; }

/* ===========================================================
   Publications
=========================================================== */
.pub-list{ list-style:none; margin:0; padding:0; }
.pub{
  padding:18px 0;
  border-bottom:1px solid var(--gray-light);
}
.pub:first-child{ padding-top:0; }
.pub:last-child{ border-bottom:none; }
.pub-title{ font-size:16.5px; font-weight:600; }
.pub-meta{ color:var(--gray); font-size:14px; margin-top:5px; }
.pub-link{ font-size:13px; margin-top:6px; display:inline-block; }

/* ===========================================================
   Footer
=========================================================== */
footer{
  margin-top:60px;
  padding-top:24px;
  border-top:1px solid var(--gray-light);
  color:var(--gray);
  font-size:13px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
}
footer a{ color:var(--gray); border-bottom:none; }
footer a:hover{ color:var(--red); }

/* ===========================================================
   Responsive
=========================================================== */
@media (max-width: 480px){
  .profile{ flex-direction:column; align-items:flex-start; gap:16px; }
  .wrap{ padding:50px 22px 70px; }
}