* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a1f;
  --muted: #4d5b4b;
  --accent: #2f6f3e;
  --accent-dark: #245531;
  --sand: #f3efe7;
  --leaf: #d7e4cf;
  --stone: #e8e2d6;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  color: var(--accent-dark);
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  background: var(--white);
  border-bottom: 1px solid #d8d2c8;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
}

.ad-label {
  background: var(--leaf);
  color: var(--accent-dark);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--white);
}

.section.tone {
  background: var(--leaf);
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split.start {
  align-items: flex-start;
}

.panel {
  flex: 1;
}

.panel.narrow {
  flex: 0.9;
}

.panel.wide {
  flex: 1.1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 10px;
}

h1 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 18px;
}

h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

p + p {
  margin-top: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.ghost {
  background: var(--white);
  color: var(--accent);
  border: 1px solid #d7d2c7;
}

.card-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 30px rgba(28, 34, 28, 0.08);
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.offset {
  position: relative;
  background: var(--stone);
  padding: 24px;
  border-radius: 20px;
}

.offset::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 90%;
  height: 90%;
  border-radius: 20px;
  background: var(--leaf);
  z-index: -1;
}

.image-frame {
  background: #dfe5d8;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame.tall img {
  height: 420px;
}

.image-frame.wide img {
  height: 320px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.form-box {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfc8bc;
  font-size: 15px;
  width: 100%;
  background: var(--white);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row > div {
  flex: 1;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #ddd6c9;
}

.mt-18 {
  margin-top: 18px;
}

footer {
  background: #1f271f;
  color: #e5eadf;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-grid a {
  color: #d1e4d1;
}

.disclaimer {
  margin-top: 18px;
  font-size: 13px;
  color: #c9d3c2;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(28, 34, 28, 0.18);
  max-width: 360px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-box {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(28, 34, 28, 0.08);
}

.hero-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: var(--leaf);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-size: 13px;
}

@media (max-width: 900px) {
  .split,
  .form-row {
    flex-direction: column;
  }

  .image-frame.tall img,
  .image-frame.wide img {
    height: 260px;
  }

  h1 {
    font-size: 32px;
  }
}
