* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #2b2b2b;
  background: #f6f1ec;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #9b2d1f;
  text-decoration: none;
}

header {
  padding: 28px 6vw 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.85rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav a:hover {
  border-color: #9b2d1f;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 80px;
}

.section {
  padding: 48px 6vw;
  position: relative;
}

.section.light {
  background: #fff5ea;
}

.section.dark {
  background: #2d1d17;
  color: #f7efe9;
}

.section.dark a {
  color: #f7b38a;
}

.section.layered::before {
  content: "";
  position: absolute;
  inset: 8% 6% auto auto;
  width: 160px;
  height: 160px;
  background: rgba(155, 45, 31, 0.12);
  border-radius: 24px;
  transform: rotate(12deg);
  z-index: 0;
}

.section.layered > * {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.offset-block {
  background: #fff;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(43, 43, 43, 0.12);
  transform: translateY(12px);
}

.offset-image {
  border-radius: 24px;
  overflow: hidden;
  transform: translateX(10px);
}

.overlap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.overlap .tag {
  position: absolute;
  right: 12px;
  top: -14px;
  background: #9b2d1f;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(45, 29, 23, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #9b2d1f;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta.secondary {
  background: transparent;
  color: #9b2d1f;
  border: 1px solid #9b2d1f;
}

.cta.link {
  background: none;
  color: #9b2d1f;
  padding: 0;
}

.cta-banner {
  padding: 18px 22px;
  background: #fff;
  border-left: 4px solid #9b2d1f;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(45, 29, 23, 0.16);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccb9ad;
  font-size: 1rem;
  background: #fffdfb;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 10;
  box-shadow: 0 16px 30px rgba(43, 43, 43, 0.25);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #2d1d17;
  color: #f7efe9;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
}

footer {
  padding: 36px 6vw 48px;
  background: #1f1410;
  color: #f7efe9;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #f7b38a;
}

@media (min-width: 900px) {
  header {
    padding: 32px 8vw 18px;
  }

  main {
    gap: 64px;
  }

  .section {
    padding: 64px 8vw;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .offset-block {
    max-width: 520px;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .overlap {
    flex-direction: row;
    align-items: flex-start;
  }

  .overlap img {
    width: 50%;
  }

  .form-wrap {
    max-width: 620px;
  }

  footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
