* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #111111;
  color: #f2f2f2;
  font-family: 'Lato', sans-serif;
  padding-top: 72px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 24px;

  background: #111111;
  backdrop-filter: blur(6px);

  border-bottom: 1px solid #1a1a1a;
}

.nav-left {
  position: relative;
}

.hbg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hbg span {
  width: 22px;
  height: 2px;
  background: #f2f2f2;
  display: block;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #f2f2f2;
  letter-spacing: .03em;
  text-decoration: none;
}

.drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;

  background: #1a1a1a;
  border: 1px solid #2a2a2a;

  min-width: 160px;
  z-index: 50;

  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s;
}

.drop.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.drop a {
  display: block;
  padding: 11px 20px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #f2f2f2;
  text-decoration: none;
}

.drop a:hover {
  background: #f2f2f2;
  color: #111;
}

.s1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 0;

  padding: 30px 70px 80px 60px;
}

.photo-col {
  position: relative;
  display: flex;
  justify-content: center;
  padding-left: 56px;
}

.photo-img {
  width: 100%;
  max-width: 340px;
  display: block;
  object-fit: cover;
  margin-top: 110px;
}

.vert-name {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-lr;

  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;

  color: #f2f2f2;
  letter-spacing: .02em;
}

.bio-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  padding-left: 48px;
}

.bio-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #f2f2f2;
}

.bio-text {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.85;
  color: #999;
  text-align: justify;
}

.archive-pill {
  grid-column: 1 / -1;
  justify-self: center;

  margin-top: 60px;

  border: 1px solid #f2f2f2;
  border-radius: 999px;

  padding: 7px 28px;

  font-size: 12px;
  letter-spacing: .1em;

  color: #f2f2f2;
  background: transparent;
  text-decoration: none;
}

.archive-pill:hover {
  background: #f2f2f2;
  color: #111111;
}

.s2 {
  min-height: 80vh;
  background: #111111;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 80px 24px;
}

.s2-name {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: #f2f2f2;
  margin-bottom: 10px;
  text-align: center;
}

.s2-tag {
  font-size: 12px;
  letter-spacing: 2.5px;
  color: #d0d0d0;
  margin-bottom: 40px;
  text-align: center;
}

.socials {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.soc svg {
  width: 20px;
  height: 20px;
  fill: #f2f2f2;
}

.soc:hover {
  opacity: 0.45;
}

.admin-link {
  color: transparent;
  text-shadow: 0 0 0 rgba(17,17,17,0.15);
  transition: 0.25s ease;
  font-size: 12px;
}

.admin-link:hover {
  color:#f2f2f2;
  text-shadow: none;
}

@media (max-width: 640px) {

  .s1 {
    grid-template-columns: 1fr;
    padding: 40px 24px 60px;
    gap: 40px;
  }

  .photo-col {
    padding: 0;
    justify-content: center;
    gap: 16px;
  }

  .vert-name {
    position: static;
    transform: rotate(180deg);
    writing-mode: vertical-lr;
    font-size: 30px;
    order: -1;
  }

  .photo-img {
    width: 240px;
    max-width: 75vw;
    margin: 0;
  }

  .bio-col {
    padding-left: 0;
  }

  .s2-name {
    font-size: 32px;
  }
}

body {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.page-loaded {
  opacity: 1;
}

body.fade-out {
  opacity: 0;
}