*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --bg-alt: #efe9e0;
  --text: #1a1a1a;
  --muted: #5a554d;
  --accent: #7b2f2f;
  --accent-dark: #5b1f1f;
  --light: #ffffff;
  --shadow: 0 18px 40px rgba(26, 26, 26, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3rem 0;
}

.section--alt {
  background: var(--bg-alt);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.headline {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  border: 2px solid var(--accent);
  transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 239, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 0.9rem;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-weight: 600;
}

.menu-toggle {
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  background: var(--light);
  font-weight: 600;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-menu__panel {
  background: var(--light);
  width: min(320px, 86%);
  height: 100%;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu.open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-weight: 600;
}

.mobile-menu .btn {
  width: fit-content;
}

.hero {
  padding: 4rem 0;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--light);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.icon-card {
  flex: 1 1 200px;
  background: var(--light);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.08);
}

.icon-card svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.08);
}

.service-grid,
.testimonial-grid,
.stats-grid,
.faq-grid,
.team-grid,
.comparison-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.service-card {
  flex: 1 1 240px;
  background: var(--light);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(26, 26, 26, 0.08);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.stat-card {
  flex: 1 1 200px;
  background: var(--light);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
}

.stat-card strong {
  font-size: 1.8rem;
  display: block;
  color: var(--accent);
}

.testimonial-card {
  flex: 1 1 260px;
  background: var(--light);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 12px 24px rgba(26, 26, 26, 0.08);
}

.quote {
  font-size: 1.05rem;
  margin: 0 0 1rem;
}

.faq-item {
  flex: 1 1 260px;
  background: var(--light);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(26, 26, 26, 0.08);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  max-height: 200px;
  margin-top: 0.75rem;
}

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comparison-row {
  background: var(--light);
  padding: 1rem 1.2rem;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.callout {
  background: var(--accent);
  color: var(--light);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.callout .btn {
  background: var(--light);
  color: var(--accent);
  border-color: var(--light);
}

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  background: var(--bg-alt);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 92%);
  background: var(--light);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 40;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--light);
  width: min(520px, 92%);
  margin: 6vh auto;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--bg-alt);
  padding: 0.75rem 1rem;
  border-radius: 12px;
}

.page-hero {
  padding: 3.5rem 0 2rem;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.address-block {
  background: var(--light);
  padding: 1.4rem;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.08);
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .info-grid {
    flex-direction: row;
  }

  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
