* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f1a1d;
  background: #f7f3f0;
  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;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 12px;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: #6b585f;
  max-width: 220px;
  text-align: right;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 0 64px;
  position: relative;
}

.hero-grid {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: #fbe9e6;
  border-radius: 20px;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 320px;
  border-radius: 26px;
  overflow: hidden;
  background-color: #f0d3cf;
  position: relative;
}

.hero-media img {
  height: 100%;
  width: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  background: #1f1a1d;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.secondary {
  background: #f7b6a4;
  color: #1f1a1d;
}

.btn.light {
  background: #fff;
  color: #1f1a1d;
  border: 1px solid #e3c4bc;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  background: #fff;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid #f0d3cf;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  padding: 58px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #e9d9d4;
  min-height: 260px;
}

.offset-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(31, 26, 29, 0.08);
  transform: translateY(-20px);
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #a0414d;
}

.highlight {
  padding: 52px 0;
  position: relative;
}

.highlight .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #f3d7d1;
  border-radius: 28px;
  padding: 36px;
}

.bg-section {
  position: relative;
  margin: 60px auto;
  border-radius: 28px;
  overflow: hidden;
  background-color: #ecd5d0;
}

.bg-media {
  position: absolute;
  inset: 0;
  background-color: #ecd5d0;
}

.bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-content {
  position: relative;
  z-index: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #1f1a1d;
  background: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 24px;
  border-radius: 22px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: #fff;
  border-radius: 18px;
  flex: 1 1 240px;
}

.form-section {
  padding: 58px 0;
}

.form-wrap {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-card {
  flex: 1 1 320px;
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 0.9rem;
  color: #5f4a52;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e3c4bc;
  font-size: 0.95rem;
  background: #fff;
}

.footer {
  margin-top: auto;
  padding: 40px 0 60px;
  background: #1f1a1d;
  color: #f7f3f0;
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer a {
  color: #f7f3f0;
}

.legal {
  font-size: 0.85rem;
  color: #d8c3c7;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #a0414d;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  width: min(320px, 90%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.two-col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.panel {
  flex: 1 1 260px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simple-hero {
  padding: 40px 0 30px;
}

.simple-hero h1 {
  font-size: 2rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  list-style: disc;
}

.notice {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e8d3d0;
}

@media (max-width: 720px) {
  .hero-grid,
  .split,
  .form-wrap,
  .footer-grid {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
