*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1b18;
  background: #f7f3ee;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #efe7dd;
}

.section.dark {
  background: #1e1b18;
  color: #f7f3ee;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #7d6a57;
}

.title {
  font-size: 28px;
  margin: 10px 0 18px;
}

.lead {
  font-size: 18px;
  margin: 0 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1e1b18;
  color: #f7f3ee;
  font-weight: 600;
  border: 1px solid #1e1b18;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn.outline {
  background: transparent;
  color: #1e1b18;
}

.btn.light {
  background: #f7f3ee;
  color: #1e1b18;
}

.btn:hover,
.btn:focus {
  background: #5d4c3b;
  color: #f7f3ee;
}

.btn.outline:hover,
.btn.outline:focus {
  background: #1e1b18;
  color: #f7f3ee;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 243, 238, 0.95);
  border-bottom: 1px solid #e0d6c9;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7d6a57;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #1e1b18;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
}

.nav-menu {
  position: fixed;
  inset: 0;
  background: rgba(30, 27, 24, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.nav-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-panel {
  background: #f7f3ee;
  height: 100%;
  width: 78%;
  max-width: 320px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}

.nav-menu.is-open .nav-panel {
  transform: translateX(0);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 1px solid #e0d6c9;
}

.nav-meta {
  margin-top: auto;
  font-size: 14px;
  color: #5d4c3b;
}

.hero {
  padding: 64px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-card {
  background: #efe7dd;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border: 1px solid #e0d6c9;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 170px;
}

.card.highlight {
  background: #1e1b18;
  color: #f7f3ee;
  border-color: transparent;
}

.card .price {
  font-size: 20px;
  font-weight: 700;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.icon-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e0d6c9;
}

.icon-block svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e0d6c9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat strong {
  font-size: 26px;
}

.quote {
  font-size: 20px;
  font-style: italic;
  margin: 0;
}

.testimonial {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border-left: 4px solid #1e1b18;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  padding: 16px;
  border-radius: 16px;
  background: #efe7dd;
  border: 1px solid #e0d6c9;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  min-height: auto;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e0d6c9;
  border-radius: 14px;
  background: #ffffff;
}

.faq-button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
}

.faq-panel {
  padding: 0 16px 16px;
  display: none;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.footer {
  background: #1e1b18;
  color: #f7f3ee;
  padding: 32px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer small {
  color: #cbbca8;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e0d6c9;
  font-size: 14px;
}

.contact-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e0d6c9;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #1e1b18;
  color: #f7f3ee;
  padding: 18px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner .btn {
  width: 100%;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(30, 27, 24, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 20px;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-content {
  background: #f7f3ee;
  border-radius: 18px;
  padding: 24px;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pref-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pref-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e0d6c9;
}

.pref-toggle {
  border: 1px solid #1e1b18;
  border-radius: 999px;
  padding: 6px 12px;
  background: transparent;
  font-weight: 600;
}

.pref-toggle[aria-pressed="true"] {
  background: #1e1b18;
  color: #f7f3ee;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
  }

  .nav-panel {
    transform: none;
    width: auto;
    max-width: none;
    padding: 0;
    height: auto;
    background: transparent;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .nav-links {
    flex-direction: row;
    gap: 18px;
  }

  .nav-links a {
    border: none;
  }

  .nav-meta {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-content > div {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .split {
    flex-direction: row;
  }

  .split > div {
    flex: 1;
  }

  .icon-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .icon-block {
    flex: 1 1 240px;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .cookie-banner .btn {
    width: auto;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
