:root {
  --paper: #f4f2ed;
  --ink: #161616;
  --muted: #66635e;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(40px, 6vw, 96px);
}

.identity {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.1fr);
  column-gap: clamp(60px, 7vw, 110px);
  align-items: end;
}

h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(60px, 6.4vw, 94px);
  line-height: 0.94;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.role {
  margin: 28px 0 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.035em;
}

.role span {
  display: inline-block;
  margin: 0 0.35em;
  color: var(--muted);
}

.statement {
  max-width: 540px;
  padding-bottom: 4px;
}

.statement > p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(21px, 1.65vw, 25px);
  line-height: 1.52;
  letter-spacing: -0.012em;
}

.links {
  display: flex;
  gap: 30px;
  margin-top: 42px;
}

.links a {
  position: relative;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.links a:hover,
.links a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

@media (max-width: 800px) {
  .page {
    min-height: 100svh;
    align-items: flex-start;
    padding: 48px 24px 64px;
  }

  .identity {
    display: block;
    margin: 0;
  }

  h1 {
    max-width: 500px;
    font-size: clamp(56px, 16vw, 78px);
    line-height: 0.94;
  }

  .role {
    margin-top: 22px;
    font-size: 14px;
  }

  .statement {
  max-width: 560px;
  margin-top: clamp(82px, 14vh, 115px);
  padding: 0;
}

  .statement > p {
    font-size: 21px;
    line-height: 1.5;
  }

  .links {
    margin-top: 38px;
    gap: 26px;
  }
}