@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

:root {
  color-scheme: light;
  font-family: "Inter", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  background-color: #f5f5f7;
  color: #111111;
}

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

body {
  min-height: 100vh;
  background-color: #f5f5f7;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover,
a:focus {
  text-decoration-thickness: 2px;
}

.page {
  max-width: 720px;
  margin: 120px auto 160px;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.intro h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.biography {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.biography h2,
.contact h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
}

.biography p {
  font-size: 1.05rem;
  max-width: 68ch;
  color: rgba(17, 17, 17, 0.8);
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-link {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: inline-block;
}

@media (max-width: 600px) {
  .page {
    margin: 80px auto 120px;
    padding: 0 20px;
    gap: 72px;
  }

  .intro h1 {
    font-size: clamp(2.6rem, 10vw, 3.4rem);
  }

  .biography p,
  .contact-link {
    font-size: 1rem;
  }
}
