* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background: #f7f3ee;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: #2a4b3c;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 20px 10px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: #f3e7d6;
  border-radius: 999px;
  color: #5b3f2d;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: stretch;
  background: #efe4d6;
  border-radius: 24px;
  overflow: hidden;
}

.hero-copy {
  flex: 1;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1;
  min-height: 360px;
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d6c1a8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #2a4b3c;
  background: #2a4b3c;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.btn.secondary {
  background: transparent;
  color: #2a4b3c;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
  background: #e7d9c7;
  border-radius: 18px;
  overflow: hidden;
}

.magazine-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

.card .media {
  background: #e9ddcf;
  border-radius: 12px;
  overflow: hidden;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7f5e43;
}

.price {
  font-size: 18px;
  font-weight: 600;
  color: #2a4b3c;
}

.highlight {
  background: #fff2e0;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  background: #2a4b3c;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
}

.form-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9b9a8;
  font-size: 14px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: #5a4a3a;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-hero {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  background: #efe4d6;
  border-radius: 18px;
  padding: 18px;
}

.legal-hero .media {
  flex: 0 0 180px;
  background: #e1d4c3;
  border-radius: 12px;
  overflow: hidden;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.banner-image {
  background-image: url("https://images.unsplash.com/photo-1512621776951-a57141f2eefd?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #cbb49c;
  border-radius: 20px;
  min-height: 220px;
}

.note-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: #f8ead6;
  border-radius: 20px;
  padding: 18px;
}

.note-strip div {
  flex: 1 1 220px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 16px;
}

.service-row span {
  flex: 1 1 180px;
}

.thanks {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .legal-hero {
    flex-direction: column;
  }

  .floating-cta {
    left: 20px;
    right: 20px;
    text-align: center;
  }
}
