/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding-bottom: 120px;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: #7a5f4e;
}

.title-xl {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 700;
}

.title-lg {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 700;
}

.text-lg {
  font-size: 18px;
  color: #3c332f;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f0e6dc;
  font-size: 14px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .media,
.split .content {
  flex: 1;
}

.media img {
  border-radius: 18px;
}

.hero {
  background: #e8ded4;
  padding: 48px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero .hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(33, 26, 22, 0.12);
}

.hero-visual {
  position: relative;
}

.hero-visual img:first-child {
  width: 100%;
  border-radius: 24px;
}

.hero-visual img:last-child {
  position: absolute;
  right: -10%;
  bottom: -12%;
  width: 45%;
  border-radius: 18px;
  border: 8px solid #f7f3ef;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #7a5f4e;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f1a17;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #1f1a17;
  font-weight: 600;
  background: transparent;
}

.cta-link {
  color: #7a5f4e;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 20;
  box-shadow: 0 12px 24px rgba(31, 26, 23, 0.2);
}

.banner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.floating-nav {
  position: sticky;
  top: 16px;
  z-index: 10;
  align-self: flex-start;
}

.floating-nav .banner {
  width: 220px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  background: #1f1a17;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #eadfd6;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #e7dbd1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card .price {
  font-size: 24px;
  font-weight: 700;
}

.form-card {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid #eadfd6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8c9bf;
  font-size: 15px;
  background: #fefcf9;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.layered {
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  inset: auto 0 -20px 0;
  height: 20px;
  background: linear-gradient(180deg, rgba(247, 243, 239, 0), rgba(247, 243, 239, 1));
}

.footer {
  padding: 32px 0;
  background: #1f1a17;
  color: #f7f3ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.section-dark {
  background: #1f1a17;
  color: #f7f3ef;
  padding: 48px 0;
}

.section-light {
  background: #fff;
  padding: 48px 0;
}

.image-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.callout {
  background: #f0e6dc;
  padding: 22px;
  border-radius: 16px;
}

.inline-cta {
  font-weight: 600;
  color: #1f1a17;
  border-bottom: 1px solid #7a5f4e;
}

.contact-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #eadfd6;
}

.content-columns {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 25;
  max-width: 360px;
}

.hidden {
  display: none;
}

@media (min-width: 820px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .hero .hero-wrap {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    width: 45%;
  }

  .hero-visual {
    width: 55%;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .image-row {
    flex-direction: row;
  }

  .content-columns {
    flex-direction: row;
  }

  .content-columns > div {
    flex: 1;
  }
}
