* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f6f2eb;
  --ink: #1f1f1f;
  --sand: #e7ded1;
  --sage: #ccd6c6;
  --clay: #c9b2a1;
  --forest: #2b3a2f;
  --sun: #b9824a;
  --shadow: 0 18px 40px rgba(25, 25, 25, 0.12);
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: var(--sand);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 10px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: #5b5b5b;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  background: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80") center/cover no-repeat;
  border-radius: 26px;
  color: #fff;
  padding: 90px 70px;
  margin: 26px auto 40px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26, 26, 26, 0.72), rgba(26, 26, 26, 0.2));
}

.hero-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  z-index: 1;
}

.hero h1 {
  font-size: 2.9rem;
  line-height: 1.1;
  max-width: 520px;
}

.hero p {
  max-width: 400px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--sun);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
}

.split {
  display: flex;
  gap: 38px;
  align-items: center;
  margin: 60px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-media {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.section-title {
  font-size: 2rem;
  line-height: 1.2;
}

.inline-cta {
  color: var(--sun);
  font-weight: 600;
  border-bottom: 1px solid var(--sun);
  align-self: flex-start;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 calc(33% - 22px);
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 16px;
  height: 180px;
}

.card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
}

.highlight {
  background: var(--sage);
  border-radius: 26px;
  padding: 50px;
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 70px 0;
}

.backdrop {
  background: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=1400&q=80") center/cover no-repeat;
  border-radius: 26px;
  padding: 70px 50px;
  color: #fff;
  margin: 70px 0;
  position: relative;
  overflow: hidden;
}

.backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.55);
}

.backdrop-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
}

.highlight img {
  border-radius: 18px;
  width: 45%;
  height: 260px;
  background: #b9c3b1;
}

.testimonial-row {
  display: flex;
  gap: 20px;
  margin-top: 18px;
}

.testimonial {
  flex: 1;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
}

.form-wrap {
  background: var(--sand);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin: 60px 0;
}

.form-wrap form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d3c9bb;
  background: #fff;
  font-size: 1rem;
}

.form-note {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin-top: 40px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
}

.footer {
  margin-top: 70px;
  padding: 40px 0 60px;
  border-top: 1px solid #d9d0c2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: #5d5d5d;
}

.legal {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  margin: 40px 0;
}

.contact-grid {
  display: flex;
  gap: 26px;
  margin-top: 26px;
}

.contact-card {
  flex: 1;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  background: #fff;
  border-radius: 20px;
  padding: 18px 22px;
  width: min(900px, 92%);
  box-shadow: var(--shadow);
  display: none;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.hidden {
  display: none;
}

.spacer-sm {
  height: 12px;
}

@media (max-width: 900px) {
  .hero-content,
  .split,
  .highlight,
  .form-wrap,
  .contact-grid {
    flex-direction: column;
  }

  .card {
    flex: 1 1 100%;
  }

  .highlight img {
    width: 100%;
  }
}
