/* #last edited 2026-07-09T15:02:09+01:00 */
:root {
  color-scheme: light;
  --bg: #f7f4ed;
  --text: #181713;
  --muted: #5f5a50;
  --accent: #1f4a3d;
  --accent-text: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.page-shell {
  min-height: 100svh;
  display: grid;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 48px 24px;
}

.hero__content {
  width: min(100%, 880px);
  margin: 0 auto;
}

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

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 34px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 700;
  text-decoration: none;
}
