* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b2228;
  --muted: #55616c;
  --sand: #f4f1ec;
  --mist: #e6ecef;
  --pine: #2f5d50;
  --sun: #d9b44a;
  --stone: #cfd6d4;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: var(--mist);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 24px 0;
}

.topbar-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: var(--sun);
  color: #2c2210;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  background-color: #2b333a;
  background: url("https://images.unsplash.com/photo-1509395176047-4a66953fd231?w=1400&q=80") center/cover no-repeat;
  border-radius: 24px;
  padding: 70px 60px;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 70px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(9, 14, 18, 0.6), rgba(9, 14, 18, 0.1));
  border-radius: 24px;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #f7f5f1;
  max-width: 520px;
}

.hero-card {
  position: absolute;
  right: 50px;
  top: -40px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  padding: 22px 24px;
  border-radius: 18px;
  max-width: 280px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--pine);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #ffffff;
  color: var(--pine);
  border: 1px solid var(--pine);
}

.section {
  padding: 60px 0;
}

.split {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  background: var(--mist);
  border-radius: 18px;
  padding: 12px;
}

.offset-left {
  margin-left: -40px;
}

.offset-right {
  margin-right: -40px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--sand);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  width: 100%;
  height: 160px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--pine);
}

.highlight {
  background-color: #2b333a;
  background: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80") center/cover no-repeat;
  border-radius: 24px;
  padding: 50px;
  color: #ffffff;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: rgba(20, 27, 34, 0.55);
}

.highlight-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.form-shell {
  background: var(--stone);
  border-radius: 24px;
  padding: 32px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-size: 14px;
  color: var(--muted);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c7d0d4;
  font-size: 15px;
  background: #ffffff;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cta-row {
  margin-top: 24px;
}

.footer {
  background: var(--ink);
  color: #f0f0f0;
  padding: 40px 0;
  margin-top: 60px;
}

.footer .footer-inner {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer small {
  color: #c9d0d5;
}

.legal-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--sun);
  color: #2c2210;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.side-note {
  background: var(--mist);
  padding: 18px;
  border-radius: 16px;
}

.legal-section {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.legal-section .main {
  flex: 2 1 320px;
}

.legal-section .aside {
  flex: 1 1 220px;
}

.inline-media {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.inline-media img {
  width: 140px;
  height: 110px;
  border-radius: 14px;
  background: var(--mist);
}

@media (max-width: 900px) {
  .hero {
    padding: 50px 30px;
  }

  .hero-card {
    position: static;
    margin-top: 20px;
  }

  .offset-left,
  .offset-right {
    margin: 0;
  }
}
