* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --ink: #1f1c1a;
  --muted: #6b625c;
  --accent: #a56a3a;
  --accent-dark: #7d4b24;
  --panel: #ffffff;
  --soft: #efe6dd;
  --highlight: #d9c6b6;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--soft);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.tagline {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-nav {
  display: none;
  gap: 18px;
  align-items: center;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--accent);
}

.menu-toggle {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-nav {
  background: var(--panel);
  border-top: 1px solid var(--soft);
  padding: 16px 0 24px;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav a {
  color: var(--muted);
  font-weight: 500;
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px 0 64px;
}

.section {
  padding: 32px 0;
}

.section.alt {
  background: var(--panel);
}

.section.soft {
  background: var(--soft);
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
}

.hero {
  background: var(--panel);
  padding: 36px 0 42px;
}

.hero .hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.card {
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(32, 25, 19, 0.06);
}

.card strong {
  font-size: 1.05rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--panel);
  padding: 14px;
  border-radius: 14px;
}

.feature-item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: var(--highlight);
  padding: 16px;
  border-radius: 14px;
}

.stat span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.testimonial {
  background: var(--panel);
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 14px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  background: var(--panel);
  padding: 16px;
  border-radius: 12px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison .compare-item {
  background: var(--panel);
  padding: 14px;
  border-radius: 12px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--panel);
  border-radius: 12px;
  padding: 14px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  color: var(--muted);
  margin-top: 10px;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-panel {
  background: var(--accent);
  color: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-panel .btn.secondary {
  border-color: #fff;
  color: #fff;
}

.footer {
  background: var(--panel);
  padding: 32px 0;
  border-top: 1px solid var(--soft);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--panel);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(32, 25, 19, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(21, 18, 16, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 30;
}

.cookie-modal .modal-content {
  background: var(--panel);
  border-radius: 16px;
  padding: 20px;
  width: min(520px, 96%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preference-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preference-item {
  background: var(--soft);
  padding: 12px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--accent-dark);
  font-weight: 600;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero .hero-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero .hero-copy {
    flex: 1.1;
  }

  .hero .hero-art {
    flex: 0.9;
  }

  .card-grid,
  .feature-list,
  .stats,
  .process-steps,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .feature-item,
  .stat,
  .step,
  .comparison .compare-item {
    flex: 1 1 240px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
