:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --text: #151515;
  --muted: #60605c;
  --line: #d8d5cc;
  --accent: #174f4a;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.page {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 32px;
}

.hero {
  width: min(900px, 100%);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.contact {
  display: inline-block;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 650;
}

.footer {
  min-height: 72px;
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 0 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.content {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 56px 24px 88px;
}

.content h1 {
  margin-top: 24px;
  font-size: 48px;
  line-height: 1.05;
}

.content h2 {
  margin: 40px 0 12px;
  font-size: 18px;
}

.content p {
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.65;
}

.back {
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 640px) {
  .page {
    min-height: calc(100vh - 64px);
    padding: 24px;
  }

  h1 {
    font-size: 44px;
  }

  .lead {
    font-size: 18px;
  }

  .footer {
    min-height: 64px;
    padding: 0 24px;
  }
}
