* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #5b5f67;
  --sand: #f7f3ee;
  --forest: #1f4b3f;
  --ember: #d66b2f;
  --stone: #e2e7e5;
  --sky: #eef5ff;
  --sun: #ffedd6;
  --line: #d6dbd9;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 18px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.top-nav .brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.top-nav .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--forest);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn.secondary {
  background: #ffffff;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.cta-btn.ghost {
  background: transparent;
  color: var(--forest);
  border: 1px dashed var(--forest);
}

.cta-btn:focus-visible,
.link-cta:focus-visible {
  outline: 3px solid rgba(31, 75, 63, 0.4);
  outline-offset: 2px;
}

.link-cta {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
}

.hero {
  background: linear-gradient(120deg, rgba(22, 39, 34, 0.82), rgba(31, 75, 63, 0.65)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80")
      center/cover;
  color: #ffffff;
  padding: 80px 18px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero .hero-title {
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.1;
  font-weight: 700;
}

.hero .hero-subtitle {
  max-width: 620px;
  font-size: 1.05rem;
}

.hero .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}

.section {
  padding: 64px 18px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.light {
  background: var(--sand);
}

.section.sky {
  background: var(--sky);
}

.section.sun {
  background: var(--sun);
}

.section.stone {
  background: var(--stone);
}

.section .section-title {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.2;
}

.section .section-kicker {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(15, 25, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--line);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.benefit span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--forest);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.bundle-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bundle-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--line);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(20, 30, 25, 0.08);
}

.price-card h4 {
  font-size: 1.1rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ember);
}

.price-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--line);
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
}

.service-option input {
  accent-color: var(--forest);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-fields label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-fields input,
.form-fields textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.inline-cta {
  background: var(--forest);
  color: #ffffff;
  padding: 18px;
  border-radius: 18px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
}

.footer {
  padding: 32px 18px 80px;
  background: #0f1c18;
  color: #e6ecea;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e6ecea;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 10;
  background: rgba(15, 28, 24, 0.9);
  color: #ffffff;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta .cta-btn {
  width: 100%;
  background: var(--ember);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 28px rgba(15, 25, 20, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.simple-page {
  padding: 48px 18px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.simple-page .content-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list .service-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 900px) {
  .top-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 60px;
  }

  .hero {
    padding: 120px 60px 90px;
  }

  .section {
    padding: 90px 60px;
  }

  .hero .hero-actions {
    flex-direction: row;
    max-width: none;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .story-row {
    flex-direction: row;
    align-items: center;
  }

  .stats-row {
    flex-direction: row;
  }

  .testimonials {
    flex-direction: row;
  }

  .bundle-row {
    flex-direction: row;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .service-options {
    flex-direction: row;
  }

  .service-option {
    flex: 1;
  }

  .form-fields {
    flex-direction: row;
  }

  .form-fields .field {
    flex: 1;
  }

  .faq-list {
    flex-direction: row;
  }

  .faq-item {
    flex: 1;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    padding: 40px 60px 120px;
  }

  .sticky-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 60px;
  }

  .sticky-cta .cta-btn {
    width: auto;
  }

  .cookie-banner {
    left: auto;
    max-width: 420px;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .simple-page {
    padding: 80px 60px 120px;
  }

  .contact-grid {
    flex-direction: row;
  }

  .service-list {
    flex-direction: row;
  }
}
