*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --primary: #6b4f3b;
  --primary-dark: #3b2a22;
  --accent: #d9b28c;
  --accent-soft: #f3e4d6;
  --text: #2b1f1a;
  --muted: #6f5b50;
  --bg: #fbf8f5;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(59, 42, 34, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(59, 42, 34, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--primary-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  background: var(--accent);
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  color: var(--primary-dark);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  position: absolute;
  top: 64px;
  right: 4%;
  width: min(260px, 90%);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.nav-open .nav-links {
  display: flex;
}

.nav-links a {
  font-weight: 500;
}

.nav-links .btn-link {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--white);
}

.section-soft {
  background: var(--accent-soft);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.2;
}

.hero p {
  margin: 0 0 24px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn,
.btn-secondary,
.btn-text {
  border: none;
  cursor: pointer;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 1rem;
}

.btn {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-text {
  background: transparent;
  color: var(--primary-dark);
  padding: 8px 6px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.alt {
  background: var(--accent-soft);
  box-shadow: none;
}

.card h3 {
  margin: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: var(--primary);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--white);
  padding: 18px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.stat strong {
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--white);
  padding: 22px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.testimonial span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 14px;
  background: var(--white);
}

.comparison-row strong {
  color: var(--primary-dark);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-step {
  background: var(--white);
  padding: 18px;
  border-radius: 14px;
  display: flex;
  gap: 14px;
}

.process-step span {
  font-weight: 700;
  color: var(--primary);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-answer {
  margin-top: 12px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  border-top: 1px solid rgba(59, 42, 34, 0.12);
  padding: 18px 0;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(43, 31, 26, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--accent-soft);
  border-radius: 12px;
}

.pill {
  background: var(--primary);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.toggle {
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.toggle[aria-pressed="true"] {
  background: var(--primary);
  color: var(--white);
}

.modal-close {
  align-self: flex-end;
  border: none;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.highlight {
  background: var(--primary);
  color: var(--white);
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
}

.price {
  font-weight: 700;
  color: var(--primary);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-block {
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 18px;
    width: auto;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .footer-inner {
    flex-direction: row;
  }

  .hero-grid > * {
    flex: 1;
  }

  .cards,
  .feature-list,
  .stats,
  .testimonials,
  .comparison,
  .process,
  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cards .card,
  .stats .stat,
  .testimonials .testimonial,
  .comparison .comparison-row,
  .process .process-step,
  .service-list .service-card {
    flex: 1 1 calc(50% - 16px);
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .cards .card,
  .stats .stat,
  .testimonials .testimonial,
  .service-list .service-card {
    flex: 1 1 calc(33.333% - 16px);
  }
}
