*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f9f5ef;
  --bg-alt: #fffaf3;
  --text: #2a221c;
  --muted: #6b5b4d;
  --brand: #b5852f;
  --brand-dark: #7a531a;
  --accent: #f0d7a2;
  --border: #e3d6c2;
  --shadow: 0 16px 40px rgba(42, 34, 28, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0 1.5rem 3rem;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(249, 245, 239, 0.96);
  backdrop-filter: blur(8px);
  z-index: 20;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand-dark);
}

.menu-toggle {
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  transform: translateY(-110%);
  background: #fffaf3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 5rem 1.5rem 2rem;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow);
}

.site-nav a {
  font-size: 1.1rem;
  font-weight: 600;
}

.nav-open .site-nav {
  transform: translateY(0);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 34, 28, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.nav-open .mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

.section {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-alt {
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.section h2 {
  font-size: 1.6rem;
  color: var(--brand-dark);
}

.section p {
  color: var(--muted);
}

.hero {
  padding: 3rem 1.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(140deg, #fff6e6, #f4e4c7);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: 2.4rem;
  color: var(--brand-dark);
  line-height: 1.2;
}

.hero .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(122, 83, 26, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--brand-dark);
}

.btn-link {
  background: transparent;
  border: none;
  color: var(--brand-dark);
  text-decoration: underline;
  padding: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card h3 {
  color: var(--brand-dark);
  font-size: 1.2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: var(--brand-dark);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
}

.stat-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--brand-dark);
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial span {
  font-weight: 600;
  color: var(--brand-dark);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--brand-dark);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1rem 1.25rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.25rem;
  color: var(--muted);
}

.faq-item[aria-expanded="true"] .faq-answer {
  max-height: 200px;
  padding-bottom: 1rem;
}

.footer {
  padding: 2.5rem 1.5rem 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #fff;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(42, 34, 28, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 40;
}

.cookie-modal__content {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.cookie-option {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.tag {
  background: var(--accent);
  color: var(--brand-dark);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.toggle {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  color: var(--brand-dark);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--muted);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--border);
  font-weight: 600;
}

.price {
  color: var(--brand-dark);
}

@media (min-width: 900px) {
  main {
    padding: 0 4rem 4rem;
    gap: 3rem;
  }

  .site-header {
    padding: 1.25rem 4rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    transform: none;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 2rem;
  }

  .mobile-overlay {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero .hero-actions {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 1rem);
  }

  .stats {
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }

  .contact-details {
    flex-direction: row;
  }

  .info-block {
    flex: 1;
  }

  .table-row {
    max-width: 520px;
  }
}
