:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #5a5f63;
  --paper: #f7f8f7;
  --line: #d8d6ce;
  --teal: #007c78;
  --red: #c43e3e;
  --yellow: #f0c847;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(28, 28, 24, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
  background:
    linear-gradient(90deg, rgba(0, 124, 120, 0.12) 0 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(0deg, rgba(196, 62, 62, 0.1) 0 1px, transparent 1px) 0 0 / 44px 44px,
    var(--paper);
}

a {
  color: var(--teal);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--red);
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0;
}

.intro {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: center;
}

.intro-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 750;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: 5.8rem;
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.lead {
  max-width: 19ch;
  margin-bottom: 18px;
  font-size: 2.35rem;
  line-height: 1.1;
  font-weight: 780;
}

.intro-copy p:not(.eyebrow):not(.lead) {
  max-width: 680px;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 10px 18px;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
  background: var(--white);
}

.button:hover {
  color: var(--ink);
  border-color: var(--red);
  box-shadow: 6px 6px 0 var(--yellow);
  transform: translate(-2px, -2px);
}

.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.primary:hover {
  color: var(--white);
}

.profile {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.profile img {
  display: block;
  width: 192px;
  height: 192px;
  margin-bottom: 28px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  object-fit: cover;
  background: var(--white);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.highlights article {
  border-top: 4px solid var(--ink);
  padding-top: 14px;
}

.highlights p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

dl {
  margin: 0;
}

.profile div + div {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-weight: 760;
  line-height: 1.3;
}

@media (max-width: 860px) {
  body {
    font-size: 17px;
  }

  .page-shell {
    width: min(100% - 28px, 680px);
    padding: 24px 0;
  }

  .intro {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  h1 {
    font-size: 4.2rem;
  }

  .lead {
    max-width: 19ch;
    font-size: 2rem;
  }

  .profile {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 20px;
    align-items: start;
  }

  .profile img {
    width: 112px;
    height: 112px;
    margin: 0;
  }

  .highlights {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }
}

@media (max-width: 520px) {
  .profile {
    grid-template-columns: 1fr;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 3.6rem;
  }

  .lead {
    font-size: 1.72rem;
  }
}
