:root {
  --bg: #f4f3f0;
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --accent: #1f4b5c;
  --accent-2: #8c6c3a;
  --panel: #ffffff;
  --line: #d7d2c9;
  --soft: #ece7de;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--panel);
  border-right: 1px solid var(--line);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  background: var(--soft);
  padding: 8px 10px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  color: var(--ink);
  font-weight: 600;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.main {
  flex: 1;
  padding: 32px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.section {
  background: var(--panel);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
}

.section-alt {
  background: var(--soft);
}

.section-stack {
  flex-direction: column;
  align-items: flex-start;
}

.split {
  display: flex;
  gap: 22px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--panel);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.img-wrap {
  background: #d8d2c8;
  border-radius: 16px;
  overflow: hidden;
  min-width: 180px;
}

.img-tall {
  min-height: 220px;
}

.img-medium {
  min-height: 200px;
}

.img-card {
  height: 140px;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero {
  background: var(--panel);
  padding: 0;
  overflow: hidden;
}

.hero-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-bg {
  min-height: 260px;
  background-size: cover;
  background-position: center;
  flex: 1;
}

.bg-insight {
  background-image: linear-gradient(120deg, rgba(31, 75, 92, 0.9), rgba(31, 75, 92, 0.6)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-insight .btn {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

.meta-line {
  color: var(--muted);
  font-size: 14px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 460px;
}

.input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.inline-cta {
  font-weight: 700;
  color: var(--accent);
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  background: #f1ede6;
  padding: 16px;
  border-radius: 16px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 16px;
  display: none;
  gap: 14px;
  align-items: center;
  max-width: 720px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 40;
}

.small-note {
  font-size: 12px;
  color: var(--muted);
}

.legal-layout {
  background: var(--panel);
  border-radius: 20px;
  padding: 28px;
  line-height: 1.6;
}

.list {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.center {
  align-self: center;
}

.wide {
  width: 100%;
}
