:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --ink: #26221d;
  --muted: #6f665c;
  --accent: #b8482a;
  --accent-dark: #8f361f;
  --sage: #4b6b57;
  --sand: #efe6d6;
  --line: #ded2c2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  gap: 1.2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--accent);
  color: #fff;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 60;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  background: var(--surface);
  width: min(90%, 360px);
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  margin-left: auto;
}

.mobile-menu.open .mobile-panel {
  transform: translateX(0);
}

.mobile-panel a {
  padding: 0.6rem 0;
  font-weight: 600;
  color: var(--muted);
}

.hero {
  padding: 3rem 0 2rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sand);
  color: var(--muted);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.section {
  padding: 2.6rem 0;
}

.section.alt {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card.highlight {
  background: var(--sand);
  border-color: transparent;
}

.stat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  flex: 1 1 160px;
}

.stat strong {
  font-size: 1.6rem;
  display: block;
}

.quote {
  background: var(--accent);
  color: #fff;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feature-row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-row .feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surface);
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.feature svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.comparison .column {
  flex: 1 1 220px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  background: var(--sand);
  color: var(--muted);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
}

.accordion-panel {
  padding: 0 1.2rem 1.1rem;
  color: var(--muted);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.info-block {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  color: var(--muted);
}

.site-footer {
  padding: 2rem 0;
  background: #1f1b16;
  color: #f2ede6;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #d9d0c6;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  display: none;
  gap: 1rem;
  align-items: center;
  width: min(920px, 92%);
  z-index: 80;
}

.cookie-banner.show {
  display: flex;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--surface);
  border-radius: 18px;
  width: min(560px, 92%);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--line);
}

.toggle-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.toggle-row button {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.toggle-row button[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .feature-row {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
