:root {
  --bg: #f8f3ee;
  --surface: #ffffff;
  --ink: #2f2622;
  --muted: #6b5c53;
  --brand: #4b3a2f;
  --accent: #a35d3a;
  --line: #e7ddd4;
  --soft: #f2e7dc;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(47, 38, 34, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, 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(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  background: var(--brand);
  color: #f7efe7;
}

.section.dark .subhead,
.section.dark .notice {
  color: #f7efe7;
}

.section.dark .panel {
  background: #f7efe7;
  color: var(--brand);
}

.tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.85rem;
}

.headline {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 12px 0;
  line-height: 1.2;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 0;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 240px;
}

.card.outline {
  border: 1px solid var(--line);
  box-shadow: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.button.light {
  background: #f7efe7;
  color: var(--brand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 243, 238, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f7efe7;
  font-weight: 700;
}

.nav-links {
  display: none;
  gap: 20px;
  align-items: center;
  font-weight: 600;
}

.menu-toggle {
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 80%);
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 40;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 30;
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 600;
}

.hero {
  padding: 64px 0 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-panel {
  background: var(--surface);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.icon-card {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1 1 220px;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-item span {
  font-weight: 600;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stat {
  flex: 1 1 180px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
  color: var(--brand);
}

.testimonial {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  border-left: 4px solid var(--accent);
  flex: 1 1 260px;
}

.quote {
  font-style: italic;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--surface);
}

.comparison-row strong {
  color: var(--brand);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-answer {
  margin-top: 12px;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.footer {
  background: #1f1916;
  color: #f0e7de;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a {
  color: #f0e7de;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--surface);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: none;
  z-index: 50;
}

.cookie-banner.is-visible {
  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.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-dialog {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: var(--soft);
}

.toggle-button {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.toggle-button[aria-pressed="true"] {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.notice {
  font-size: 0.95rem;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--soft);
  border-radius: 999px;
  font-weight: 600;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: stretch;
  }

  .split {
    flex-direction: row;
  }

  .hero-panel {
    flex: 1 1 45%;
  }
}
