* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f4f0;
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --accent: #2b6d5a;
  --accent-2: #8a5d3b;
  --soft: #efe9e1;
  --card: #ffffff;
  --line: #e2ddd6;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 6vw;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 600;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  background: var(--soft);
  border-radius: 999px;
  font-size: 12px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
  padding: 64px 6vw;
  color: #ffffff;
  background-size: cover;
  background-position: center;
}

.bg-hero {
  background-image: url("https://images.pexels.com/photos/32932369/pexels-photo-32932369.jpeg");
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1517336714731-489689fd1ca8?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content {
  flex: 1 1 320px;
  background: rgba(24, 24, 24, 0.52);
  padding: 32px;
  border-radius: 20px;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: var(--accent-2);
}

.section {
  padding: 56px 6vw;
  background: var(--bg);
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  background: #161616;
  color: #ffffff;
}

.section-title {
  font-size: 28px;
  margin-bottom: 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 300px;
}

.split .media {
  flex: 1 1 280px;
}

.image-wrap {
  background: #d9d4cc;
  border-radius: 18px;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card h3 {
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  margin-bottom: 12px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 36px 6vw;
  background: #111111;
  color: #f2f2f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #cfcfcf;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 16px 6vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.badge {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.thin {
  max-width: 960px;
}

.center {
  text-align: center;
}
