* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1f1f;
  --muted: #5f5f5f;
  --accent: #8c4a2f;
  --accent-dark: #6f3822;
  --cream: #f4eee9;
  --sand: #efe5dd;
  --olive: #2f3b2f;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 20;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #eee;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand span {
  color: var(--accent);
}

.menu-toggle {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: var(--white);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 14px 0;
}

.nav-links a {
  color: var(--ink);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.nav-open .nav-links {
  display: flex;
}

.hero {
  padding: 70px 0 60px;
  background: var(--cream);
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--accent);
  color: var(--white);
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--olive);
  color: var(--white);
}

.section.dark p {
  color: #d9e2d9;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 44px;
  height: 44px;
}

.highlight-panel {
  background: var(--accent);
  color: var(--white);
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-panel p {
  color: #f7efe9;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.stat span {
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding: 12px 18px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote {
  font-style: italic;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #fff2e9;
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 12px;
  background: var(--white);
  padding: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.step strong {
  color: var(--accent);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e7dfd8;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.faq-question span {
  color: var(--accent);
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.service-card {
  border: 1px solid #eadfd7;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  background: var(--white);
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #eadfd7;
  gap: 12px;
}

.comparison-row span {
  font-weight: 600;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer {
  background: #121212;
  color: #f2f2f2;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #d7d7d7;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 30;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  width: min(560px, 95%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-button {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

@media (min-width: 860px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 22px;
    padding: 0;
  }

  .hero-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split > * {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 18px);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
  }

  .service-card {
    flex: 1 1 calc(33% - 18px);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
