.root {
  --ink: #1c1b1a;
  --muted: #5a5754;
  --sand: #f3efe9;
  --cream: #fbf8f3;
  --rose: #c18c8c;
  --deep: #2b2a28;
  --leaf: #6e7b6a;
  --accent: #b46e5a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 6vw 18px;
  background: var(--cream);
}

.header-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 6vw 40px;
}

.hero-visual {
  position: relative;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #d9cfc7;
}

.hero-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(251, 248, 243, 0.88);
  padding: 18px 22px;
  border-radius: 16px;
  max-width: 420px;
}

.hero-title {
  font-size: 34px;
  margin: 0 0 8px;
}

.hero-text {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 40px 6vw;
}

.section-title {
  font-size: 26px;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  max-width: 720px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.split-text {
  flex: 1;
}

.split-image {
  flex: 1;
  min-height: 240px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #dcd2cb;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: var(--sand);
  border-radius: 18px;
}

.card-image {
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #e3d9d2;
}

.card-title {
  font-size: 18px;
  margin: 0;
}

.card-price {
  font-weight: 600;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 24px;
  border: none;
  background: var(--deep);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--deep);
  border: 1px solid var(--deep);
}

.cta-inline {
  color: var(--accent);
  text-decoration: underline;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #efe3dd;
  font-size: 12px;
  color: var(--accent);
}

.testimonial {
  background: #f7efe8;
  padding: 16px;
  border-radius: 16px;
  font-style: italic;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: #f2e9e1;
  border-left: 4px solid var(--accent);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #ddd2c8;
  font-size: 14px;
  background: #fff;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.layered {
  position: relative;
  background: #f3e7df;
}

.layered:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 6vw;
  right: 6vw;
  height: 60px;
  background: #fff;
  border-radius: 26px;
  z-index: 0;
}

.layered .layered-content {
  position: relative;
  z-index: 1;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background: var(--sand);
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.references {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 40px 6vw 20px;
}

.page-hero h1 {
  margin-bottom: 8px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 820px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-visual {
    flex: 1.2;
    height: 520px;
  }

  .hero-content {
    flex: 1;
  }

  .split-row,
  .split-row.reverse {
    flex-direction: row;
    align-items: center;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33.333% - 12px);
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .info-grid {
    flex-direction: row;
  }
}
