/* Base */
:root {
  --bg: #f7f2f5;
  --ink: #1f1a1d;
  --muted: #5b4a53;
  --brand: #9a4b6f;
  --brand-dark: #7a3754;
  --accent: #d8a7b5;
  --panel: #fff7fa;
  --line: #e7d7de;
  --success: #2f7a4b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, 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: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--panel);
}

.section.deep {
  background: #f2e7ec;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--brand-dark);
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.button:hover,
.button:focus {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--brand);
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--brand-dark);
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.nav-toggle {
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--brand-dark);
}

.nav-toggle:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-links.is-open {
  display: flex;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--panel);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

/* Layout utilities */
.columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-row svg {
  width: 36px;
  height: 36px;
}

.quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--brand-dark);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.badge {
  background: var(--accent);
  color: var(--brand-dark);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panel {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.mt-24 {
  margin-top: 24px;
}

/* Services */
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price {
  font-weight: 700;
  color: var(--brand-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

/* Stats */
.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.stat-row strong {
  font-size: 1.4rem;
  color: var(--brand-dark);
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Footer */
.site-footer {
  background: #1b1418;
  color: #f8f2f5;
  padding: 48px 0 24px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-note {
  font-size: 0.85rem;
  color: #d5c4cc;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 22, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 16px;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  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;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.switch input {
  width: 42px;
  height: 24px;
}

/* Responsive */
@media (min-width: 720px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card,
  .hero-stats {
    flex: 1;
  }

  .columns {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 16px);
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-grid .card {
    flex: 1 1 calc(50% - 16px);
  }

  .split {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-row {
    flex: 1 1 calc(33% - 12px);
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1 1 0;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1 1 0;
  }
}
