* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1b1b1b;
  text-decoration: underline;
}

header {
  padding: 28px 6vw 12px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border: 1px solid #1b1b1b;
  font-size: 0.8rem;
  background: #fff1d6;
}

.section {
  padding: 70px 6vw;
}

.section.narrow {
  padding: 60px 10vw;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1;
}

.hero {
  padding-top: 10px;
}

.hero-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.hero-media {
  min-height: 380px;
  border-radius: 26px;
  background-color: #e2c7aa;
  background-image: url("https://images.unsplash.com/photo-1528605248644-14dd04022da1?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.floating-note {
  background: #f1d1b5;
  padding: 18px 22px;
  border-radius: 18px;
  margin-top: 18px;
  max-width: 360px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  background: #ff7a45;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #1b1b1b;
}

.btn.light {
  background: #fff;
  color: #1b1b1b;
  border: 1px solid #1b1b1b;
}

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  background-color: #d7bfa3;
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px 20px 24px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 8px;
}

.offset-section {
  margin-top: -40px;
  background: #fff;
  border-radius: 28px;
  padding: 46px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.07);
}

.highlight {
  background: #fff1d6;
}

.list {
  padding-left: 18px;
}

.testimonials {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.quote {
  flex: 1 1 220px;
  background: #1b1b1b;
  color: #f7f4f0;
  padding: 20px 22px;
  border-radius: 18px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 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 #c9c2b8;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 20;
}

.sticky-cta .btn {
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

footer {
  padding: 50px 6vw 60px;
  background: #1b1b1b;
  color: #f5f1ea;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #d6cdc1;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  max-width: 320px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.muted {
  color: #55504a;
}

.bg-delivery {
  background-color: #d8c2b2;
  background-image: url("https://images.unsplash.com/photo-1481931098730-318b6f776db0?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-mood {
  background-color: #dac0a1;
  background-image: url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

@media (max-width: 980px) {
  .split {
    flex-direction: column;
  }

  .offset-section {
    margin-top: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
