/* Base */
:root {
  --bg: #f9f6f2;
  --surface: #ffffff;
  --ink: #2e2a27;
  --muted: #6c625b;
  --accent: #b45c74;
  --accent-dark: #8e3f56;
  --sage: #c8d1c3;
  --sand: #efe6de;
  --line: #e3d8cf;
  --shadow: 0 10px 25px rgba(34, 30, 27, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  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;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--sand);
}

.section-ink {
  background: var(--ink);
  color: #fdfbf9;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.title {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  margin: 12px 0 18px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 720px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button-outline {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 0 6px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav.open {
  display: flex;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: var(--surface);
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  background: var(--sage);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cards and lists */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  flex: 1 1 240px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature svg {
  flex-shrink: 0;
  margin-top: 4px;
}

/* Stats */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 180px;
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}

/* Testimonials */
.testimonial {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 12px;
  flex: 1 1 260px;
}

/* Service cards */
.service-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 260px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

/* Comparison */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Footer */
.site-footer {
  background: #f1ebe4;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col a {
  display: block;
  color: var(--muted);
  margin-top: 8px;
}

/* Cookie banner and modal */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background: var(--surface);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner.hidden {
  display: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(34, 30, 27, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 20px;
}

.modal-backdrop.open {
  display: flex;
}

.cookie-modal {
  background: var(--surface);
  border-radius: 16px;
  padding: 22px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pref-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.pref-toggle {
  align-self: flex-start;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  padding: 6px 14px;
  background: transparent;
  color: var(--accent-dark);
  font-weight: 600;
}

.pref-toggle[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Utilities */
.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.highlight {
  background: var(--sage);
  border-radius: 18px;
  padding: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3e8ee;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
    flex-direction: row;
    gap: 22px;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1 1 0;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 860px;
    margin: 0 auto;
  }
}
