* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --sand: #f6f2ed;
  --ink: #2a2622;
  --taupe: #a5886a;
  --mist: #e7ddd1;
  --clay: #c9b39a;
  --forest: #5c6d5c;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(42, 38, 34, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--sand);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--mist);
}

.nav-wrapper {
  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;
}

.brand-mark {
  width: 38px;
  height: 38px;
  background: var(--clay);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  fill: var(--ink);
}

.nav-toggle {
  background: var(--mist);
  border: none;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--white);
  padding: 1rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: absolute;
  right: 1.2rem;
  top: 4.4rem;
  min-width: 220px;
}

.nav-links a {
  font-weight: 600;
}

.nav-links.active {
  display: flex;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(92, 109, 92, 0.24);
}

.secondary-button {
  background: var(--mist);
  color: var(--ink);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.section {
  padding: 3.5rem 0;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #5d5249;
  margin-bottom: 2rem;
}

.hero {
  background: var(--white);
  padding: 4rem 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.hero-copy p {
  font-size: 1.05rem;
  color: #4c433b;
}

.hero-card {
  background: var(--mist);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.icon-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.icon-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.icon-item span {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card-highlight {
  background: var(--clay);
  color: var(--ink);
}

.statistics {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat strong {
  font-size: 1.7rem;
}

.quote-block {
  background: var(--forest);
  color: var(--white);
  padding: 2.5rem;
  border-radius: 24px;
}

.quote-block p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--mist);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.2rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
}

.accordion-content {
  padding: 0 1.4rem 1.2rem;
  display: none;
  color: #4a4037;
}

.accordion-item.active .accordion-content {
  display: block;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.badge-row.spaced {
  margin-top: 1.4rem;
}

.badge {
  background: var(--mist);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.service-row {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price {
  font-weight: 700;
  color: var(--forest);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-item {
  background: var(--mist);
  padding: 1.4rem;
  border-radius: 18px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.info-block {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 2.5rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  background: var(--white);
  padding: 1.2rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(42, 38, 34, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 40;
}

.cookie-modal.show {
  display: flex;
}

.cookie-panel {
  background: var(--white);
  border-radius: 22px;
  padding: 2rem;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--mist);
  padding: 0.9rem 1rem;
  border-radius: 14px;
}

.toggle-button {
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  font-weight: 600;
}

.toggle-button[aria-pressed="false"] {
  background: var(--clay);
  color: var(--ink);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 1.4rem;
    min-width: auto;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy,
  .hero-card {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 220px;
  }

  .statistics {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .service-table {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-row {
    flex: 1 1 calc(50% - 1rem);
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .info-block {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
