* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1a1a;
  --muted: #5f6368;
  --paper: #f8f6f2;
  --accent: #5b3b2e;
  --accent-soft: #e8ddd6;
  --line: #e3e0db;
  --cta: #2e4c6d;
  --cta-dark: #1f344d;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 6vw 96px;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 6vw 8px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 360px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: white;
  padding: 24px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-image {
  flex: 1 1 320px;
  min-height: 320px;
  background-color: #d6d1c9;
  position: relative;
}

.hero-image img {
  position: absolute;
  inset: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background: var(--cta);
  color: white;
  font-weight: 600;
  border: none;
}

.btn:hover {
  background: var(--cta-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--cta);
  color: var(--cta);
}

.btn-outline:hover {
  background: var(--accent-soft);
}

.inline-link {
  text-decoration: underline;
  color: var(--cta);
}

.offset-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  position: relative;
}

.offset-box {
  flex: 1 1 300px;
  background: white;
  padding: 24px;
  margin-left: clamp(0px, 4vw, 48px);
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.offset-image {
  flex: 1 1 240px;
  min-height: 260px;
  background-color: #d7d3cd;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.card-image {
  min-height: 170px;
  background-color: #dcd6ce;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.card:nth-child(2) {
  transform: translateY(18px);
}

.card:nth-child(3) {
  transform: translateY(-10px);
}

.highlight {
  background: var(--accent-soft);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.media-image {
  flex: 1 1 260px;
  min-height: 240px;
  background-color: #cfd6d9;
}

.media-text {
  flex: 1 1 320px;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: white;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-aside {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  padding: 32px 6vw 40px;
  border-top: 1px solid var(--line);
  background: white;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: white;
  border-radius: 999px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta a {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
}

.sticky-cta a:hover {
  background: #4a2e23;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 360px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.14);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
}

.cookie-accept {
  background: var(--cta);
  color: white;
}

.cookie-reject {
  background: #ececec;
  color: var(--ink);
}

.section-title {
  font-size: 1.6rem;
  margin: 0;
}

.muted {
  color: var(--muted);
}

.simple-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.split-block > div {
  flex: 1 1 280px;
}

.legal-block {
  background: white;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 32px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
  z-index: 0;
}

.background-panel > * {
  position: relative;
  z-index: 1;
}

.section-image {
  min-height: 220px;
  background-color: #d8d4ce;
  border-radius: 18px;
  overflow: hidden;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
