* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f3ee;
  --ink: #1f1b16;
  --muted: #5a4f45;
  --accent: #8b5e34;
  --accent-dark: #6f4524;
  --panel: #ffffff;
  --warm: #efe5d8;
  --cool: #e2e7ec;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw 18px;
  position: relative;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--warm);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: var(--warm);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  padding: 0 6vw 40px;
}

.hero-text {
  flex: 1 1 320px;
  background: var(--panel);
  padding: 34px;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(24, 19, 14, 0.12);
}

.hero-text h1 {
  font-size: 2.5rem;
  margin: 0 0 16px;
  line-height: 1.15;
}

.hero-text p {
  margin: 0 0 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.hero-visual {
  flex: 1 1 380px;
  position: relative;
  min-height: 380px;
  border-radius: 26px;
  overflow: hidden;
  background: #d9d2c6;
}

.hero-visual img {
  height: 100%;
}

.floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(31, 27, 22, 0.9);
  color: #fff;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 0.9rem;
}

.offset-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 6vw;
  align-items: center;
}

.offset-panel {
  flex: 1 1 320px;
  background: var(--cool);
  padding: 30px;
  border-radius: 22px;
}

.offset-panel h2 {
  margin-top: 0;
}

.offset-image {
  flex: 1 1 280px;
  position: relative;
  background: #d2d8df;
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
  transform: translateY(14px);
}

.strip {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 6vw 40px;
}

.strip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.strip-card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(31, 27, 22, 0.08);
}

.strip-card h3 {
  margin-top: 12px;
}

.strip-card .price {
  font-weight: 700;
  color: var(--accent);
}

.media-frame {
  background: #e0d7cc;
  border-radius: 16px;
  overflow: hidden;
  min-height: 160px;
}

.flow-section {
  padding: 40px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.flow-main {
  flex: 2 1 360px;
  background: var(--panel);
  padding: 28px;
  border-radius: 22px;
}

.flow-side {
  flex: 1 1 220px;
  background: var(--warm);
  padding: 22px;
  border-radius: 22px;
  transform: translateY(-18px);
}

.image-stack {
  position: relative;
  margin-top: 20px;
  height: 260px;
  background: #d7dfe4;
  border-radius: 18px;
  overflow: hidden;
}

.image-stack img {
  height: 100%;
}

.form-section {
  padding: 40px 6vw 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--panel);
  padding: 30px;
  border-radius: 22px;
}

.form-panel h2 {
  margin-top: 0;
}

.form-details {
  flex: 1 1 280px;
  background: var(--cool);
  padding: 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8cfc4;
  font-size: 1rem;
  font-family: inherit;
}

.form-message {
  min-height: 20px;
  color: var(--accent-dark);
  font-weight: 600;
}

.footer {
  margin-top: auto;
  background: #191512;
  color: #e8dfd3;
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e8dfd3;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-col {
  flex: 1 1 200px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 320px;
  background: #fff;
  color: var(--ink);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(31, 27, 22, 0.18);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-hidden {
  display: none;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 120px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(31, 27, 22, 0.2);
  z-index: 10;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.simple-hero {
  padding: 30px 6vw 10px;
}

.simple-hero h1 {
  margin-top: 0;
}

.content {
  padding: 10px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-block {
  background: var(--panel);
  padding: 22px;
  border-radius: 18px;
}

.split-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.split-list div {
  flex: 1 1 240px;
}

.notice {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .flow-side {
    transform: none;
  }

  .offset-image {
    transform: none;
  }
}
