* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.top-strip {
  background-color: #f0e9df;
  color: #3b2f2f;
  font-size: 0.85rem;
  padding: 10px 24px;
  text-align: center;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #1b1b1b;
  color: #fff;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-secondary {
  background-color: #f0e9df;
  color: #1b1b1b;
  border: 1px solid #d4c9bb;
}

.btn:active {
  transform: scale(0.98);
}

.inline-link {
  color: #6b4b3e;
  text-decoration: underline;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  padding: 40px 0 20px;
}

.hero-text {
  flex: 1 1 360px;
  background-color: #f0e9df;
  padding: 36px;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-text p {
  margin-bottom: 16px;
}

.hero-image {
  flex: 1 1 420px;
  min-height: 320px;
  background-color: #d8d1c7;
  position: relative;
  overflow: hidden;
}

.hero-image .overlay-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background-color: rgba(27, 27, 27, 0.8);
  color: #fff;
  padding: 10px 14px;
  font-size: 0.85rem;
  border-radius: 6px;
}

.section {
  padding: 56px 0;
  position: relative;
}

.offset-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.offset-text {
  flex: 1 1 340px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  margin-left: -40px;
  position: relative;
  z-index: 2;
}

.offset-image {
  flex: 1 1 360px;
  min-height: 260px;
  background-color: #d9d2c9;
  border-radius: 16px;
  overflow: hidden;
}

.layered {
  background-color: #1f2321;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.layered .layer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.layered .layer-card {
  flex: 1 1 320px;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: 14px;
}

.layered .layer-image {
  flex: 1 1 320px;
  min-height: 260px;
  background-color: #3b3f3b;
  border-radius: 14px;
  overflow: hidden;
}

.services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  background-color: #fff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.07);
}

.service-image {
  height: 160px;
  border-radius: 12px;
  background-color: #d6cfc6;
  overflow: hidden;
}

.service-card h3 {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: #6b4b3e;
}

.testimonial {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 26px;
  background-color: #f9f6f0;
  border-left: 4px solid #6b4b3e;
}

.testimonial-text {
  flex: 1 1 320px;
}

.testimonial-image {
  flex: 0 0 180px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #d4cbc1;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 360px;
  background-color: #fff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d4c9bb;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-summary {
  background-color: #f0e9df;
  border-radius: 12px;
  padding: 18px;
}

.form-summary p {
  margin-bottom: 10px;
}

.split-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.split-list div {
  flex: 1 1 240px;
  background-color: #fff;
  padding: 18px;
  border-radius: 12px;
}

.contact-card {
  background-color: #fff;
  padding: 24px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-image {
  height: 240px;
  background-color: #d4cbc1;
  border-radius: 14px;
  overflow: hidden;
}

.footer {
  background-color: #1b1b1b;
  color: #fff;
  padding: 40px 24px;
  margin-top: 60px;
}

.footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer a {
  color: #f0e9df;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1f2321;
  color: #fff;
  padding: 16px 24px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-page {
  padding: 40px 0 70px;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.legal-page p {
  margin-bottom: 14px;
}

@media (max-width: 860px) {
  .offset-text {
    margin-left: 0;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: space-between;
    border-radius: 18px;
  }
}
