* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e2a26;
  --muted: #52605c;
  --surface: #f6f5f0;
  --accent: #2f7a62;
  --accent-dark: #1e5c4a;
  --sand: #efe7d6;
  --slate: #e5ece8;
  --sun: #ffd36a;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}

.site-header {
  padding: 24px 6vw 0;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ad-disclosure {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav-toggle {
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.nav-links.is-hidden {
  display: none;
}

.hero {
  margin: 28px 6vw 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-panel {
  background: var(--slate);
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  background: var(--sun);
  opacity: 0.4;
  border-radius: 50%;
}

.hero-media {
  background: #d2e2da;
  border-radius: 24px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 360px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 54px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.soft {
  background: var(--sand);
}

.section.dark {
  background: #1d2e2a;
  color: #f7f5ee;
}

.section-title {
  font-size: 2rem;
  max-width: 600px;
}

.section-intro {
  max-width: 520px;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-panel {
  flex: 1;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-panel.offset {
  margin-left: 8vw;
  background: var(--slate);
}

.image-card {
  background: #d2ded8;
  border-radius: 20px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 260px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.media {
  background: #eef3f1;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 16px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  color: var(--ink);
}

.callout {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #f0f4f2;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ccd6d1;
  font-size: 1rem;
}

.inline-cta {
  font-weight: 600;
}

.footer {
  background: #15221f;
  color: #e9efe9;
  padding: 36px 6vw;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: #c6d0cb;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.full-bleed {
  background: #1d2e2a;
  color: #f7f5ee;
  border-radius: 26px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  background: #fff;
  padding: 14px;
  border-radius: 14px;
}

.background-panel {
  background: #d8e3dc;
  border-radius: 22px;
  padding: 20px;
}

.legal-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-content h2 {
  font-size: 1.5rem;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-panel {
    flex: 1.1;
  }

  .hero-media {
    flex: 0.9;
  }

  .split-row {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .two-column {
    flex-direction: row;
  }

  .form-wrap {
    max-width: 520px;
  }
}
