/* Base */
:root {
  --bg: #f7f4ef;
  --bg-alt: #ffffff;
  --text: #2a241f;
  --muted: #6a5f56;
  --brand: #b65a4a;
  --brand-dark: #914438;
  --accent: #d7b99a;
  --line: #e6ded4;
  --success: #2f7d57;
  --shadow: 0 10px 30px rgba(42, 36, 31, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section.accent {
  background: #efe4d9;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--brand);
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 12px;
}

h1 {
  font-size: 2.1rem;
}

h2 {
  font-size: 1.7rem;
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
}

.btn.primary:hover {
  background: var(--brand-dark);
}

.btn.secondary {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.btn.ghost {
  border-color: var(--line);
  color: var(--text);
  background: #fff;
}

/* Header + nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 239, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  font-weight: 600;
  color: var(--text);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  background: #fff;
  border-radius: 999px;
  font-weight: 600;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 8px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 600;
}

/* Hero */
.hero {
  padding: 70px 0 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-icons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f2e8de;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Cards */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.alt {
  background: #fff7f0;
  border: 1px solid #f1d8c0;
  box-shadow: none;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
}

.feature-item svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

/* Stats */
.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.6rem;
  color: var(--brand);
  display: block;
}

/* Testimonials */
.testimonial {
  background: #fff;
  border-left: 4px solid var(--brand);
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Process */
.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--accent);
  font-weight: 700;
}

/* Comparison */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eaf2ed;
  color: var(--success);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* Services */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
}

.price {
  font-weight: 700;
  color: var(--brand);
}

/* Contact */
.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-block {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

/* Footer */
.site-footer {
  background: #1f1915;
  color: #f8f5f1;
  padding: 36px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Cookie banner + modal */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: none;
  z-index: 40;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(24, 20, 18, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  width: min(560px, 92%);
  max-height: 80vh;
  overflow: auto;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.toggle-row:last-child {
  border-bottom: none;
}

/* Utility */
.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.mt-16 {
  margin-top: 16px;
}

.mt-18 {
  margin-top: 18px;
}

@media (min-width: 720px) {
  h1 {
    font-size: 2.6rem;
  }

  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-content,
  .two-col {
    flex-direction: row;
    align-items: center;
  }

  .card-grid,
  .stats,
  .steps,
  .comparison,
  .info-grid,
  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .step,
  .comparison-row,
  .service-card,
  .info-block,
  .testimonial {
    flex: 1 1 calc(50% - 16px);
  }

  .hero-card {
    flex: 0 0 42%;
  }
}

@media (min-width: 980px) {
  .card,
  .stat,
  .step,
  .comparison-row,
  .service-card,
  .info-block,
  .testimonial {
    flex: 1 1 calc(33% - 16px);
  }
}
