:root {
  color-scheme: light;
  --bg: #f4efe7;
  --paper: rgba(255, 252, 247, 0.9);
  --ink: #16110d;
  --muted: #5e5246;
  --accent: #d8612d;
  --accent-dark: #b34d22;
  --line: rgba(22, 17, 13, 0.08);
  --shadow: 0 24px 60px rgba(88, 52, 31, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 97, 45, 0.2), transparent 32%),
    radial-gradient(circle at bottom right, rgba(126, 172, 114, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f2eb 0%, #eee5d8 100%);
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.hero,
.card,
.footer-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero {
  padding: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 8vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.lede {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 150ms ease,
    background 150ms ease,
    color 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #f0894c 100%);
}

.button.secondary {
  color: var(--ink);
  background: rgba(22, 17, 13, 0.04);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.card,
.footer-card {
  padding: 28px;
}

.card h2,
.footer-card h2 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.card p,
.footer-card p {
  margin-bottom: 0;
  line-height: 1.7;
  color: var(--muted);
}

.footer-card {
  margin-top: 22px;
}

.small,
.small a {
  color: var(--ink);
}

a {
  color: inherit;
}

@media (max-width: 860px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 32px 24px;
  }
}
