:root {
  --bg: #f6f4f1;
  --ink: #1b1b1d;
  --muted: #5d5a57;
  --accent: #1f4d59;
  --accent-soft: #d8e5e6;
  --warm: #f1d8c9;
  --card: #ffffff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
main { display: flex; flex-direction: column; }
.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 18px 6vw;
  background: #fff;
}
.brand { font-weight: 700; letter-spacing: 0.04em; }
.nav { display: flex; flex-wrap: wrap; gap: 14px; }
.nav a { color: var(--ink); text-decoration: none; font-size: 0.95rem; }
.ad-label {
  margin-left: auto;
  font-size: 0.85rem;
  color: #2f3d40;
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 0 6vw;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 27, 0.55);
}
.hero-content {
  position: relative;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  padding: 70px 6vw;
}
.section.alt { background: #fff; }
.section.warm { background: var(--warm); }
.section.dark { background: #1f2a2e; color: #f3f5f4; }
.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.split.reverse { flex-direction: row-reverse; }
.split .text { flex: 1 1 320px; }
.split .media { flex: 1 1 320px; }
.img-wrap {
  background: #dcd7d2;
  padding: 10px;
  border-radius: 18px;
}
.img-cover { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.card-row { display: flex; flex-wrap: wrap; gap: 20px; }
.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(16, 24, 27, 0.08);
}
.card .price { font-weight: 700; color: var(--accent); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-margin { margin-top: 18px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
}
.btn.primary { background: var(--accent); color: #fff; }
.btn.ghost { background: transparent; color: var(--accent); border-color: var(--accent); }
.inline-link { color: var(--accent); text-decoration: underline; }
.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(16, 24, 27, 0.15);
  z-index: 10;
}
.list { display: flex; flex-direction: column; gap: 10px; }
.form-block {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(16, 24, 27, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
label { font-weight: 600; }
input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d1cdc8;
  font-size: 1rem;
  font-family: inherit;
}
footer {
  padding: 50px 6vw;
  background: #121516;
  color: #d8dadd;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: #d8dadd; text-decoration: none; }
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(16, 24, 27, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 20;
}
.cookie-banner.hidden { display: none; }
.cookie-actions { display: flex; gap: 8px; }
.small { font-size: 0.9rem; color: var(--muted); }
.bg-story { background-image: url('https://images.unsplash.com/photo-1512436991641-6745cdb1723f?w=1400&q=80'); }
.bg-insight { background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80'); }
.bg-fade { background-size: cover; background-position: center; }
.page-hero {
  padding: 80px 6vw;
  color: #fff;
  background: #2a3438;
}
.table { display: flex; flex-direction: column; gap: 14px; }
.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #d6d2cd;
}
@media (max-width: 768px) {
  .ad-label { margin-left: 0; }
  .sticky-cta { right: 12px; bottom: 12px; }
}