* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: #1f2a2e;
  background: #f6f3ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  background: #efe9e1;
  padding: 20px 0;
  border-bottom: 1px solid #d7cec2;
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  align-items: center;
}

.ad-label {
  background: #1f2a2e;
  color: #f6f3ee;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.3px;
}

.hero {
  padding: 70px 0 40px;
  position: relative;
}

.hero-layout {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.2;
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  position: relative;
  top: 18px;
  box-shadow: 0 20px 40px rgba(31, 42, 46, 0.08);
}

.hero-copy h1 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-copy p {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.hero-media {
  flex: 0.9;
  position: relative;
}

.image-frame {
  background: #d7cec2;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame.offset {
  position: relative;
  top: -20px;
  box-shadow: 0 18px 36px rgba(31, 42, 46, 0.15);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  background: #1f2a2e;
  color: #f6f3ee;
  padding: 12px 20px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.alt {
  background: transparent;
  color: #1f2a2e;
  border: 1px solid #1f2a2e;
}

.section {
  padding: 60px 0;
  position: relative;
}

.section.alt {
  background: #ffffff;
}

.section.highlight {
  background: #efe9e1;
}

.section.image-backdrop {
  background-image: url("https://images.unsplash.com/photo-1497215842964-222b430dc094?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #e0d8cc;
}

.split {
  display: flex;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1.1;
}

.split .media {
  flex: 0.9;
}

.offset-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 16px;
  position: relative;
  top: -16px;
  box-shadow: 0 18px 38px rgba(31, 42, 46, 0.08);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(31, 42, 46, 0.08);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: #2b4a3f;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  border-left: 6px solid #1f2a2e;
}

.form-shell {
  background: #ffffff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(31, 42, 46, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c7bdb1;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #2b4a3f;
  color: #f6f3ee;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(31, 42, 46, 0.2);
}

.footer {
  background: #1f2a2e;
  color: #f6f3ee;
  padding: 40px 0 28px;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: #d7cec2;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  max-width: 340px;
  box-shadow: 0 16px 32px rgba(31, 42, 46, 0.18);
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 28px rgba(31, 42, 46, 0.08);
}

.note {
  background: #efe9e1;
  border-radius: 12px;
  padding: 16px;
}

.inline-link {
  text-decoration: underline;
}

.media-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #efe9e1;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.image-tile {
  background: #cfd8d2;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero-layout,
  .split {
    flex-direction: column;
  }

  .hero-copy,
  .image-frame.offset,
  .offset-card {
    top: 0;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
