*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1b1e1c;
  --muted: #5f6b63;
  --leaf: #2f5d46;
  --moss: #6d8a6f;
  --stone: #f3f2ee;
  --clay: #e6e1d8;
  --mist: #faf9f6;
  --sun: #d7b36c;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  padding: 24px 20px;
  background: var(--mist);
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--leaf);
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 20px;
  background: var(--mist);
}

.split--reverse {
  flex-direction: column;
}

.split--stone {
  background: var(--stone);
}

.split--clay {
  background: var(--clay);
}

.split__content,
.split__media {
  flex: 1;
}

.split__content h1,
.split__content h2 {
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.2;
}

.split__content p {
  margin: 0 0 16px;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47, 93, 70, 0.12);
  color: var(--leaf);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-art {
  min-height: 320px;
  border-radius: 24px;
  background-image: linear-gradient(120deg, rgba(27, 30, 28, 0.2), rgba(27, 30, 28, 0.4)),
    url("https://images.unsplash.com/photo-1459666644539-a9755287d6b0?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
}

.hero-art span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
  gap: 8px;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--leaf);
  color: var(--leaf);
}

.inline-link {
  text-decoration: underline;
  text-decoration-color: var(--sun);
  text-underline-offset: 4px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 14px;
  background: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-card {
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--leaf);
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 12px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: rgba(215, 179, 108, 0.2);
  border-radius: 50%;
}

.form-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d8d4ca;
  font-family: inherit;
}

.form-card button {
  border: none;
  cursor: pointer;
}

.footer {
  padding: 28px 20px 40px;
  background: var(--ink);
  color: #f7f5f1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--sun);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(27, 30, 28, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(27, 30, 28, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
}

.side-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.icon-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.icon-badge {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.icon-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--leaf);
}

@media (min-width: 900px) {
  .split,
  .split--reverse {
    flex-direction: row;
    padding: 48px 60px;
  }

  .split--reverse {
    flex-direction: row-reverse;
  }

  .hero-art {
    min-height: 420px;
  }

  .price-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 220px;
  }

  .image-stack {
    flex-direction: row;
  }

  .form-card {
    padding: 26px;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 420px;
  }
}
