/* Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e1a1a;
  background: #f8f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 0;
}

.muted {
  color: #5d5552;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #efe6e1;
  color: #5a4035;
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid #7b5a4c;
  background: #7b5a4c;
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: #6a4c40;
  border-color: #6a4c40;
  outline: none;
}

.btn-secondary {
  background: transparent;
  color: #7b5a4c;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #efe6e1;
  color: #5a4035;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  background: #f8f4f1;
  border-bottom: 1px solid #eadfd9;
  z-index: 10;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 700;
  color: #5a4035;
}

.brand span {
  font-weight: 400;
  font-size: 0.9rem;
  color: #7b5a4c;
}

.nav-links {
  display: none;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 6px;
  font-weight: 600;
  color: #3c2c26;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #eadfd9;
  background: #fff;
  color: #5a4035;
}

.menu-toggle:focus {
  outline: 2px solid #7b5a4c;
  outline-offset: 2px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0 24px;
}

.mobile-menu a {
  padding: 10px 0;
  border-bottom: 1px solid #eadfd9;
  font-weight: 600;
  color: #3c2c26;
}

.mobile-menu.active {
  display: flex;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #eadfd9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Lists */
.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #eadfd9;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-price {
  font-weight: 700;
  color: #7b5a4c;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  padding: 20px;
  border-radius: 16px;
  background: #f1e9e4;
  border: 1px solid #e3d6cf;
}

/* Footer */
footer {
  border-top: 1px solid #eadfd9;
  padding: 32px 0;
}

.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: 1px solid #eadfd9;
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(30, 26, 26, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #eadfd9;
}

/* Utility */
.spacer {
  height: 12px;
}

/* Desktop */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .testimonials {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial {
    flex: 1 1 300px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
