* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

header {
  padding: 22px 5vw;
  background: #f2eee9;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.9rem;
  color: #5a4f45;
  padding: 6px 10px;
  border: 1px solid #d5c9bc;
  border-radius: 20px;
  background: #faf7f2;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #c9bfb4;
  background: #fff;
}

.page {
  padding: 0 5vw 80px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 40px 0 60px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-media {
  flex: 1;
  border-radius: 26px;
  overflow: hidden;
  background: #e2d8cd;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 26px;
  border: 1px solid #2b2b2b;
  background: #2b2b2b;
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-secondary {
  background: #fff;
  color: #2b2b2b;
}

.split-section {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid #e2dad2;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-media {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
  background: #ded4c9;
  min-height: 280px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.metric-card {
  flex: 1 1 160px;
  padding: 18px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e2dad2;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2dad2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  height: 180px;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: #8a4b2c;
}

.highlight {
  background: #f0e7db;
  padding: 24px;
  border-radius: 22px;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  padding: 20px;
  border-radius: 22px;
  background: #fff7ee;
  border: 1px solid #e2dad2;
}

.testimonial {
  padding: 16px;
  border-left: 4px solid #8a4b2c;
  background: #fff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid #e2dad2;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c9bfb4;
  font-size: 0.95rem;
  background: #fff;
}

.form-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: #5a4f45;
}

.two-column {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 220px;
}

.background-band {
  background: #ebe2d6;
  padding: 60px 5vw;
  margin: 60px 0;
}

.band-urban {
  background-image: url("https://images.unsplash.com/photo-1523217582562-09d0def993a6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.band-urban .highlight,
.band-urban .split-content {
  background: rgba(20, 18, 16, 0.7);
  border-radius: 22px;
  padding: 24px;
}

.band-urban .inline-link,
.band-urban a {
  color: #fff;
}

.background-band .split-section {
  border-top: none;
  padding: 0;
}

.footer {
  padding: 40px 5vw 80px;
  background: #1d1a17;
  color: #f5f1eb;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer a {
  color: #f5f1eb;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #fff;
  border: 1px solid #e2dad2;
  padding: 18px;
  border-radius: 18px;
  max-width: 320px;
  display: none;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-title {
  font-size: 2.2rem;
  margin: 0 0 12px;
}

.legal-section {
  padding: 40px 0;
  border-top: 1px solid #e2dad2;
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid #e2dad2;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 960px) {
  .hero,
  .split-section {
    flex-direction: column;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .nav-links {
    display: none;
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}
