* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --ink: #1c1c1c;
  --muted: #5a5a5a;
  --accent: #2f6f77;
  --accent-soft: #e1eef0;
  --paper: #ffffff;
  --sand: #efe7dd;
  --stone: #d7d0c6;
  --highlight: #ffe6b3;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background: var(--paper);
  border-bottom: 1px solid var(--stone);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 24px 18px;
  font-size: 14px;
}

.main {
  flex: 1;
}

.section {
  padding: 48px 24px;
}

.section.sand {
  background: var(--sand);
}

.section.paper {
  background: var(--paper);
}

.section.stone {
  background: var(--stone);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-image {
  flex: 1;
  min-height: 360px;
  background: #cfd8dc;
  border-radius: 18px;
  overflow: hidden;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: var(--ink);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.magazine-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.column {
  flex: 1 1 260px;
  background: var(--paper);
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.column.highlight {
  background: var(--accent-soft);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--highlight);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.feature-row {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.feature-image {
  flex: 1;
  min-height: 260px;
  background: #d9e2e6;
  border-radius: 16px;
  overflow: hidden;
}

.feature-text {
  flex: 1.1;
  min-width: 260px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--paper);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-image {
  height: 160px;
  background: #c9d4d7;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.split {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.split .panel {
  flex: 1 1 260px;
  background: var(--paper);
  padding: 22px;
  border-radius: 14px;
}

.form-wrap {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-info {
  flex: 1;
  min-width: 240px;
}

.form-panel {
  flex: 1;
  min-width: 260px;
  background: var(--paper);
  padding: 24px;
  border-radius: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--stone);
  font-size: 14px;
}

.footer {
  background: var(--paper);
  padding: 28px 24px;
  border-top: 1px solid var(--stone);
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: var(--paper);
  border: 1px solid var(--stone);
  padding: 16px;
  border-radius: 12px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  background: var(--accent-soft);
  padding: 16px;
  border-radius: 12px;
}

.image-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-strip .strip-image {
  flex: 1 1 200px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: #ccd6d8;
}

.bg-journey {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-journey-overlay {
  background: rgba(255, 255, 255, 0.9);
  padding: 28px;
  border-radius: 14px;
}

.page-title {
  font-size: 34px;
  margin: 0 0 12px;
}

.subtle {
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
