*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f8f3ed;
  --text: #1f2b24;
  --muted: #5a6b61;
  --accent: #1e4d3a;
  --accent-light: #2d6a4f;
  --warm: #f4b942;
  --panel: #ffffff;
  --soft: #efe7dd;
  --border: #d9cfc2;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--soft);
}

.section.panel {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
  color: var(--text);
}

.muted {
  color: var(--muted);
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-toggle {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.nav-menu {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 16px 4%;
}

.nav-menu.is-open {
  display: flex;
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-menu a:hover,
.nav-menu a:focus {
  background: var(--soft);
}

.hero {
  padding: 80px 0 64px;
  background: linear-gradient(140deg, #ffffff 0%, #f3ece2 60%, #f8f3ed 100%);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--panel);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card.highlight {
  background: #fff8e7;
  border-color: #f1d49f;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split .panel {
  border-radius: 18px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  flex: 1 1 140px;
  background: var(--panel);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.footer {
  background: #1a2721;
  color: #f8f3ed;
  padding: 40px 0;
}

.footer a {
  color: #f8f3ed;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 16, 14, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 18px;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-panel {
  background: var(--panel);
  border-radius: 18px;
  padding: 24px;
  width: min(520px, 94%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--border);
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  gap: 10px;
}

.cookie-toggle button {
  background: var(--accent-light);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

.cookie-toggle button[aria-pressed="false"] {
  background: #c9d7cf;
  color: #1f2b24;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.address-block {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note {
  background: #fef5e0;
  border-left: 4px solid var(--warm);
  padding: 14px 16px;
  border-radius: 10px;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
  }

  .hero-grid,
  .split,
  .footer-grid {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-grid > * {
    flex: 1;
  }

  .split > * {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .footer-grid > * {
    flex: 1;
  }
}
