* {
  box-sizing: border-box;
}

:root {
  --ink: #15211b;
  --muted: #4d5a54;
  --bg: #f5f6f2;
  --accent: #2c7a5c;
  --accent-dark: #1f5a44;
  --soft: #e6ece5;
  --sand: #f1efe8;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  padding: 24px 6%;
  background: #fff;
  border-bottom: 1px solid #e1e6e1;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 6px 10px;
  background: var(--soft);
  border-radius: 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 60px 6%;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 420px;
}

.split-media {
  flex: 1 1 420px;
  border-radius: 20px;
  overflow: hidden;
  background: #cdd6cf;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}

.split-media img {
  width: 100%;
  height: 100%;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--soft);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid #d2d8d3;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary:hover {
  background: var(--soft);
}

.section-alt {
  background: var(--sand);
}

.section-dark {
  background: #1b2a22;
  color: #f5f6f2;
}

.section-dark a {
  color: #d1f0de;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e1e6e1;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-media {
  background: #d5ddd6;
  height: 170px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
}

.card-body {
  padding: 16px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: 10px;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  margin-bottom: 10px;
}

.selection-box {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e1e6e1;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cdd6cf;
  font-size: 1rem;
  width: 100%;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

footer {
  padding: 40px 6%;
  background: #fff;
  border-top: 1px solid #e1e6e1;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.notice {
  background: #fef3d9;
  color: #6a4a1b;
  padding: 12px 16px;
  border-radius: 12px;
  margin-top: 14px;
}

#cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e1e6e1;
  padding: 16px;
  display: none;
  z-index: 50;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

#cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 16px;
}

.subtle {
  color: var(--muted);
}

.stat-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.stat {
  flex: 1 1 150px;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e1e6e1;
}

.full-width-banner {
  background: #dde7df;
  padding: 36px 6%;
}

.full-width-banner p {
  max-width: 720px;
}
