:root {
  --bg: #14160f;
  --ink: #eceee4;
  --muted: #b4b8a8;
  --accent: #c9b48a;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: Figtree, "Segoe UI", sans-serif;
}

body[data-brand="olyve"] {
  --bg: #14160f;
  --accent: #868c6f;
}

body[data-brand="linkflow"] {
  --bg: #101418;
  --ink: #e8eef2;
  --muted: #9aadb8;
  --accent: #7eb6c9;
}

body[data-brand="dave"] {
  --bg: #161412;
  --ink: #f3eee6;
  --muted: #b8b0a4;
  --accent: #d4a574;
}

.stage {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22vh 0 80px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 20px;
  max-width: 12ch;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(52px, 10vw, 92px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.lede {
  margin: 0;
  max-width: 36ch;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .stage {
    width: min(720px, calc(100% - 32px));
    padding-top: 18vh;
  }
}
