*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f8f4ef;
  --bg-alt: #efe7dd;
  --text: #2f2a24;
  --muted: #6b5f52;
  --accent: #7b4a2c;
  --accent-dark: #5b3721;
  --light: #ffffff;
  --border: #d9cdc0;
  --shadow: 0 18px 40px rgba(47, 42, 36, 0.12);
  --radius: 20px;
  --max-width: 1100px;
  --transition: 0.2s ease;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3.5rem 0;
}

.section--alt {
  background: var(--bg-alt);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 1rem;
}

.section-subtitle {
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 600px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--light);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 10px 20px rgba(123, 74, 44, 0.2);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(123, 74, 44, 0.25);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 244, 239, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--light);
}

.desktop-nav {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

.desktop-nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.mobile-nav.active {
  display: flex;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--light);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature-list,
.card-grid,
.stat-grid,
.testimonial-grid,
.faq-list,
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card--highlight {
  background: linear-gradient(135deg, rgba(123, 74, 44, 0.1), rgba(248, 244, 239, 0.9));
}

.card h3 {
  margin: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--light);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 2rem;
  color: var(--accent);
}

.testimonial {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial p {
  margin: 0;
  font-style: italic;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--light);
  border: 1px solid var(--border);
}

.service-card strong {
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--light);
  border: 1px solid var(--border);
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--light);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--light);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  display: none;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.cta-panel {
  background: var(--accent);
  color: var(--light);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer {
  background: #241d17;
  color: #e9ddd2;
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer a {
  color: #e9ddd2;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
  z-index: 40;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(36, 29, 23, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 50;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--light);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-content label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: var(--bg-alt);
}

.modal-content input {
  accent-color: var(--accent);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1;
  }

  .feature-list,
  .card-grid,
  .stat-grid,
  .testimonial-grid,
  .faq-list,
  .service-grid,
  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-list > *,
  .card-grid > *,
  .stat-grid > *,
  .testimonial-grid > *,
  .service-grid > *,
  .info-grid > * {
    flex: 1 1 240px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1 1 200px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    left: auto;
    right: 2rem;
    max-width: 420px;
  }
}
