* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Arial", sans-serif;
  color: #1b1b1b;
  background-color: #f4f3f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  background: #e8e0d8;
  padding: 6px 10px;
  border-radius: 999px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 0 6vw 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  background-color: #ede6de;
  border-radius: 28px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 16px 16px auto auto;
  width: 160px;
  height: 160px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.6);
}

.hero-text {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.6rem;
  margin: 0;
}

.hero-image {
  flex: 1 1 320px;
  background-color: #d8d0c4;
  border-radius: 24px;
  overflow: hidden;
  align-self: flex-end;
  margin-left: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1b1b1b;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.light {
  background: #ffffff;
  color: #1b1b1b;
  border: 1px solid #1b1b1b;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.offset-card {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 420px;
  margin-left: auto;
}

.image-frame {
  background-color: #d7d1c6;
  border-radius: 22px;
  overflow: hidden;
}

.image-frame.narrow {
  max-width: 380px;
}

.image-frame.slim {
  max-width: 360px;
}

.highlight-band {
  background-color: #1b1b1b;
  color: #ffffff;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-title {
  font-size: 1.05rem;
  margin: 0;
}

.price {
  font-weight: 600;
}

.inline-cta {
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-width: 240px;
}

.form-section {
  background-color: #e9e4dc;
  padding: 36px;
  border-radius: 26px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-field {
  flex: 1 1 220px;
}

.form-field-wide {
  flex: 1 1 100%;
}

.form-actions {
  margin-top: 16px;
}

label {
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #b8b1a8;
  font-size: 0.95rem;
  background-color: #ffffff;
}

.footer {
  padding: 32px 6vw 48px;
  background-color: #1b1b1b;
  color: #f6f6f6;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 999;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #cfc6bc;
  border-radius: 26px;
  padding: 40px;
  color: #ffffff;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
}

@media (max-width: 900px) {
  .hero {
    padding: 28px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .sticky-cta {
    position: static;
    max-width: 100%;
  }
}
