/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f3ee;
  --text: #2e2a24;
  --muted: #6a635a;
  --accent: #2e3a2f;
  --accent-light: #d9c7a2;
  --highlight: #b47e55;
  --white: #ffffff;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Segoe UI", 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: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: 2px solid var(--accent);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: transparent;
  color: var(--accent);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--accent);
  color: var(--white);
}

/* Header */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #e7e0d6;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-transform: lowercase;
}

.logo svg {
  width: 28px;
  height: 28px;
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--text);
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid #d8cfc4;
  background: transparent;
  color: var(--text);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px 20px;
  background: var(--white);
  border-top: 1px solid #e7e0d6;
}

.mobile-menu a {
  font-weight: 600;
}

.mobile-menu.active {
  display: flex;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.hero h1 {
  font-size: 2.1rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Cards */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.2rem;
}

.price {
  font-weight: 700;
  color: var(--highlight);
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact */
.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Footer */
footer {
  background: #22201b;
  color: #e9e1d7;
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  list-style: none;
}

.footer-links a {
  color: #e9e1d7;
  font-weight: 600;
}

/* Cookie banner and modal */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  border-top: 1px solid #e7e0d6;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
}

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 40;
}

.cookie-modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 12px;
  padding: 22px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.toggle input {
  width: 18px;
  height: 18px;
}

/* Utility */
.muted {
  color: var(--muted);
}

.highlight {
  color: var(--highlight);
  font-weight: 600;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .hero-card {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 300px;
  }

  .contact-blocks {
    flex-direction: row;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
