* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c1b1a;
  --muted: #5a564f;
  --accent: #d06478;
  --accent-dark: #a74c5e;
  --paper: #f7f3ee;
  --leaf: #2f5e4e;
  --sand: #efe6dc;
  --mist: #f2ece8;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  white-space: nowrap;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 20px 6vw 60px;
}

.hero-media {
  position: relative;
  background: #eaded2;
  border-radius: 28px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 440px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  background: #000;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--ink);
  color: #fff;
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 620px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 280px;
  min-width: 260px;
}

.panel img {
  border-radius: 20px;
  width: 100%;
  height: 320px;
  background: #e6d9d1;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  min-width: 240px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 170px;
  border-radius: 14px;
  background: #eedad0;
}

.price-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight {
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 12px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
}

.form-block {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c9c1b8;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 999px;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.sticky-cta button {
  border: none;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
}

.sticky-cta.hidden {
  display: none;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.footer {
  padding: 40px 6vw;
  background: #1f1b19;
  color: #f8f3ef;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.cookie-actions .reject {
  background: transparent;
  color: var(--ink);
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.wide-banner {
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(120deg, #f4e4dc, #f8f0ea);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-image {
  border-radius: 18px;
  width: 100%;
  height: 280px;
  background: #eadfd6;
}

.legal-block {
  max-width: 780px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-media,
  .hero-copy {
    flex: 1 1 0;
  }
}
