* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5%;
  background: #f0ebe4;
  border-bottom: 1px solid #e3ddd5;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: #5b4f41;
  max-width: 320px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e0d8cf;
}

.hero {
  padding: 80px 5% 60px;
  background: #efe9e0;
}

.split {
  display: flex;
  gap: 50px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1;
}

.split .media-block {
  flex: 1;
}

.hero .headline {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero .subhead {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #3e3e3e;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1c1c1c;
  background: #1c1c1c;
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: #fff;
  color: #1c1c1c;
}

.inline-link {
  color: #6b4f2a;
  text-decoration: underline;
}

section {
  padding: 70px 5%;
}

.section-muted {
  background: #f9f6f2;
}

.section-contrast {
  background: #e7dfd6;
}

.bg-image-section {
  position: relative;
  background-color: #ded4c8;
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-image-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 244, 241, 0.85);
}

.bg-image-section .split,
.bg-image-section .text-block {
  position: relative;
  z-index: 1;
}

.section-tight {
  padding: 50px 5%;
}

.img-frame {
  background: #d8cdbf;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stat-grid {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 160px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e3ddd5;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.service-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e4ded6;
}

.service-card .media-block {
  flex: 0 0 200px;
  background: #d8cdbf;
  border-radius: 12px;
  overflow: hidden;
}

.service-card .media-block img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

.service-card .price {
  font-weight: 700;
  margin-top: 8px;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e5dfd7;
  margin-top: 14px;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e1dbd2;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #d8d0c6;
  font-size: 0.95rem;
}

.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1c1c1c;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

footer {
  background: #1b1a17;
  color: #f5f2ee;
  padding: 40px 5%;
  margin-top: auto;
}

footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

footer a {
  color: #f5f2ee;
  text-decoration: underline;
}

.legal-block {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e2dbd2;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #d8d0c6;
  max-width: 320px;
  z-index: 30;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #1c1c1c;
  background: #1c1c1c;
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: #fff;
  color: #1c1c1c;
}

@media (max-width: 900px) {
  .split,
  .split.reverse,
  .service-card {
    flex-direction: column;
  }

  .service-card .media-block img {
    width: 100%;
    height: 200px;
  }

  .sticky-cta {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
}
