* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f4f1;
  --bg-alt: #ffffff;
  --bg-ink: #1f1d1a;
  --text: #2b2a28;
  --muted: #6b645d;
  --accent: #c25f3b;
  --accent-dark: #9b4a2d;
  --accent-soft: #f4e6df;
  --sage: #2f6b62;
  --sage-soft: #dfecea;
  --border: #e2d9cf;
  --shadow: 0 16px 36px rgba(22, 18, 14, 0.12);
}

body {
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  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;
}

.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--bg-ink);
}

.brand-badge {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.main-nav {
  display: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  color: var(--muted);
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--bg-ink);
}

.mobile-menu {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.75rem;
  font-weight: 600;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--bg-ink);
}

.hero p {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--bg-ink);
  color: #f5f1ed;
}

.section-dark p {
  color: #e4ddd6;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  color: inherit;
}

.lead {
  color: var(--muted);
  max-width: 720px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card.accent {
  background: var(--accent-soft);
  border-color: transparent;
}

.card.sage {
  background: var(--sage-soft);
  border-color: transparent;
}

.icon {
  width: 40px;
  height: 40px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin-top: 1.5rem;
}

.pill-list li {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--muted);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
}

.stat span {
  font-weight: 700;
  color: var(--bg-ink);
}

.highlight {
  background: var(--accent);
  color: #fff;
  padding: 2rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight .btn-secondary {
  border-color: #fff;
  color: #fff;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.timeline-item {
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--accent);
  background: var(--bg-alt);
  border-radius: 12px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--bg-alt);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1.4rem;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.comparison-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  background: var(--bg-alt);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-alt);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  border: none;
  background: transparent;
  font-weight: 600;
  color: var(--bg-ink);
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  color: var(--muted);
}

.banner {
  background: var(--sage);
  color: #fff;
  padding: 2rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.info-block {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 1.25rem;
  border: 1px solid var(--border);
}

.site-footer {
  background: var(--bg-ink);
  color: #f5f1ed;
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #d7d0c8;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  width: min(620px, 92%);
  display: none;
  z-index: 50;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 16, 14, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 60;
}

.cookie-modal.active {
  display: flex;
}

.cookie-panel {
  background: var(--bg-alt);
  border-radius: 24px;
  padding: 2rem;
  width: min(620px, 96%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
}

.cookie-toggle button {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-toggle button[aria-pressed="true"] {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}

.cookie-panel .btn-primary {
  align-self: flex-start;
}

@media (min-width: 768px) {
  .main-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .card-grid,
  .comparison,
  .service-table,
  .info-grid,
  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .comparison-card,
  .service-row,
  .info-block,
  .stat {
    flex: 1 1 280px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
