* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --color-ink: #1f2328;
  --color-ink-soft: #4b525a;
  --color-cream: #f7f4ef;
  --color-sand: #efe7da;
  --color-moss: #5b6b58;
  --color-terracotta: #c77c5b;
  --color-ivory: #fffdf9;
  --color-border: #ded6c9;
  --shadow-soft: 0 18px 40px rgba(33, 33, 33, 0.08);
}

body {
  font-family: "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
  color: var(--color-ink);
  background: var(--color-ivory);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--color-cream);
}

.section.light {
  background: var(--color-sand);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--color-moss);
  margin-bottom: 12px;
  display: inline-block;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

p {
  color: var(--color-ink-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--color-terracotta);
  color: white;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-border);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #b46c4e;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--color-cream);
}

.button-row {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-header {
  background: var(--color-ivory);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.logo span {
  font-size: 1.1rem;
}

.menu-toggle {
  border: 1px solid var(--color-border);
  background: white;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.nav {
  display: none;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: var(--color-ivory);
  border-top: 1px solid var(--color-border);
  padding: 18px 4%;
}

.mobile-menu.is-open {
  display: flex;
}

.hero {
  padding: 72px 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: var(--color-cream);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}

.card.icon-card {
  align-items: flex-start;
}

.card img {
  width: 48px;
  height: 48px;
}

.highlight-panel {
  background: var(--color-moss);
  color: white;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat {
  padding: 18px 20px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--color-terracotta);
}

.quote {
  font-style: italic;
  font-size: 1.1rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 3px solid var(--color-terracotta);
  padding-left: 18px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step span {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-terracotta);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  background: white;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: white;
  border: none;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.service-price {
  font-weight: 600;
  color: var(--color-terracotta);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: white;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--color-ink-soft);
}

.site-footer {
  background: var(--color-ink);
  color: white;
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 18px;
  width: min(520px, 92%);
  display: none;
  box-shadow: var(--shadow-soft);
  z-index: 20;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  padding: 24px;
  width: min(560px, 96%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-soft);
}

.cookie-preferences {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 16px;
}

.cookie-toggle button {
  border: 1px solid var(--color-border);
  background: var(--color-cream);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
}

.cookie-toggle button.is-active {
  background: var(--color-moss);
  color: white;
  border-color: var(--color-moss);
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    display: block;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid .card {
    flex: 1 1 260px;
  }

  .button-row {
    flex-direction: row;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .process-steps {
    flex-direction: row;
  }

  .process-steps .step {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .contact-details {
    flex-direction: row;
  }

  .contact-details > div {
    flex: 1;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
