:root {
  color-scheme: light;
  --bg: #f6f2ee;
  --bg-alt: #ffffff;
  --bg-warm: #efe7df;
  --text: #1f1a16;
  --muted: #5a524b;
  --brand: #8a4d2f;
  --brand-dark: #6b3823;
  --accent: #c58a57;
  --border: #e1d7cc;
  --shadow: 0 14px 30px rgba(27, 20, 16, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-warm {
  background: var(--bg-warm);
}

.section-highlight {
  background: var(--brand);
  color: #fff;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.logo span {
  font-size: 1.05rem;
}

.nav-links {
  position: absolute;
  top: 70px;
  right: 4%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.nav-open .nav-links {
  display: flex;
}

@media (min-width: 900px) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    border: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
    min-width: auto;
    gap: 22px;
  }

  .nav-toggle {
    display: none;
  }
}

.hero {
  padding: 72px 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--brand-dark);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--brand-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--brand-dark);
}

.btn-light {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(27, 20, 16, 0.12);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  background: var(--bg-alt);
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 500;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 22px rgba(27, 20, 16, 0.08);
}

.card h3 {
  margin: 0 0 10px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 180px;
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
}

.testimonial {
  flex: 1 1 260px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}

.testimonial blockquote {
  margin: 0 0 12px;
  font-style: italic;
}

.testimonial span {
  font-weight: 600;
  color: var(--muted);
}

.comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.comparison-card {
  flex: 1 1 230px;
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 20px;
}

.comparison-card h3 {
  margin-top: 0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.step span {
  font-weight: 700;
  color: var(--brand-dark);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-alt);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 16px;
  border: none;
  background: transparent;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-item .faq-content {
  padding: 0 16px 16px;
  color: var(--muted);
}

.footer {
  background: #18120d;
  color: #efe7df;
  padding: 40px 0;
}

.footer a {
  color: #efe7df;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-col {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  width: min(640px, 92%);
  display: none;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 12, 10, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-panel {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  width: min(640px, 92%);
  box-shadow: var(--shadow);
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}

.toggle-btn {
  border: 1px solid var(--border);
  background: var(--bg-warm);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.toggle-btn.is-active {
  background: var(--brand-dark);
  color: #fff;
  border-color: var(--brand-dark);
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.info-box {
  flex: 1 1 220px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  background: var(--bg-alt);
}

.quote-block {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.muted {
  color: var(--muted);
}
