:root {
  --bg: #f6f7f4;
  --ink: #1f2a24;
  --muted: #4c5b54;
  --accent: #1f6f5c;
  --accent-2: #d6e5d8;
  --sand: #efe7de;
  --olive: #b7c9b6;
  --white: #ffffff;
  --shadow: 0 14px 30px rgba(31, 42, 36, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-weight: 600;
  cursor: pointer;
}

a.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

header {
  padding: 28px 0 18px;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--olive);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--white);
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 50px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1;
}

.section-card {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.section-muted {
  background: var(--sand);
  border-radius: 28px;
  padding: 48px;
}

.section-accent {
  background: var(--accent-2);
  border-radius: 28px;
  padding: 48px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.inline-item {
  flex: 1 1 180px;
  padding: 16px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--accent-2);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5c9;
  background: var(--white);
  font-size: 14px;
  width: 100%;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  margin: 30px 0;
  background: var(--ink);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.sticky-cta a.button {
  background: var(--white);
  color: var(--ink);
}

footer {
  padding: 40px 0 60px;
  border-top: 1px solid #d7ded6;
  margin-top: 40px;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bg-1 { background-color: #bccdbe; }
.bg-2 { background-color: #c7d3c1; }
.bg-3 { background-color: #c4d2c2; }
.bg-4 { background-color: #b8c8bb; }
.bg-5 { background-color: #b7c3b6; }
.bg-6 { background-color: #c5d1c3; }
.bg-7 { background-color: #bfcbbd; }
.bg-8 { background-color: #c9d4c6; }
.bg-9 { background-color: #c4d0c2; }
.bg-10 { background-color: #c2cec1; }
.bg-11 { background-color: #c1cec0; }
.bg-12 { background-color: #b9c7b7; }
.bg-13 { background-color: #bdc9bb; }
.bg-14 { background-color: #c6d1c4; }
.bg-15 { background-color: #c0cbbf; }

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 18px 20px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

@media (max-width: 960px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
