:root {
  --bg: #fcf7ef;
  --bg-strong: #f4e3c7;
  --surface: #fffaf2;
  --text: #2d2344;
  --muted: #66597d;
  --primary: #df6b2d;
  --secondary: #2d2344;
  --accent: #ffd166;
  --border: rgba(45, 35, 68, 0.12);
  --shadow: 0 22px 40px rgba(78, 51, 20, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(223, 107, 45, 0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255, 209, 102, 0.25), transparent 28%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.site-header {
  background: rgba(252, 247, 239, 0.9);
  border-bottom: 1px solid rgba(45, 35, 68, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand,
h1,
h2 {
  font-family: "Lora", serif;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

nav a {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
}

nav a.active,
nav a:hover {
  background: rgba(223, 107, 45, 0.12);
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid,
.feature-grid,
.story-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: 1.4fr 0.8fr;
  align-items: center;
}

.hero-small {
  padding-bottom: 2rem;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.05;
}

h2 {
  margin-top: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.lead {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  padding: 0.9rem 1.3rem;
  border-radius: 18px;
  font-weight: 700;
}

.button-primary {
  background: var(--secondary);
  color: #fff;
}

.button-secondary {
  background: var(--accent);
}

.hero-panel,
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.panel-title {
  margin-top: 0;
  font-weight: 700;
  color: var(--muted);
}

.metric + .metric {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(45, 35, 68, 0.16);
}

.metric strong {
  display: block;
  font-size: 2rem;
  font-family: "Lora", serif;
}

.section {
  padding: 1rem 0 4rem;
}

.section-title {
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.feature-grid,
.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.accent-section {
  background: linear-gradient(180deg, rgba(244, 227, 199, 0.7), rgba(255, 255, 255, 0));
}

.check-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  line-height: 1.9;
  color: var(--muted);
}

@media (max-width: 860px) {
  .nav,
  .hero-grid,
  .feature-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
