:root {
  --bg: #f7f4ef;
  --bg-alt: #ffffff;
  --text: #1f1f1d;
  --muted: #5f5b55;
  --brand: #6f2f1f;
  --brand-dark: #4a1f14;
  --accent: #b37a3c;
  --line: #e5dfd6;
  --shadow: 0 10px 30px rgba(31, 31, 29, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.muted {
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(247, 244, 239, 0.96);
  border-bottom: 1px solid var(--line);
  z-index: 1000;
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.nav-links {
  display: none;
  gap: 20px;
  align-items: center;
  font-weight: 500;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--brand);
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 18px 0 24px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  font-weight: 600;
  padding: 6px 0;
}

.hero {
  padding: 56px 0 36px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--brand-dark);
}

.btn-secondary {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.btn-secondary:hover,
.btn-secondary:focus {
  transform: translateY(-1px);
}

.section {
  padding: 44px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-header {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 600;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card.alt {
  background: #fdf8f0;
  border: 1px solid var(--line);
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1e8da;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote {
  background: var(--brand);
  color: #fff;
  padding: 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #efe6d8;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.process-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-num {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-card {
  border: 1px dashed var(--accent);
  border-radius: var(--radius);
  padding: 18px;
  background: #fffaf2;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-alt);
}

.faq-item button {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.cta-banner {
  background: #1f1f1d;
  color: #fff;
  padding: 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 40px;
  background: var(--bg-alt);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 0;
  right: 0;
  display: none;
  padding: 0 16px;
  z-index: 2000;
}

.cookie-banner.active {
  display: block;
}

.cookie-card {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 31, 29, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2100;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 22px;
  width: min(520px, 94%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1e8da;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.85rem;
}

.no-scroll {
  overflow: hidden;
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid > * {
    flex: 1 1 calc(33% - 12px);
    min-width: 240px;
  }

  .stat-list {
    flex-direction: row;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 12px);
  }

  .comparison {
    flex-direction: row;
  }
}
