* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  color: #1f2420;
  background: #f8faf7;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  width: min(100%, 960px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 32px;
  align-items: center;
}

.photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #3b6f58;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 18px;
  font-size: 4.25rem;
  line-height: 0.95;
}

p {
  max-width: 58ch;
  margin: 0 0 16px;
  color: #3b403d;
  font-size: 1.05rem;
  line-height: 1.65;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

a {
  color: #123f9f;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  body {
    padding: 20px;
    place-items: start;
  }

  .page {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  h1 {
    font-size: 2.65rem;
  }
}
