:root {
  --bg: #f6f3ef;
  --text: #1c1b1a;
  --muted: #6a625b;
  --accent: #2c3e50;
  --accent-soft: #e3dad2;
  --highlight: #b08d57;
  --white: #ffffff;
  --border: #e2d8cf;
  --shadow: 0 12px 28px rgba(20, 18, 16, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "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;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.site-nav {
  display: none;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus {
  border-bottom-color: var(--highlight);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.45);
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 30;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu-inner {
  background: var(--white);
  width: min(320px, 86%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.mobile-menu-inner a {
  font-size: 1.05rem;
}

.hero {
  padding: 48px 0 32px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.2;
}

.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--accent);
}

.section {
  padding: 36px 0;
}

.section.alt {
  background: var(--white);
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.text-muted {
  color: var(--muted);
}

.feature-list,
.card-list,
.stats-list,
.testimonial-list,
.faq-list,
.process-list,
.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card,
.feature-card,
.stat-card,
.testimonial-card,
.faq-item,
.process-step,
.comparison-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-card.alt {
  background: var(--accent-soft);
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  background: transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-card strong {
  font-size: 1.6rem;
  color: var(--accent);
}

.quote-block {
  background: var(--accent);
  color: var(--white);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-question {
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
}

.faq-answer {
  color: var(--muted);
}

.footer {
  padding: 32px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 16px;
  border-radius: 16px;
  width: min(920px, 92%);
  display: none;
  z-index: 40;
  gap: 12px;
  flex-direction: column;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 20px;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 22px;
  padding: 24px;
  width: min(640px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preference-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
}

.preference-row button {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  cursor: pointer;
}

.preference-row button[disabled] {
  opacity: 0.7;
  cursor: default;
}

.info-block {
  background: var(--accent-soft);
  border-radius: 18px;
  padding: 20px;
}

.map-box {
  border: 1px dashed var(--border);
  border-radius: 18px;
  padding: 18px;
  background: var(--white);
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.comparison-card {
  background: var(--accent-soft);
}

.notice {
  border-left: 4px solid var(--highlight);
  padding-left: 12px;
}

.spacer-top {
  margin-top: 18px;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-text {
    flex: 1.1;
  }

  .hero-card {
    flex: 0.9;
  }

  .two-column {
    flex-direction: row;
  }

  .two-column > * {
    flex: 1;
  }

  .feature-list,
  .card-list,
  .stats-list,
  .testimonial-list,
  .faq-list,
  .process-list,
  .comparison-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-card,
  .card,
  .stat-card,
  .testimonial-card,
  .faq-item,
  .process-step,
  .comparison-card {
    flex: 1 1 calc(50% - 18px);
  }
}

@media (min-width: 1024px) {
  .feature-card,
  .card,
  .stat-card,
  .testimonial-card,
  .faq-item,
  .process-step,
  .comparison-card {
    flex: 1 1 calc(33.333% - 18px);
  }
}
