* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1f24;
  background: #f5f2ef;
  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 28px 80px;
}

.header {
  padding: 28px 28px 10px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: #f3d7c6;
  border-radius: 14px;
  color: #5a3f2d;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-bottom-color: #1c1f24;
}

.hero {
  position: relative;
  margin: 20px 0 60px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
}

.hero .hero-media {
  position: absolute;
  inset: 0;
  background: #d5d2cc;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.88);
  margin: 40px;
  border-radius: 20px;
}

.hero h1 {
  font-size: 38px;
  margin: 0 0 12px;
}

.hero p {
  margin: 0 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 26px;
  background: #1c1f24;
  color: #fff;
  font-size: 14px;
}

.btn.secondary {
  background: #ffffff;
  color: #1c1f24;
  border: 1px solid #1c1f24;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #7e6e66;
  color: #7e6e66;
}

.btn:hover {
  transform: translateY(-1px);
}

.section {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: 26px;
  margin: 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background: #cfd8d2;
  position: relative;
}

.offset-block {
  padding: 28px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  margin-left: 40px;
}

.offset-block.left {
  margin-left: 0;
  margin-right: 40px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .card-media {
  min-height: 160px;
  background: #d6d1c9;
}

.card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
}

.quote {
  padding: 26px;
  background: #efe8e2;
  border-radius: 18px;
  font-style: italic;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 22px;
  background: #1c1f24;
  color: #fff;
}

.form-wrap {
  padding: 26px;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

select,
input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7c2bd;
  font-size: 14px;
  font-family: inherit;
}

.footer {
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid #d2cbc6;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: #6b5e57;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 24px;
  background: #7b5c52;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.muted {
  color: #6b5e57;
}

.page-hero {
  margin: 30px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero .headline {
  font-size: 32px;
  margin: 0;
}

.stacked-panels {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel.alt {
  background: #e6dfd8;
}

.panel .panel-media {
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: #cfd2d6;
}

@media (max-width: 760px) {
  .hero {
    min-height: 360px;
  }

  .hero .hero-content {
    margin: 20px;
    padding: 26px;
  }

  .offset-block,
  .offset-block.left {
    margin: 0;
  }

  .sticky-cta {
    right: 14px;
    left: 14px;
    text-align: center;
  }
}
