* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1d20;
  background: #f7f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  padding: 20px 0 8px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  background: #f0d8c9;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.hero {
  padding: 32px 0 48px;
}

.section {
  padding: 54px 0;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #6b6e72;
}

.headline {
  font-size: 36px;
  line-height: 1.2;
}

.lead {
  font-size: 18px;
  color: #3c4045;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  background: #243746;
  color: #f7f7f4;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #f0d8c9;
  color: #1a1d20;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  gap: 16px;
  background: #ffffff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(36, 55, 70, 0.08);
  align-items: center;
}

.card .thumb {
  width: 110px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  background: #dbe6ea;
  flex-shrink: 0;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

.badge {
  background: #e2e9e0;
  padding: 6px 10px;
  border-radius: 999px;
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #cfd8dc;
  min-height: 260px;
}

.quote {
  background: #f0efe9;
  padding: 18px;
  border-radius: 16px;
}

.cta-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: #243746;
  color: #f7f7f4;
  border-radius: 16px;
  flex-wrap: wrap;
}

.cta-strip.spaced {
  margin-top: 18px;
}

.cta-strip a,
.cta-strip button {
  background: #f0d8c9;
  color: #1a1d20;
}

.form-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 24px rgba(26, 29, 32, 0.08);
}

label {
  font-size: 14px;
  color: #4a4f55;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5d8dc;
  font-size: 14px;
  font-family: inherit;
  background: #fbfbfb;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.section-tone {
  background: #e9eff2;
}

.footer {
  padding: 40px 0 80px;
  font-size: 14px;
  color: #4a4f55;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #243746;
  color: #f7f7f4;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta button {
  background: #f0d8c9;
  color: #1a1d20;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 12px 24px rgba(26, 29, 32, 0.15);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  border-radius: 18px;
  padding: 8px 10px;
  cursor: pointer;
  background: #243746;
  color: #f7f7f4;
}

.cookie-actions button.secondary {
  background: #e2e9e0;
  color: #1a1d20;
}

.legal-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(26, 29, 32, 0.08);
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.note {
  font-size: 13px;
  color: #6b6e72;
}

@media (max-width: 820px) {
  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .headline {
    font-size: 30px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
