*{box-sizing:border-box}
html,body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:#333;
  background:#fff;
}
a{color:inherit}
.page{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
.menu-btn{
  position:fixed;
  top:24px;
  left:24px;
  z-index:30;
  width:42px;
  height:42px;
  border:0;
  background:transparent;
  cursor:pointer;
}
.menu-btn span{
  display:block;
  height:3px;
  margin:6px 0;
  background:#222;
}
.side-nav{
  position:fixed;
  inset:0 auto 0 0;
  width:260px;
  background:#fff;
  box-shadow:2px 0 24px rgba(0,0,0,.08);
  padding:80px 28px 28px;
  transform:translateX(-100%);
  transition:transform .25s ease;
  z-index:25;
}
.side-nav.open{transform:translateX(0)}
.side-nav a{
  display:block;
  padding:12px 0;
  text-decoration:none;
  color:#333;
  font-weight:700;
  border-bottom:1px solid #eee;
}
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
  z-index:20;
}
.overlay.open{
  opacity:1;
  pointer-events:auto;
}
.hero{
  flex:1;
  display:grid;
  grid-template-columns:minmax(280px,.95fr) 1.05fr;
  gap:40px;
  align-items:center;
  width:min(1180px,100%);
  margin:0 auto;
  padding:80px 40px 40px;
}
.photo-wrap{
  display:flex;
  justify-content:center;
  align-items:flex-end;
  min-height:520px;
}
.photo{
  width:min(420px,100%);
  max-height:620px;
  aspect-ratio:3/4;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  overflow:hidden;
}
.photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
}
.photo-fallback{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,#eef7f7,#d8ecec);
  color:#4ab7b1;
  font-size:72px;
  font-weight:800;
}
.copy{
  padding-top:20px;
}
.eyebrow{
  margin:0 0 10px;
  font-size:clamp(34px,5vw,52px);
  line-height:1.1;
  font-weight:800;
  letter-spacing:.02em;
}
.eyebrow .accent{color:#4ab7b1}
.title-line{
  margin:0 0 18px;
  font-size:clamp(18px,2.4vw,24px);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.title-line .accent{color:#4ab7b1}
.intro,.objective-text{
  margin:0 0 18px;
  max-width:560px;
  color:#8a8a8a;
  font-size:15px;
  line-height:1.8;
}
.section-label{
  margin:0 0 8px;
  color:#4ab7b1;
  font-size:18px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.signoff{
  margin:24px 0 8px;
  color:#9a9a9a;
  font-family:"Segoe Script","Brush Script MT",cursive;
  font-size:18px;
}
.signature{
  margin:0 0 24px;
  font-family:"Segoe Script","Brush Script MT",cursive;
  font-size:34px;
  color:#222;
  line-height:1;
}
.btn-resume{
  display:inline-block;
  padding:14px 28px;
  background:#2f2f2f;
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.socials{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}
.socials a{
  width:38px;
  height:38px;
  border-radius:50%;
  background:#2f2f2f;
  color:#fff;
  display:grid;
  place-items:center;
  text-decoration:none;
  font-size:11px;
  font-weight:800;
}
.socials a.highlight{background:#4ab7b1}
.footer{
  background:#f7f7f7;
  padding:28px 20px 22px;
  text-align:center;
}
.footer p{
  margin:0 0 8px;
  color:#8a8a8a;
  font-size:14px;
}
.footer .accent{color:#4ab7b1;font-weight:700}
.footer-socials{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-top:14px;
}
.footer-socials a{
  color:#b5b5b5;
  text-decoration:none;
  font-size:12px;
  font-weight:700;
}
@media(max-width:900px){
  .hero{
    grid-template-columns:1fr;
    padding:72px 20px 30px;
  }
  .photo-wrap{min-height:auto}
  .photo{max-height:480px}
}
