/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f2ee;
  --bg-alt: #ffffff;
  --text: #1e1b18;
  --muted: #5b524b;
  --accent: #7a5136;
  --accent-dark: #5b3b28;
  --line: #e3dbd3;
  --success: #2f6a4f;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-alt);
  padding: 14px 0 22px;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.mobile-menu-button {
  border: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.section {
  padding: 54px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 10px;
}

h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid var(--accent);
  color: var(--bg-alt);
  background: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  background: var(--bg-alt);
}

.card.alt {
  background: #f0e9e2;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 22px;
}

.stat {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.step span {
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 14px;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.compare-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-alt);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px;
  background: transparent;
  border: none;
  font-weight: 600;
}

.faq-answer {
  padding: 0 14px 14px;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  padding: 30px 0 50px;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  background: #efe5db;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 10px;
  width: min(900px, 94%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 30;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 22px;
  width: min(640px, 96%);
}

.modal h3 {
  margin-bottom: 10px;
}

.preference {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  margin-top: 10px;
}

.preference input {
  accent-color: var(--accent);
}

@media (min-width: 820px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 0;
  }

  .mobile-menu-button {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero > div {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .features {
    flex-direction: row;
  }

  .feature {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > div {
    flex: 1;
  }

  .process-steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .pillars {
    flex-direction: row;
  }

  .comparison {
    flex-direction: row;
  }

  .compare-row {
    flex: 1;
  }
}
