* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #8c2f3a;
  --color-secondary: #d7b08a;
  --color-dark: #2b1b1f;
  --color-light: #f7f2ed;
  --color-cream: #fbf8f4;
  --color-accent: #b56d3a;
  --max-width: 1120px;
  --shadow-soft: 0 12px 30px rgba(43, 27, 31, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--color-cream);
  color: var(--color-dark);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--color-light);
}

.section-highlight {
  background: var(--color-primary);
  color: #fff;
}

.section-cream {
  background: #fff;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #5a444c;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--color-primary);
}

.site-header {
  background: #fff;
  box-shadow: 0 8px 20px rgba(43, 27, 31, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-primary);
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  position: absolute;
  top: 72px;
  right: 20px;
  box-shadow: var(--shadow-soft);
  min-width: 200px;
}

.nav-links a {
  font-weight: 600;
  color: var(--color-dark);
}

.nav-links.is-open {
  display: flex;
}

.menu-toggle {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.hero-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 12px;
  background: var(--color-light);
  color: var(--color-primary);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.stat {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--color-primary);
}

.testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag {
  padding: 8px 14px;
  background: var(--color-light);
  border-radius: 999px;
  font-size: 0.9rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.comparison-row span {
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  background: none;
  border: none;
  font-weight: 600;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-answer {
  margin-top: 12px;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.footer {
  background: #1e1316;
  color: #f9f3ee;
  padding: 48px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: #f9f3ee;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 50;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions .btn {
  width: 100%;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(30, 19, 22, 0.5);
  z-index: 60;
}

.modal.is-open {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  width: min(100%, 520px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preference {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #efe5db;
}

.toggle-btn {
  border-radius: 999px;
  border: 1px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
  padding: 6px 14px;
  font-weight: 600;
}

.toggle-btn[aria-pressed="true"] {
  background: var(--color-primary);
  color: #fff;
}

.grid-two {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.note {
  font-size: 0.95rem;
  color: #5a444c;
}

.mt-lg {
  margin-top: 24px;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split .panel {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .cookie-actions .btn {
    width: auto;
  }

  .grid-two {
    flex-direction: row;
  }

  .grid-two > * {
    flex: 1;
  }

  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 960px) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: none;
    padding: 0;
    box-shadow: none;
    min-width: auto;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero h1 {
    font-size: 3rem;
  }
}
