:root {
  color-scheme: light;
  --ink: #1d2524;
  --muted: #5b6865;
  --paper: #f7f5ef;
  --line: #c8d0c8;
  --accent: #7b3f2a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(123, 63, 42, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(74, 104, 93, 0.12), transparent 38%),
    var(--paper);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 9vh 7vw;
}

.intro {
  max-width: 760px;
}

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

h1 {
  margin: 0;
  max-width: 720px;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(3.1rem, 9vw, 8rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.contact {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

a {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 5px;
}

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