* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f24;
  background: #f6f4f1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: #5d5a56;
  padding: 6px 10px;
  border: 1px solid #c9c3b9;
  border-radius: 999px;
  background: #fefdfb;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 24px 0 64px;
}

.hero-text {
  flex: 1 1 320px;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 2.8vw, 3.4rem);
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
}

.hero-media .frame {
  background: #dbe5e0;
  border-radius: 22px;
  overflow: hidden;
  transform: translateY(18px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1b1f24;
  background: #1b1f24;
  color: #f6f4f1;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.secondary {
  background: transparent;
  color: #1b1f24;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: #ffffff;
}

.section.accent {
  background: #1b1f24;
  color: #f6f4f1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 300px;
}

.split .media {
  flex: 1 1 320px;
  background: #e8e0d5;
  padding: 10px;
  border-radius: 18px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #fefdfb;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .media {
  background: #dbe5e0;
  border-radius: 14px;
  overflow: hidden;
}

.offset-panel {
  background: #f0ebe4;
  padding: 24px;
  border-radius: 18px;
  transform: translateX(16px);
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  background: #dbe5e0;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9c3b9;
  font-size: 1rem;
  background: #fefdfb;
}

.footer {
  background: #121416;
  color: #f6f4f1;
  padding: 48px 0 32px;
}

.footer a {
  color: #f6f4f1;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c7c0b7;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #1b1f24;
  background: #1b1f24;
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1b1f24;
}

.spacer {
  height: 40px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1.7;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.image-strip .media {
  flex: 1 1 180px;
  background: #dbe5e0;
  border-radius: 14px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-media .frame {
    transform: none;
  }

  .offset-panel {
    transform: none;
  }

  .sticky-cta {
    position: static;
    margin: 24px auto 0;
  }
}
