:root {
  --bg: #f7f4ef;
  --bg-alt: #eef3f1;
  --text: #1a1f1c;
  --muted: #5a6a64;
  --accent: #2f7d5a;
  --accent-dark: #245e45;
  --card: #ffffff;
  --border: #d8e1dc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background-color: #dfe7e3;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 24px 0;
}

.nav__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav__ad {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}

.hero-title {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split__content,
.split__media {
  flex: 1 1 320px;
}

.image-frame {
  background: #dfe7e3;
  padding: 12px;
  border-radius: 20px;
}

.image-frame img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  flex: 1 1 220px;
}

.card img {
  border-radius: 12px;
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn--ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.inline-link {
  text-decoration: underline;
}

.list {
  padding-left: 18px;
  margin: 12px 0;
}

.form-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 48px 0 80px;
  background: #101615;
  color: #e7ece9;
}

.footer a {
  color: #e7ece9;
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__col {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 40;
}

.sticky-cta__text {
  font-size: 0.9rem;
  color: var(--muted);
}

#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px;
  display: none;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.muted {
  color: var(--muted);
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}
