/* intentionally left blank */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;500;600;700&display=swap');

:root{
  --bg:#f5f3dd;
  --text:#4d5350;
  --muted:#6a6f69;
  --accent:#3e4541;
  --line:#5a605b;
  --panel:#f5f3dd;
  --photo:url("hero-waterdrop.jpg");
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:'Comfortaa','Helvetica Neue',Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}

.bio-shell{
  display:grid;
  grid-template-columns:48vw 1fr;
  min-height:100vh;
  background:var(--bg);
}
.left{
  display:flex;
  flex-direction:column;
  background:var(--panel);
  position:sticky;
  top:0;
  align-self:start;
  height:100vh;
}
.left-top{
  display:flex;
  flex-direction:row;
  align-items:center;
  flex:1 1 auto;
}
.photo{
  flex:0 0 52%;
  aspect-ratio:3/4;
  background:var(--panel);
  display:flex;
  align-items:stretch;
  justify-content:stretch;
  padding:0;
  margin:1.6rem 0 0 1.6rem;
  border-radius:1.5rem;
  border:1px solid rgba(90,96,91,.25);
  overflow:hidden;
}
.left-fill{
  display:none;
}
.photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top;
  border-radius:1.5rem;
  box-shadow:none;
}
.left-info{
  flex:1 1 auto;
  min-width:0;
  background:var(--panel);
  padding:2.4rem 1.2rem 0;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
}
.name{
  margin:clamp(0.5rem,1vh,1.2rem) 0 .35rem;
  font-size:clamp(1.15rem,1vw + 0.7rem,1.7rem);
  font-weight:600;
  letter-spacing:.02em;
  color:var(--accent);
  overflow-wrap:break-word;
  word-break:break-word;
  hyphens:auto;
}
.role{
  font-size:.92rem;
  line-height:1.4;
  overflow-wrap:break-word;
  word-break:break-word;
}
.left-logo{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:1.6rem 1rem 2.2rem;
  background:var(--panel);
}
.brand-logo{
  width:240px;
  height:auto;
  aspect-ratio:1/1;
  display:block;
  object-fit:contain;
  filter:saturate(.95) brightness(.98);
  mix-blend-mode:multiply;
}
.left-info .brand-logo{
  width:170px;
  margin-top:1.4rem;
}
.contact-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:1.15rem 3rem;
  border-radius:999px;
  background:var(--accent);
  color:var(--panel);
  font-weight:600;
  letter-spacing:.04em;
  font-size:1.15rem;
  transition:background .2s ease, transform .2s ease;
}
.contact-btn:hover{
  background:var(--line);
  transform:translateY(-6px) scale(1.06);
  box-shadow:0 14px 28px rgba(19,31,28,.28);
}

.right{
  background:#e2e8ca;
  padding:3.4rem 3.3rem 2.4rem;
  display:flex;
  flex-direction:column;
}
.content{
  max-width:780px;
  margin:0 auto;
}
.heading{
  margin:0 0 1.2rem;
  padding-bottom:.9rem;
  border-bottom:1px solid var(--line);
  font-size:clamp(2.2rem,1.7vw + 1.4rem,2.8rem);
  font-weight:600;
  letter-spacing:.02em;
}
.lead{
  margin:0 0 .5rem;
  font-weight:700;
  font-size:1.04rem;
  letter-spacing:.01em;
}
.upper{
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--accent);
  font-size:1.02rem;
}
p{
  margin:0 0 .55rem;
  font-size:1.05rem;
}
ul{
  margin:.15rem 0 1rem 1.1rem;
  padding:0;
  color:var(--text);
}
li{
  margin:0 0 .35rem;
  font-size:1.05rem;
}

.social{
  margin-top:auto;
  display:flex;
  justify-content:flex-end;
  gap:.8rem;
  padding-top:1.4rem;
}
.social a{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:1px solid rgba(90,96,91,.55);
  border-radius:50%;
  background:var(--panel);
  transition:background .2s ease, transform .2s ease;
}
.social a:hover{
  background:rgba(208,211,191,.8);
  transform:translateY(-2px);
}
.social svg{
  width:22px;
  height:22px;
  fill:var(--text);
}

@media (max-width:1080px){
  .bio-shell{grid-template-columns:1fr}
  .left{
    position:sticky;
    top:0;
    height:auto;
  }
  .left-top{flex-direction:column}
  .photo{flex:0 0 auto;aspect-ratio:4/5;margin:1.2rem 1.2rem 0}
  .right{
    position:relative;
    padding:2.6rem 1.8rem 2.1rem;
    border-radius:1.5rem 1.5rem 0 0;
    box-shadow:0 -10px 24px rgba(19,31,28,.18);
  }
  .left-info{padding:2.2rem 1.6rem 2rem}
  .name{font-size:clamp(2rem,5vw + 1rem,2.8rem)}
  .role{font-size:1.05rem}
  .brand-logo{width:190px}
  .social{justify-content:flex-start}
}
