:root {
  --text: #f2efe8;
  --muted: #c8c1b6;
  --accent: #d2b36c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: #26272b;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 32px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
}

.lede {
  font-size: 1.18rem;
  color: var(--muted);
}

p {
  line-height: 1.72;
  font-size: 1.04rem;
}

.portrait {
  margin: 0;
}

.portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  background: #111;
}

@media (max-width: 860px) {
  .page {
    padding: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
