:root {
  --bg: #f7f5f2;
  --text: #1b1b1b;
  --muted: #5b5b5b;
  --brand: #2f2a25;
  --accent: #a37949;
  --accent-soft: #e9dccb;
  --border: #d9d2c8;
  --white: #ffffff;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.soft {
  background: var(--accent-soft);
}

.section.white {
  background: var(--white);
}

.section.border-top {
  border-top: 1px solid var(--border);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--muted);
}

h1, h2, h3 {
  font-weight: 600;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  border: 1px solid var(--brand);
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--brand);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  background: #3b342e;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  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: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-links {
  display: none;
  gap: 24px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 24px;
  font-size: 0.9rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.mobile-nav.open {
  display: flex;
}

.hero {
  padding: 72px 0 56px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: 12px;
  background: var(--accent-soft);
  flex-shrink: 0;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  padding: 16px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.4rem;
}

.quote {
  background: var(--brand);
  color: var(--white);
  padding: 32px;
  border-radius: 24px;
}

.quote p {
  color: #ece7df;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

.testimonial {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: var(--accent-soft);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--brand);
}

.compare {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: transparent;
  border: none;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 20px;
}

.service-price {
  font-weight: 700;
  color: var(--brand);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 20px;
}

.footer {
  background: var(--brand);
  color: var(--white);
  padding: 40px 0;
}

.footer a {
  color: #ece7df;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(27, 27, 27, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 16px;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  width: min(520px, 100%);
  box-shadow: var(--shadow);
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--accent-soft);
}

.toggle button {
  border: none;
  background: var(--brand);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

@media (min-width: 820px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  h1 {
    font-size: 2.8rem;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service-card,
  .testimonial,
  .stat {
    flex: 1 1 calc(33% - 16px);
  }

  .split {
    flex-direction: row;
  }

  .split > * {
    flex: 1;
  }

  .stat-row {
    flex-direction: row;
  }

  .compare {
    flex-direction: row;
  }

  .compare-item {
    flex: 1;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
