:root {
  color-scheme: light;
  --ink: #1f2a2e;
  --muted: #617078;
  --paper: #f7f3ea;
  --paper-deep: #ece4d2;
  --accent: #245b54;
  --line: rgba(31, 42, 46, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(36, 91, 84, 0.08), transparent 42%),
    radial-gradient(circle at 85% 15%, rgba(202, 178, 122, 0.26), transparent 32%),
    linear-gradient(180deg, var(--paper), var(--paper-deep));
}

.page-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(24px, 6vw, 72px);
}

.hero {
  width: min(760px, 100%);
  border-left: 1px solid var(--line);
  padding: clamp(28px, 6vw, 64px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 9ch;
  font-family:
    Georgia, "Times New Roman", Times, serif;
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 500;
  line-height: 0.9;
}

.intro {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.7;
}

@media (max-width: 520px) {
  .hero {
    border-left: 0;
    padding-inline: 0;
  }
}
