* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #2b2b2b;
  background-color: #f7f3f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background-color: #fff5ef;
  border-bottom: 1px solid #eadbd3;
}

.nav .brand {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffeadb;
  font-size: 0.85rem;
  color: #7a3e2e;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: #fff;
}

.hero-text,
.hero-visual {
  flex: 1 1 320px;
  min-height: 380px;
}

.hero-text {
  padding: 64px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-visual {
  background-color: #f1e5de;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.section {
  padding: 56px 8%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.media {
  background-color: #e9d9d0;
  border-radius: 18px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.card-media {
  background-color: #f0e4dd;
  border-radius: 12px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 180px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #3a1f1c;
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.secondary {
  background: #f4d6c5;
  color: #3a1f1c;
}

.button.ghost {
  background: transparent;
  border: 1px solid #3a1f1c;
  color: #3a1f1c;
}

.highlight {
  background: #fff0e7;
  border-radius: 20px;
  padding: 32px;
}

.backdrop {
  background-color: #f2e2d8;
  background-image: url("https://images.unsplash.com/photo-1502741338009-cac2772e18bc?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #2c1a17;
}

.backdrop .overlay {
  background: rgba(255, 244, 238, 0.88);
  border-radius: 20px;
  padding: 28px;
  max-width: 820px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #eadbd3;
  flex-wrap: wrap;
}

.form-section {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px;
  border: 1px solid #d9c6bf;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.footer {
  margin-top: auto;
  background: #2d1b1a;
  color: #f4eae5;
  padding: 32px 8%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background: #fff;
  border: 1px solid #e6d3ca;
  border-radius: 16px;
  padding: 18px;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.floating-cta {
  position: fixed;
  right: 20px;
  top: 70%;
  background: #3a1f1c;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.legal-page {
  padding: 48px 8%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 280px;
}

.small-note {
  font-size: 0.9rem;
  color: #6d5a53;
}
