/* Base */
:root {
  --bg: #faf6f2;
  --surface: #ffffff;
  --accent: #8b4b59;
  --accent-dark: #6f3643;
  --muted: #6b5f66;
  --soft: #efe4dd;
  --highlight: #d9b9a6;
  --ink: #2a1e25;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 92%;
  max-width: 1120px;
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--soft);
}

.section.highlight {
  background: var(--highlight);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.title {
  font-size: 2rem;
  margin: 0 0 1rem;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 2px solid var(--accent);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:focus {
  outline: 3px solid rgba(139, 75, 89, 0.35);
  outline-offset: 2px;
}

/* Header & Navigation */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid #e7d9d1;
  position: sticky;
  top: 0;
  z-index: 30;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.brand small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--muted);
}

.nav-toggle {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid #ebdfd7;
  border-radius: 12px;
  position: absolute;
  right: 4%;
  top: 4.2rem;
  min-width: 220px;
  box-shadow: 0 16px 30px rgba(40, 26, 30, 0.15);
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-weight: 600;
  color: var(--ink);
}

/* Hero */
.hero {
  padding: 4.5rem 0 3rem;
}

.hero .hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-panel {
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(36, 24, 28, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Cards & lists */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #eadad1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card .icon {
  width: 44px;
  height: 44px;
}

.tag {
  display: inline-flex;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: #f1e6df;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.list strong {
  color: var(--accent-dark);
}

/* Statistics */
.stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stat-item {
  background: var(--surface);
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid #eadad1;
}

.stat-item span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-dark);
}

/* Testimonials */
.testimonial {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid #eadad1;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  border: none;
  background: transparent;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* Comparison */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  background: var(--surface);
  border: 1px solid #eadad1;
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Footer */
.site-footer {
  background: #2c1e25;
  color: #f4e9e2;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: rgba(244, 233, 226, 0.8);
}

/* Cookie banner & modal */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1f151b;
  color: #f6efe9;
  padding: 1.2rem 0;
  z-index: 40;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-actions .btn {
  border-color: #f6efe9;
  background: transparent;
  color: #f6efe9;
}

.cookie-actions .btn.primary {
  background: #f6efe9;
  color: #1f151b;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(30, 20, 25, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1.5rem;
}

.modal.open {
  display: flex;
}

.modal-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--soft);
  padding: 0.9rem 1rem;
  border-radius: 10px;
}

.toggle-btn {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
}

.toggle-btn[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

/* Utility */
.muted {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: #f4ece6;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    gap: 1.5rem;
    min-width: auto;
  }

  .hero .hero-wrap {
    flex-direction: row;
    align-items: center;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .stats {
    flex-direction: row;
  }

  .stat-item {
    flex: 1 1 0;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
