:root {
  --bg: #fffaf0;
  --surface: #ffffff;
  --text: #9d331c;
  --muted: #6a675d;
  --accent: #9c5c2e;
  --border: #e7d8c3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #fff8eb 0%, #f6f1ea 40%, #f2ece4 100%);
  color: var(--text);
  line-height: 1.6;
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px;
}

header {
  text-align: center;
  padding: 32px 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.03em;
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", serif;
  font-style: italic;
  font-weight: 500;
}

p.lead {
  margin: 18px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.hero .card {
  width: 100%;
  max-width: 760px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 32px rgba(228, 185, 139, 0.08);
}

.card h2,
section h2 {
  margin-top: 0;
  color: var(--accent);
}

.grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 720px) {
  .grid.columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

.feature p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  gap: 10px;
  margin-top: 20px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(156, 92, 46, 0.24);
}

.section-spacing {
  margin-top: 32px;
}

.hero-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-size: 0.9rem;
}

.top-gap {
  margin-top: 20px;
}

.info-list {
  margin: 18px 0 0 20px;
  color: var(--muted);
}

footer {
  margin-top: 56px;
  padding: 24px 0 14px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}