* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f23;
  background: #f7f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 8vw 8px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.06em;
}

.ad-label {
  font-size: 13px;
  color: #5b575a;
  max-width: 220px;
  text-align: right;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 8vw 48px;
}

.hero-layout {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 18px 40px rgba(36, 25, 25, 0.08);
  margin-top: 20px;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0c7a8;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
  min-height: 360px;
}

.hero-media .image-frame {
  background: #d6d0c8;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 24px 40px rgba(18, 16, 15, 0.12);
}

.floating-note {
  position: absolute;
  left: -18px;
  bottom: -18px;
  background: #fff1e6;
  padding: 16px 18px;
  border-radius: 14px;
  width: 200px;
  box-shadow: 0 16px 30px rgba(43, 26, 21, 0.15);
  font-size: 14px;
}

.section {
  padding: 48px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #ffffff;
}

.section.narrow {
  padding-top: 24px;
}

.split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(28, 20, 19, 0.08);
}

.image-block {
  flex: 1 1 300px;
  min-height: 260px;
  background: #d7d7df;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.image-block .label {
  position: absolute;
  left: 16px;
  top: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(35, 25, 25, 0.1);
}

.card .card-image {
  background: #cdd6d2;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #3d2c24;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1f1f23;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta.secondary {
  background: #f2e2d4;
  color: #1f1f23;
}

.cta.link {
  padding: 0;
  background: none;
  color: #8a4b35;
  font-weight: 600;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.quote {
  background: #fbeee4;
  padding: 20px 22px;
  border-radius: 16px;
  font-style: italic;
}

.form-shell {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 34px rgba(30, 22, 21, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9d2cd;
  font-size: 15px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 26px rgba(24, 18, 16, 0.18);
  z-index: 20;
}

.sticky-cta span {
  font-size: 13px;
}

.footer {
  margin-top: auto;
  background: #1f1f23;
  color: #f3efe9;
  padding: 32px 8vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer .disclaimer {
  font-size: 13px;
  color: #d0c8c2;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(26, 20, 18, 0.16);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.legal-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(26, 20, 18, 0.1);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 22px rgba(30, 22, 21, 0.1);
}

@media (max-width: 880px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
    max-width: none;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
