:root {
  --bg: #211b20;
  --text: rgba(255, 255, 255, 0.67);
  --text-strong: rgba(255, 255, 255, 0.78);
  --black: #000;
  --email-ring: #ebdfdf;
  --button-shadow: 0 1.625rem 3rem rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
}

.site-main {
  display: flex;
  justify-content: center;
  width: min(100%, 37.9375rem);
  min-height: 100vh;
}

.inner {
  width: 100%;
  padding: 8.8125rem 3.25rem;
  text-align: center;
}

.portrait-frame {
  display: inline-block;
  width: 11.375rem;
  height: 11.375rem;
  margin: 0 0 1.625rem;
  overflow: hidden;
  border: 0.25rem solid var(--black);
  border-radius: 50%;
  line-height: 0;
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.135rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: 54% 35%;
}

.bio {
  width: min(100%, 31.5rem);
  margin: 1.625rem auto;
  color: var(--text);
  font-size: 0.677rem;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.24em;
}

.bio span {
  display: block;
  margin-top: 1.083rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  width: min(100%, 31.5rem);
  margin: 2.708rem auto;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 0.1875rem solid var(--black);
  border-radius: 50%;
  color: var(--black);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-icons a:hover {
  transform: translateY(-0.125rem);
  color: var(--email-ring);
  border-color: var(--email-ring);
}

.social-icons a:last-child {
  border-color: var(--email-ring);
  color: var(--email-ring);
}

.social-icons svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.95;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icons a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.social-icons a:first-child svg path:last-child {
  fill: var(--bg);
}

.link-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  width: min(100%, 31.5rem);
  margin: 2.708rem auto 0;
}

.link-buttons a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 5.4167rem;
  padding: 0 2.708rem;
  border-radius: 0.2708rem;
  background: var(--bg);
  box-shadow: var(--button-shadow);
  color: var(--text);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  transition: color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.link-buttons a:hover {
  color: var(--text-strong);
  transform: translateY(-0.125rem);
  box-shadow: 0 1.75rem 3.25rem rgba(0, 0, 0, 0.2);
}

.link-buttons span {
  display: block;
  min-width: 0;
  padding-right: 3rem;
  overflow-wrap: anywhere;
}

.link-buttons svg {
  position: absolute;
  top: 50%;
  right: 2.65rem;
  width: 2.125rem;
  height: 2.125rem;
  transform: translateY(-50%);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.soon-title {
  margin: 0 auto 1.625rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

@media (max-width: 736px) {
  .site-main {
    width: 100%;
  }

  .inner {
    padding: 4.5rem 1.5rem;
  }

  .portrait-frame {
    width: 10.75rem;
    height: 10.75rem;
  }

  .bio,
  .soon-title {
    font-size: 0.64rem;
    letter-spacing: 0.18em;
  }

  .social-icons {
    gap: 1rem;
  }

  .social-icons a {
    width: 3rem;
    height: 3rem;
  }

  .link-buttons a {
    min-height: 5rem;
    padding: 0 2rem;
  }

  .link-buttons svg {
    right: 1.75rem;
  }
}

@media (max-width: 420px) {
  .inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .social-icons {
    gap: 0.55rem;
  }

  .social-icons a {
    width: 2.65rem;
    height: 2.65rem;
    border-width: 0.15rem;
  }

  .social-icons svg {
    width: 1.45rem;
    height: 1.45rem;
  }
}
