* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f4ee;
  --ink: #2b2520;
  --muted: #6b5d52;
  --brand: #8c4a2f;
  --brand-dark: #5a2f1f;
  --accent: #d9b38c;
  --card: #ffffff;
  --line: #e4ddd2;
}

body {
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 20;
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.menu-toggle {
  border: 1px solid var(--brand-dark);
  background: transparent;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.primary-nav {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--card);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.primary-nav a {
  color: var(--ink);
  font-weight: 500;
}

body.menu-open .primary-nav {
  display: flex;
  position: absolute;
  right: 4%;
  top: 4rem;
  width: min(240px, 90vw);
}

body.menu-open .menu-backdrop {
  display: block;
}

.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--brand-dark);
  background: var(--brand);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--brand-dark);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: var(--brand-dark);
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: #f0e9e0;
}

.section-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 720px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card h3 {
  font-size: 1.2rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--brand-dark);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background: var(--card);
  padding: 1.2rem 1.4rem;
  border-radius: 0.9rem;
  border-left: 4px solid var(--brand);
}

.stat strong {
  font-size: 1.6rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.quote {
  font-style: italic;
  background: var(--card);
  padding: 1.6rem;
  border-radius: 1rem;
  border: 1px dashed var(--brand);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.step span {
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--card);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--card);
  padding: 1rem;
  border-radius: 0.8rem;
  border: 1px solid var(--line);
}

.footer {
  background: var(--ink);
  color: #fefaf5;
  padding: 2.5rem 0;
}

.footer a {
  color: #fefaf5;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  width: min(960px, 92%);
  display: none;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 40;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  width: min(620px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-pills {
  margin-top: 1rem;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.pill {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f8f1e7;
  font-size: 0.9rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.muted-note {
  margin-top: 1rem;
  color: var(--muted);
}

.info-block {
  background: var(--card);
  padding: 1.3rem;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.logo-row span {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px dashed var(--brand);
  font-size: 0.9rem;
  color: var(--brand-dark);
}

@media (min-width: 720px) {
  .menu-toggle {
    display: none;
  }

  .primary-nav {
    display: flex;
    flex-direction: row;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  body.menu-open .primary-nav {
    position: static;
    width: auto;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .cards,
  .stats,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .comparison-row {
    flex: 1 1 240px;
  }

  .split,
  .contact-grid,
  .footer-grid {
    flex-direction: row;
  }

  .split > div,
  .contact-grid > div,
  .footer-grid > div {
    flex: 1;
  }

  .cookie-actions,
  .modal-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}
