* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c1f22;
  --muted: #5b646b;
  --sand: #f2f0eb;
  --stone: #e4e1da;
  --clay: #c9bfae;
  --pine: #2f5d50;
  --water: #2c6a8f;
  --accent: #c96b3c;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a.btn,
button.btn {
  background: var(--water);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
}

a.btn.secondary,
button.btn.secondary {
  background: var(--ink);
}

a.btn.light,
button.btn.light {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--clay);
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

header {
  padding: 28px 6vw 18px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  max-width: 380px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--stone);
}

main {
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding: 0 6vw 80px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-media {
  flex: 1 1 320px;
  min-width: 280px;
  background: var(--stone);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.split-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero {
  padding: 24px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 24px 40px rgba(16, 24, 40, 0.08);
}

.hero h1 {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.15;
  margin: 0;
}

.hero p {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
}

.tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tagline span {
  background: var(--stone);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 200px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
}

.card .card-media {
  background: var(--clay);
}

.card .card-media img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.card .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-item {
  padding: 14px 16px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-item span {
  font-weight: 700;
}

.highlight {
  background: var(--pine);
  color: var(--white);
  padding: 24px;
  border-radius: 22px;
}

.highlight a {
  color: var(--white);
  text-decoration: underline;
}

.bg-channel {
  background-image: url("https://images.unsplash.com/photo-1538474705339-e87de81450e8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 36px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bg-channel .overlay {
  background: rgba(22, 32, 36, 0.65);
  padding: 22px;
  border-radius: 18px;
}

.form-shell {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-shell label {
  font-size: 13px;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--clay);
  font-size: 15px;
}

.footer {
  padding: 40px 6vw 100px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  text-decoration: underline;
}

.footer .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  border-radius: 999px;
  padding: 10px;
  box-shadow: 0 16px 30px rgba(16, 24, 40, 0.2);
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.18);
  display: none;
  gap: 12px;
  flex-direction: column;
  border: 1px solid var(--stone);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-hero {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--stone);
}

.simple-hero img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

@media (max-width: 880px) {
  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
