:root {
  --bg: #f7f4ef;
  --panel: #fffdf9;
  --text: #1b1b18;
  --muted: #666257;
  --line: #ddd6c9;
  --accent: #5b4632;
  --accent-2: #9f7b56;
  --shadow: 0 12px 36px rgba(34, 28, 22, 0.08);
  --radius: 20px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 1rem; }
h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 239, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(91, 70, 50, 0.08);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-label {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}

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

.button.secondary {
  background: transparent;
  border-color: var(--line);
}

.hero-card,
.card {
  background: var(--panel);
  border: 1px solid rgba(91, 70, 50, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.5rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(91,70,50,0.06);
  border-bottom: 1px solid rgba(91,70,50,0.06);
}

.cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

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

.card {
  padding: 1.25rem;
}

.placeholder {
  min-height: 180px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #f1e8dd, #e8ded0);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

details {
  background: var(--panel);
  border: 1px solid rgba(91, 70, 50, 0.08);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-row {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid,
  .cards.three {
    grid-template-columns: 1fr;
  }

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