* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1b16;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: #3b4d2f;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw 8px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 12px;
  color: #6b5d4c;
  max-width: 320px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.main {
  flex: 1;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #ece4d9;
}

.section .eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.8px;
  color: #6b5d4c;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  background: #d7c7b2;
  padding: 12px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid #3b4d2f;
  background: #3b4d2f;
  color: #f7f4ef;
  font-size: 14px;
}

.btn.secondary {
  background: transparent;
  color: #3b4d2f;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .media {
  background: #d7c7b2;
  padding: 10px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 8px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e2d7c9;
}

.card-image {
  background: #d7c7b2;
  border-radius: 6px;
  overflow: hidden;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid #3b4d2f;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight {
  font-weight: 600;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.layered {
  position: relative;
  overflow: hidden;
  background: #e7decd;
}

.layered .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.layered .layered-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(247, 244, 239, 0.85);
  padding: 24px;
  border-radius: 12px;
}

.price-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #d9cdbc;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #2a3722;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e2d7c9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: #4f4436;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cbbfad;
  font-size: 14px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #3b4d2f;
  color: #f7f4ef;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 10;
}

.footer {
  padding: 32px 6vw;
  background: #1f1b16;
  color: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f2d7b7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.legal {
  font-size: 12px;
  color: #d8c6ae;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid #d9cdbc;
  border-radius: 10px;
  padding: 16px;
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #3b4d2f;
  background: #3b4d2f;
  color: #f7f4ef;
  font-size: 13px;
}

.cookie-btn.secondary {
  background: transparent;
  color: #3b4d2f;
}

@media (min-width: 900px) {
  .hero-layout,
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .hero-text,
  .split .text {
    flex: 1;
  }

  .hero-image,
  .split .media {
    flex: 1;
  }
}
