* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1b1b1b;
  background-color: #f7f4f1;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-bottom: 80px;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  flex-wrap: wrap;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  padding: 6px 10px;
  background-color: #f0d9c6;
  border-radius: 999px;
  font-size: 12px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 20px 0 10px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 1 1 340px;
  background-color: #d8c7b5;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.tagline {
  font-size: 15px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #6a4e3b;
}

.headline {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: #3f3f3f;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #2a1d14;
  color: #fdf7f2;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #2a1d14;
  color: #2a1d14;
}

.section {
  padding: 18px 0;
}

.section-title {
  font-size: 26px;
  margin-bottom: 12px;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
}

.image-frame {
  background-color: #e7dcd2;
  border-radius: 18px;
  overflow: hidden;
}

.cover-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #efe7de;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #e7dcd2;
}

.price {
  font-weight: 700;
  color: #6a4e3b;
}

.flow-band {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 34px;
  color: #fdf7f2;
}

.flow-band .section-title {
  color: #fdf7f2;
}

.statement {
  font-size: 18px;
  line-height: 1.6;
}

.accent-panel {
  background-color: #f0e4d8;
  border-left: 6px solid #6a4e3b;
  padding: 18px;
  border-radius: 12px;
}

.form-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #efe7de;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d9cfc4;
  font-size: 15px;
  background-color: #fffdfa;
}

footer {
  background-color: #1e1712;
  color: #f3e8dd;
  padding: 32px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > div {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 13px;
  line-height: 1.5;
  color: #e8d7c6;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background-color: #2a1d14;
  color: #fdf7f2;
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fef8f3;
  border-top: 1px solid #e3d6c9;
  padding: 16px;
  display: none;
  z-index: 12;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.banner-btn {
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background-color: #2a1d14;
  color: #fdf7f2;
}

.banner-btn.secondary {
  background-color: #e7dcd2;
  color: #2a1d14;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 16px 0;
}

.page-hero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  background-color: #d8c7b5;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1.6;
}

.align-right {
  text-align: right;
}

.inline-links {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background-color: #f0e4d8;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.highlight {
  background-color: #fff3e6;
  border-radius: 18px;
  padding: 18px;
}
