* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1f2a;
  --muted: #586074;
  --bg: #f6f4f1;
  --surface: #ffffff;
  --accent: #2f6b5f;
  --accent-soft: #e2efe9;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  padding-bottom: 80px;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  background: #111826;
  color: #f4f6f8;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  color: #f4f6f8;
}

.sidebar small {
  color: #c9d2e1;
}

.content {
  flex: 1;
  padding: 40px 48px 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  background: var(--surface);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.hero-text {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-media {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #dfe7ea;
  min-height: 280px;
}

.section {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.section.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.section.highlight {
  background: #f1efe9;
}

.bg-focus {
  background-color: #e7ece8;
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  color: #0f1a14;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #f7f5f2;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.image-frame {
  border-radius: 14px;
  overflow: hidden;
  background: #dfe6e4;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #e4e6ec;
  color: #232a3d;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2d7df;
  font-size: 15px;
  font-family: inherit;
}

.form-wrap button {
  align-self: flex-start;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.split-text {
  flex: 1 1 260px;
}

.split-media {
  flex: 1 1 260px;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.footer {
  background: #0f1724;
  color: #e4e9f2;
  padding: 28px;
  border-radius: 20px;
}

.footer a {
  color: #e4e9f2;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #101826;
  color: #ffffff;
  padding: 12px 18px;
  display: flex;
  justify-content: center;
  gap: 16px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: min(360px, 92vw);
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 18px;
  z-index: 30;
}

.hidden {
  display: none;
}

.legal-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.legal-hero .image-frame {
  flex: 1 1 240px;
  min-height: 200px;
}

.legal-hero .split-text {
  flex: 1 1 260px;
}
