* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background: #f6f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 8px;
  gap: 16px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  background: #1c1c1c;
  color: #f6f4f0;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  align-self: center;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px 6vw 48px;
  position: relative;
}

.hero-media {
  flex: 1 1 52%;
  min-height: 320px;
  background: #d7d4cc;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-content {
  flex: 1 1 38%;
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  margin-top: 48px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #1c1c1c;
  background: #1c1c1c;
  color: #f6f4f0;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1c1c1c;
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.layered {
  overflow: hidden;
  border-radius: 28px;
  background: #e3dfd6;
}

.layered .layer-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.75;
}

.layered .layer-image img {
  width: 100%;
  height: 100%;
}

.layered .layer-content {
  position: relative;
  z-index: 1;
  padding: 32px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  max-width: 560px;
}

.split-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.split-list div {
  flex: 1 1 200px;
  background: #f5efe4;
  padding: 16px;
  border-radius: 14px;
}

.section.alt {
  background: #ffffff;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.offset-text {
  flex: 1 1 42%;
  background: #fef6e9;
  padding: 24px;
  border-radius: 20px;
  margin-left: 6%;
}

.offset-image {
  flex: 1 1 46%;
  background: #d5d2ca;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.offset-image img {
  width: 100%;
  height: 100%;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-media {
  background: #d9d5cd;
  min-height: 180px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1c1c1c;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.band-text {
  flex: 1 1 48%;
}

.band-image {
  flex: 1 1 40%;
  background: #cfd5d4;
  border-radius: 28px;
  overflow: hidden;
  min-height: 240px;
  margin-top: -40px;
}

.band-image img {
  width: 100%;
  height: 100%;
}

.quote {
  background: #1c1c1c;
  color: #f6f4f0;
  padding: 18px 20px;
  border-radius: 16px;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9c4bb;
  font-size: 14px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  background: #ffdf91;
  color: #1c1c1c;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid #1c1c1c;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.footer {
  background: #1c1c1c;
  color: #f6f4f0;
  padding: 32px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.legal {
  font-size: 12px;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.note {
  font-size: 13px;
  color: #4b4b4b;
}

.inline-link {
  text-decoration: underline;
}

.bg-sand-1 {
  background-color: #c9d0d4;
}

.bg-sand-2 {
  background-color: #d7d2c8;
}

.bg-sand-3 {
  background-color: #c7c1b5;
}

.bg-sand-4 {
  background-color: #d4d0c7;
}

.bg-sand-5 {
  background-color: #cfd7d6;
}

.bg-sand-6 {
  background-color: #d9d3c5;
}

.bg-sand-7 {
  background-color: #cbd1d8;
}

.bg-sand-8 {
  background-color: #c9cec9;
}

.bg-sand-9 {
  background-color: #d4d1c9;
}

.bg-sand-10 {
  background-color: #d2cec2;
}

@media (max-width: 900px) {
  .hero-content {
    margin-top: 0;
  }

  .offset-text {
    margin-left: 0;
  }

  .band-image {
    margin-top: 0;
  }

  .sticky-cta {
    position: static;
    margin: 0 6vw 24px;
    align-self: flex-start;
  }
}
