* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1a17;
  --muted: #5d524b;
  --accent: #e07a2f;
  --accent-dark: #bf5f18;
  --cream: #f7f2ed;
  --sand: #efe3d7;
  --sage: #cdd9c2;
  --shadow: rgba(31, 26, 23, 0.1);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

header {
  padding: 24px 6vw 0;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.hero {
  margin-top: 24px;
  padding: 32px 6vw 56px;
  background: linear-gradient(135deg, rgba(239, 227, 215, 0.9), rgba(205, 217, 194, 0.55)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0;
}

.hero p {
  max-width: 560px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.ghost {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: #fff;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.light {
  background: var(--cream);
}

.section.sand {
  background: var(--sand);
}

.section.sage {
  background: var(--sage);
}

.section.split {
  gap: 32px;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0;
}

.section h3 {
  margin: 0;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 30px var(--shadow);
  font-size: 0.95rem;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 35px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.stat-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 10px 28px var(--shadow);
}

.price-table {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 12px 30px var(--shadow);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-shell {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 35px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e4d7cc;
  font-size: 1rem;
  font-family: inherit;
}

.form-row textarea {
  min-height: 110px;
  resize: vertical;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 12px 6vw;
  border-top: 1px solid #eee2d7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.footer {
  padding: 40px 6vw 56px;
  background: #181412;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f1d4b9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 30px var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 860px) {
  .hero {
    padding: 56px 6vw 80px;
  }

  .section.split {
    flex-direction: row;
    align-items: center;
  }

  .section.split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card,
  .stat,
  .price-item {
    flex: 1;
  }

  .stat-grid {
    flex-direction: row;
  }

  .price-table {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-item {
    flex-basis: calc(50% - 10px);
  }

  .step-list {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .form-shell {
    padding: 32px;
  }
}
