* {
  box-sizing: border-box;
}

:root {
  --bg: #f8f4ef;
  --ink: #2a2220;
  --muted: #6b5f59;
  --accent: #b86c7a;
  --accent-dark: #8a4a56;
  --soft: #efe7df;
  --sand: #f1ded1;
  --rose: #f6dbe0;
  --mint: #e6f1ee;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  display: block;
}

header {
  background: #fff;
  border-bottom: 1px solid #eadfd6;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6%;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  background: var(--mint);
  color: #2d4b45;
  padding: 6px 10px;
  border-radius: 14px;
  font-size: 0.85rem;
}

.hero {
  background-image: url("https://images.pexels.com/photos/8490221/pexels-photo-8490221.jpeg");
  background-size: cover;
  background-position: center;
  padding: 90px 6% 80px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 244, 239, 0.86);
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
}

.hero-text p {
  max-width: 560px;
}

.hero-image {
  flex: 1 1 320px;
}

.image-frame {
  background: var(--soft);
  padding: 10px;
  border-radius: 20px;
}

.image-frame img {
  width: 100%;
  height: 320px;
  border-radius: 14px;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.section {
  padding: 70px 6%;
}

.section.alt {
  background: #fff;
}

.section.soft {
  background: var(--sand);
}

.section.story {
  background-image: url("https://images.pexels.com/photos/4841513/pexels-photo-4841513.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #2a2220;
}

.section.story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 244, 239, 0.92);
}

.section-inner {
  position: relative;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.section-text {
  flex: 1 1 300px;
}

.section-media {
  flex: 1 1 280px;
}

.section-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
}

.pill-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pill {
  padding: 8px 14px;
  background: var(--rose);
  border-radius: 18px;
  font-size: 0.9rem;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin: 18px 0;
  color: var(--muted);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--rose);
  padding: 26px;
  border-radius: 22px;
}

.form-wrap {
  background: #fff;
  padding: 30px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d9cfc6;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

footer {
  background: #1f1c1b;
  color: #f3efe9;
  padding: 50px 6%;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-cols a {
  color: #f3efe9;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #d6cbc1;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.legal-hero {
  background: var(--mint);
  padding: 50px 6%;
}

.simple-page {
  padding: 50px 6%;
}

.simple-page h2 {
  margin-top: 26px;
}

@media (max-width: 820px) {
  .hero-text h1 {
    font-size: 2.1rem;
  }
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
