:root {
  --bg: #f7f4ef;
  --bg-alt: #efe9df;
  --text: #1f1b16;
  --muted: #5f564b;
  --accent: #8a6f3d;
  --accent-dark: #6b5226;
  --line: #d9cfc3;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.site-nav {
  display: none;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus {
  border-bottom-color: var(--accent);
}

.menu-toggle {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 12px 0 18px;
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  padding: 6px 0;
}

.mobile-nav.open {
  display: flex;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section.dark {
  background: var(--accent-dark);
  color: var(--white);
}

.section .eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--accent);
}

.section.dark .eyebrow {
  color: #f5e8cd;
}

.section h2 {
  font-size: 1.8rem;
  margin: 12px 0 16px;
}

.section p {
  color: var(--muted);
  margin-bottom: 16px;
}

.section.dark p {
  color: #f5f0e7;
}

.hero {
  padding: 80px 0 72px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.alt {
  background: #fdfbf8;
}

.card h3 {
  font-size: 1.2rem;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-panel {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat strong {
  font-size: 1.4rem;
}

.quote {
  font-size: 1.3rem;
  font-style: italic;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.testimonial {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background: #14100c;
  color: #e8e1d6;
  padding: 40px 0 28px;
}

.footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer small {
  color: #c9c0b2;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 16px;
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 30;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preference-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.preference-toggle button {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.preference-toggle button.active {
  background: var(--accent);
  color: var(--white);
}

@media (min-width: 780px) {
  .site-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .grid-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 12px);
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .stat-row {
    flex-direction: row;
  }

  .testimonial-row {
    display: flex;
    gap: 16px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
