:root{
  --bg:#0b0b0b;
  --panel:#1e1e1e;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --line:rgba(255,255,255,.10);
  --ease:cubic-bezier(.2,.8,.2,1);
}

.about{
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}

@media (min-width: 861px){
  .about{
    margin-left: var(--rail-w);
  }
}

.about__frame{
  height: 100vh;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: rgba(35,35,35,.85);
}

.about__media{
  position: relative;
  overflow: hidden;
}

.about__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__panel{
  background: linear-gradient(180deg, rgba(25,25,25,.96) 0%, rgba(16,16,16,.98) 100%);
  border-left: 1px solid var(--line);
  overflow: auto;
}

.about__content{
  padding: 64px 54px 44px;
  max-width: 100%;
}

.about__kicker{
  margin: 0 0 10px;
  font-size: 16px;
  color: rgba(255,255,255,.78);
}

.about__name{
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 86px;
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,.40);
}

.about__name span{
  display: block;
}

.about__role{
  margin: 10px 0 0;
  font-size: 22px;
  color: rgba(255,255,255,.82);
}

.about__body{
  margin-top: 28px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: rgba(255,255,255,.68);
}

.about__body p{
  margin: 0 0 14px;
}

.about__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-size: 14px;
  margin-top: 14px;
  transition: opacity 160ms var(--ease), background 160ms var(--ease);
}

.about__cta:hover{
  opacity: .85;
  background: rgba(255,255,255,.18);
}

.about__email{
  margin: 26px 0 0;
  font-size: 16px;
  color: rgba(255,255,255,.60);
}

.about__email a{
  color: inherit;
  text-decoration: none;
  transition: opacity 160ms var(--ease);
}

.about__email a:hover{
  opacity: .78;
}

@media (max-width: 1100px){
  .about__frame{
    grid-template-columns: 1fr 1fr;
  }
  .about__content{
    padding: 54px 36px 36px;
  }
  .about__name{
    font-size: 72px;
  }
}

@media (max-width: 860px){
  .about{
    margin-left: 0;
    padding-top: 64px; 
  }

  .about__frame{
    height: auto;
    min-height: calc(100vh - 64px);
    grid-template-columns: 1fr;
    grid-template-rows: 44vh auto;
  }

  .about__panel{
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .about__content{
    max-width: 640px;
    padding: 28px 18px 32px;
  }

  .about__name{
    font-size: 56px;
  }

  .about__role{
    font-size: 18px;
  }
}
