* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f4f1;
  --ink: #1e1e1e;
  --muted: #5b5b5b;
  --accent: #2a5a52;
  --accent-soft: #dfe7e4;
  --warm: #efe7dd;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 240px;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  font-size: 14px;
}

.cta-link {
  color: var(--accent);
  text-decoration: underline;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px 6vw 80px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.panel h1,
.panel h2,
.panel h3 {
  line-height: 1.2;
}

.hero-title {
  font-size: 40px;
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

.panel .button,
.button {
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: var(--ink);
}

.image-card {
  background: #d8d1c7;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.bg-sand {
  background-color: #d7d1c9;
}

.bg-sage {
  background-color: #cfd6cf;
}

.bg-cream {
  background-color: #d8d8d4;
}

.bg-cloud {
  background-color: #cfd1d6;
}

.bg-warm {
  background-color: #d5d0c9;
}

.bg-stone {
  background-color: #d0d4d1;
}

.image-card img {
  width: 100%;
  height: 100%;
}

.section-tint {
  background: var(--warm);
  padding: 32px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 16px;
  background: #e4e4e4;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: var(--accent-soft);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.form-shell {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d4d4d4;
  font-size: 14px;
  width: 100%;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

footer {
  padding: 40px 6vw 80px;
  background: #1f1f1f;
  color: #f7f4f1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer a {
  color: #f7f4f1;
  text-decoration: underline;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.legal {
  font-size: 13px;
  color: #d2cdc7;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--ink);
  padding: 16px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 720px;
  width: calc(100% - 40px);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-left: auto;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  font-size: 13px;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e2e2e2;
  color: var(--ink);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 14px;
  z-index: 9;
}

.page-title {
  font-size: 34px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 980px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero-title {
    font-size: 32px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
