* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f6f2ee;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1c1c1c;
  text-decoration: underline;
}

header {
  padding: 24px 6%;
  background-color: #f6f2ee;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: #5a3f2b;
  max-width: 360px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.section {
  padding: 48px 6%;
}

.section.light {
  background-color: #fff8f2;
}

.section.dark {
  background-color: #f0e6dd;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  padding: 48px 6% 64px;
  background-color: #efe4da;
}

.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero-media {
  background-color: #e3d3c4;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.pill {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: #d7c4b2;
  font-size: 0.85rem;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.card-media {
  border-radius: 12px;
  overflow: hidden;
  background-color: #e6d5c6;
}

.price {
  font-weight: 700;
  color: #5a3f2b;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  border: none;
  background-color: #5a3f2b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.secondary {
  background-color: #1c1c1c;
}

.inline-cta {
  font-weight: 600;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8c7b7;
  background-color: #fffdfb;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.split-panel {
  background-color: #f8efe7;
  padding: 24px;
  border-radius: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-cta span {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background-color: #fff8f2;
  border-radius: 18px;
  padding: 16px 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

footer {
  padding: 32px 6% 64px;
  background-color: #efe4da;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-style: italic;
  color: #4b3626;
}
