:root {
  color-scheme: light;
  --bg: #f9f7f2;
  --ink: #1e1f24;
  --muted: #5c5f66;
  --primary: #1f6f78;
  --primary-dark: #15535b;
  --accent: #d9954d;
  --panel: #ffffff;
  --soft: #f0ebe2;
  --border: #e2ded5;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(22, 30, 34, 0.08);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  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 {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 20px;
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--soft);
}

.section-tight {
  padding: 48px 0;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(249, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 80vw);
  background: var(--panel);
  padding: 90px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow);
  z-index: 30;
}

.site-nav a {
  font-weight: 600;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(22, 30, 34, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 25;
}

body.nav-open .site-nav {
  transform: translateX(0);
}

body.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
}

.hero {
  padding: 80px 0 70px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin: 10px 0 16px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--primary);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary-dark);
}

.btn.ghost {
  background: var(--panel);
  border-color: var(--border);
  color: var(--ink);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.8rem;
  color: var(--primary-dark);
}

.quote {
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  padding: 26px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
}

.testimonial {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 16px;
}

.faq-question {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  margin-top: 10px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-panel {
  background: var(--accent);
  color: #2a1f12;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-footer {
  background: #15191c;
  color: #f7f5f0;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(22, 30, 34, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}

.cookie-modal.open {
  display: flex;
}

.cookie-panel {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.toggle-btn {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--soft);
  padding: 6px 14px;
  font-weight: 600;
  cursor: pointer;
}

.toggle-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    transform: none;
    height: auto;
    width: auto;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .nav-backdrop {
    display: none;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    min-width: 320px;
  }

  .card-grid,
  .stats,
  .comparison,
  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .service-card,
  .comparison-item,
  .highlight {
    flex: 1 1 240px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
