* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2421;
  --muted: #5a6460;
  --accent: #1d6f52;
  --accent-soft: #e6f2ed;
  --surface: #ffffff;
  --surface-alt: #f6f4f1;
  --outline: #d9dfdb;
  --warm: #f3ebe2;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 80px;
}

header {
  padding: 24px 6vw 0;
}

.nav-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.split {
  display: flex;
  gap: 48px;
  align-items: stretch;
  padding: 0 6vw;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .visual {
  flex: 1 1 320px;
  background: var(--warm);
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.highlight {
  background: var(--accent-soft);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--outline);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section h2 {
  font-size: 2rem;
}

.section p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  border: 1px solid var(--outline);
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.card .card-image {
  height: 180px;
  background: #e9e1d8;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: var(--surface-alt);
}

.selector-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.selector {
  flex: 1 1 220px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--outline);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.selector button {
  align-self: flex-start;
}

.form-section {
  background: var(--surface-alt);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--outline);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--outline);
  font-size: 1rem;
}

footer {
  padding: 32px 6vw 48px;
  background: var(--ink);
  color: #f5f5f2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #f5f5f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--outline);
  border-radius: 18px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 15;
}

.sticky-cta button {
  background: #fff;
  color: var(--accent);
  border-radius: 999px;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
}

.sticky-cta .close-cta {
  background: transparent;
  color: #fff;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1;
}

.meta-block {
  background: var(--surface-alt);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--outline);
}

.image-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 0 6vw;
}

.image-row .image-box {
  flex: 1 1 260px;
  min-height: 220px;
  background: #dfe7e2;
  border-radius: 20px;
  overflow: hidden;
}

.bg-sage {
  background-color: #d7e2db;
}

.bg-sand {
  background-color: #e6e1d9;
}

.bg-mint {
  background-color: #dfe6dd;
}

.bg-cream {
  background-color: #efe8df;
}

.bg-olive {
  background-color: #d8e2dc;
}

.bg-latte {
  background-color: #e7e1d8;
}

.bg-soft {
  background-color: #e3e7de;
}

.bg-dust {
  background-color: #ede6dc;
}

.bg-ash {
  background-color: #e0e6dd;
}

.bg-forest {
  background-color: #e2e7dd;
}

.bg-meadow {
  background-color: #e6ebe2;
}

.bg-biscuit {
  background-color: #e8e3da;
}

.bg-cloud {
  background-color: #e1e7df;
}

.bg-moss {
  background-color: #e1e6db;
}

.bg-blush {
  background-color: #f0e7dd;
}

.bg-stone {
  background-color: #dfe5dd;
}

.bg-pearl {
  background-color: #e7e1d9;
}

.bg-haze {
  background-color: #e3e8df;
}

.narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 6vw;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-title {
  font-size: 2.6rem;
}
