* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1b1b1b;
  background-color: #f7f4ef;
  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;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  color: #5b4b3b;
  background: #efe6da;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 32px 0 56px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-image,
.image-frame {
  background-color: #d8c7b6;
  border-radius: 20px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.section {
  padding: 60px 0;
}

.section-contrast {
  background-color: #f0e6da;
}

.section-dark {
  background-color: #1f1a16;
  color: #f7f4ef;
}

.section-dark a {
  color: #f7f4ef;
}

.section-image-bg {
  background-color: #d2c3b6;
  background-image: url("https://images.pexels.com/photos/461359/pexels-photo-461359.jpeg");
  background-size: cover;
  background-position: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: #7a5d45;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 3vw, 3.3rem);
}

h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.4rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background-color: #2d241d;
  color: #f7f4ef;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background-color: #f7f4ef;
  color: #2d241d;
  border: 1px solid #2d241d;
}

.btn.text {
  background: transparent;
  color: inherit;
  padding: 0;
  border-radius: 0;
  border: none;
  font-weight: 600;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: #f0e6da;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
}

.service-price {
  font-weight: 700;
  color: #7a5d45;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.list li {
  padding-left: 22px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7a5d45;
}

.form-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccb8a6;
  font: inherit;
}

.radio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background-color: #f7f4ef;
  border-radius: 999px;
  border: 1px solid #d7c8b8;
}

.inline-cta {
  font-weight: 600;
  color: #7a5d45;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #2d241d;
  color: #f7f4ef;
  padding: 14px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta button {
  background-color: #f7f4ef;
  color: #2d241d;
  border-radius: 999px;
  padding: 6px 12px;
  border: none;
  cursor: pointer;
}

.sticky-cta .close {
  background-color: transparent;
  color: #f7f4ef;
  font-weight: 700;
  padding: 0 6px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 30;
}

.cookie-banner.visible {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.footer {
  margin-top: auto;
  background-color: #efe6da;
  padding: 32px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.legal {
  font-size: 0.85rem;
  color: #5b4b3b;
}

.two-col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 240px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero-image img {
    min-height: 260px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    bottom: 90px;
    justify-content: space-between;
  }
}
