:root {
  --bg: #f9f6f2;
  --surface: #ffffff;
  --surface-alt: #f1ece6;
  --text: #2b2623;
  --muted: #6e655f;
  --accent: #b0636c;
  --accent-strong: #8e424d;
  --line: #e2d8cf;
  --success: #3b7c64;
  --shadow: 0 10px 30px rgba(43, 38, 35, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section--tight {
  padding: 32px 0;
}

.section--panel {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}

.section--alt {
  background: var(--surface-alt);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--accent-strong);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.button--ghost {
  background: transparent;
  color: var(--accent-strong);
  border-color: var(--accent-strong);
}

.button--light {
  background: #fff;
  color: var(--accent-strong);
  border-color: #fff;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 246, 242, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.nav-links {
  display: none;
  gap: 20px;
  font-weight: 600;
}

.nav-links a {
  color: var(--text);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 600;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(43, 38, 35, 0.4);
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
}

.mobile-nav__panel {
  background: var(--surface);
  width: min(280px, 80%);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav__panel a {
  font-weight: 600;
  color: var(--text);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 0.85rem;
}

.flex-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card--accent {
  background: linear-gradient(135deg, #fff, #f7eff0);
  border: none;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
}

.stat-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat strong {
  font-size: 1.4rem;
}

.progress {
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  background: var(--accent);
}

.w-92 { width: 92%; }
.w-86 { width: 86%; }
.w-78 { width: 78%; }
.w-72 { width: 72%; }
.w-45 { width: 45%; }

.quote {
  font-size: 1.1rem;
  color: var(--text);
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 12px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--line);
}

.testimonial span {
  color: var(--muted);
  font-size: 0.9rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
}

.timeline-item strong {
  min-width: 72px;
  color: var(--accent-strong);
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--line);
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
  font-size: 1.1rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--surface);
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.comparison-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-answer {
  padding: 0 18px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.footer {
  background: #221e1b;
  color: #f7f2ee;
  padding: 32px 0;
}

.footer a {
  color: #f7f2ee;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(43, 38, 35, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 40;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal__panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  gap: 12px;
}

.toggle-button {
  background: var(--line);
  border: none;
  border-radius: 999px;
  width: 54px;
  height: 28px;
  position: relative;
}

.toggle-button::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 4px;
  transition: transform 0.2s ease;
}

.toggle-button.is-on {
  background: var(--accent);
}

.toggle-button.is-on::after {
  transform: translateX(24px);
}

.notice {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 12px;
}

@media (min-width: 840px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .flex-row {
    flex-direction: row;
    align-items: stretch;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid > * {
    flex: 1 1 calc(33% - 16px);
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 calc(50% - 12px);
  }

  .stat-bar {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
