* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1e2326;
  background: #f6f2ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5%;
  background: #f1e8df;
  border-bottom: 1px solid #e2d7cd;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1,
.brand h2 {
  font-size: 20px;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: #6a5242;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links .nav-pill {
  padding: 6px 12px;
  border: 1px solid #1e2326;
  border-radius: 999px;
}

.split {
  display: flex;
  gap: 40px;
  padding: 60px 5%;
  align-items: center;
  background: #f6f2ee;
}

.split.reverse {
  flex-direction: row-reverse;
  background: #efe7de;
}

.split.tight {
  padding: 40px 5%;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-text h2 {
  font-size: 34px;
  line-height: 1.2;
}

.split-text h3 {
  font-size: 24px;
}

.split-media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.img-frame {
  background: #d8c9be;
  padding: 10px;
  border-radius: 16px;
}

.img-frame img {
  border-radius: 12px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-button {
  padding: 12px 22px;
  border-radius: 999px;
  background: #1e2326;
  color: #f6f2ee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-ghost {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1e2326;
  background: transparent;
}

.highlight-strip {
  background: #1e2326;
  color: #f6f2ee;
  padding: 26px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.backdrop-section {
  padding: 70px 5%;
  background-image: url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f2ee;
  display: flex;
  justify-content: flex-end;
}

.backdrop-inner {
  background: rgba(30, 35, 38, 0.78);
  padding: 24px;
  border-radius: 16px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight-strip p {
  max-width: 520px;
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(30, 35, 38, 0.08);
}

.card h4 {
  font-size: 20px;
}

.price-tag {
  font-weight: 600;
  color: #47382d;
}

.inline-link {
  border-bottom: 1px solid #1e2326;
  padding-bottom: 2px;
}

.section-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(30, 35, 38, 0.08);
}

.service-form label {
  font-weight: 600;
}

.service-form select,
.service-form input,
.service-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfc3b8;
  font-size: 14px;
}

.service-form button {
  padding: 12px 22px;
  border-radius: 999px;
  background: #1e2326;
  color: #f6f2ee;
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  margin: 20px 5%;
  padding: 12px 18px;
  background: #cfd8d9;
  border-radius: 999px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.footer {
  background: #1e2326;
  color: #f6f2ee;
  padding: 40px 5%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.legal-note {
  font-size: 13px;
  color: #cfc3b8;
  max-width: 780px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid #cfc3b8;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(30, 35, 38, 0.14);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #1e2326;
  background: #1e2326;
  color: #f6f2ee;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1e2326;
}

.hidden {
  display: none;
}

.legal-page {
  padding: 60px 5%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-page h2 {
  font-size: 32px;
}

.legal-page h3 {
  font-size: 20px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(30, 35, 38, 0.08);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .highlight-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    align-self: center;
  }
}
