* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Arial", sans-serif;
  color: #1d1f21;
  background: #f5f3f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: #cfc7bf;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0 10px;
  background: #f5f3f0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  padding: 4px 10px;
  background: #1d1f21;
  color: #f5f3f0;
  border-radius: 999px;
}

.hero {
  background: #e6e1db;
  padding: 60px 0 40px;
  position: relative;
}

.hero-inner {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 2.6vw, 3rem);
}

.hero-media {
  flex: 1 1 55%;
  position: relative;
  align-self: flex-start;
}

.hero-media img {
  border-radius: 18px;
  width: 100%;
  height: 420px;
}

.hero-card {
  position: absolute;
  right: -20px;
  bottom: -30px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  width: 200px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: #1d1f21;
  color: #f5f3f0;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
}

.btn-outline {
  background: transparent;
  color: #1d1f21;
  border: 1px solid #1d1f21;
  padding: 10px 18px;
  border-radius: 999px;
}

.section {
  padding: 60px 0;
  position: relative;
}

.section.asym {
  background: #ffffff;
}

.section-bg {
  position: relative;
  overflow: hidden;
  background: #1d1f21;
  color: #f5f3f0;
}

.section-bg .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-color: #2c2c2c;
}

.section-bg .section-inner {
  position: relative;
  z-index: 1;
}

.section .section-inner {
  display: flex;
  gap: 34px;
  align-items: flex-start;
}

.offset-block {
  flex: 1 1 50%;
  margin-top: -30px;
  background: #f0ebe6;
  padding: 24px;
  border-radius: 20px;
}

.offset-media {
  flex: 1 1 50%;
  align-self: flex-end;
}

.offset-media img {
  border-radius: 20px;
  height: 360px;
}

.feature-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1 1 200px;
  background: #1d1f21;
  color: #f5f3f0;
  padding: 18px;
  border-radius: 18px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
  background-color: #cfc7bf;
}

.service-card .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #8c1d1d;
}

.split-band {
  display: flex;
  gap: 28px;
  align-items: center;
  background: #1d1f21;
  color: #f5f3f0;
  padding: 40px;
  border-radius: 24px;
}

.split-band img {
  width: 45%;
  height: 260px;
  border-radius: 20px;
  background-color: #363636;
}

.split-band .band-copy {
  flex: 1 1 auto;
}

.form-panel {
  background: #ffffff;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c3bd;
}

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #8c1d1d;
  color: #f5f3f0;
  border: none;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 50;
}

.footer {
  margin-top: auto;
  background: #1d1f21;
  color: #f5f3f0;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-block {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #c9c3bd;
  padding: 16px 0;
  z-index: 40;
  display: none;
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  background: #e6e1db;
  padding: 40px 0 30px;
}

.page-hero-inner {
  display: flex;
  gap: 28px;
  align-items: center;
}

.page-hero img {
  width: 40%;
  height: 240px;
  border-radius: 20px;
  background-color: #cfc7bf;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-box {
  background: #f0ebe6;
  padding: 20px;
  border-radius: 18px;
  margin-top: 16px;
}

.service-detail {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.service-detail img {
  width: 35%;
  height: 180px;
  border-radius: 16px;
  background-color: #cfc7bf;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
}

.simple-page {
  padding: 50px 0;
}

.simple-page h1 {
  margin-bottom: 16px;
}

.simple-page p {
  margin-bottom: 12px;
}

.section-cta {
  margin-top: 20px;
}

@media (max-width: 860px) {
  .hero-inner,
  .section .section-inner,
  .page-hero-inner,
  .split-band {
    flex-direction: column;
  }

  .hero-media img,
  .offset-media img {
    height: 320px;
  }

  .hero-card {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .split-band img {
    width: 100%;
  }

  .page-hero img {
    width: 100%;
  }

  .service-detail {
    flex-direction: column;
  }

  .service-detail img {
    width: 100%;
  }
}
