* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1d1f;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1b1d1f;
  text-decoration: none;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 8vw;
  background: #f6f4f1;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-wrap a {
  font-size: 0.92rem;
}

.ad-label {
  padding: 6px 12px;
  border-radius: 999px;
  background: #1b1d1f;
  color: #f6f4f1;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.hero {
  display: flex;
  gap: 30px;
  padding: 40px 8vw 80px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 12vw;
  width: 260px;
  height: 260px;
  background: #f0d9b7;
  border-radius: 50%;
  z-index: 0;
}

.hero-text,
.hero-image {
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero-text p {
  margin: 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1b1d1f;
  color: #f6f4f1;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.outline {
  background: transparent;
  color: #1b1d1f;
  border: 1px solid #1b1d1f;
}

.hero-image {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-frame {
  width: 100%;
  max-width: 420px;
  background-color: #e7dccd;
  padding: 18px;
  border-radius: 18px;
}

.image-frame img {
  width: 100%;
  height: 320px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #f26b3a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  z-index: 100;
}

.section {
  padding: 70px 8vw;
}

.offset-block {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.offset-panel {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  margin-top: -30px;
}

.offset-image {
  flex: 1;
  min-width: 260px;
  background-color: #dcd6ce;
  border-radius: 20px;
  overflow: hidden;
}

.offset-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.stripe {
  background: #1b1d1f;
  color: #f6f4f1;
  padding: 40px 8vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.stripe strong {
  font-size: 1.3rem;
}

.services-wrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  background-color: #dcd6ce;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.info-split {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.info-split .text {
  flex: 1.1;
}

.info-split .image {
  flex: 0.9;
  background-color: #e8dfd6;
  border-radius: 20px;
  overflow: hidden;
}

.info-split .image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.form-wrap {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.form-wrap label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc2b4;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-link {
  text-decoration: underline;
}

.testimonial-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1;
  min-width: 220px;
  background: #fff4eb;
  padding: 18px;
  border-radius: 14px;
}

.footer {
  margin-top: auto;
  padding: 30px 8vw 50px;
  background: #efeae4;
}

.footer-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer small {
  color: #555;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 200;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.legal-content {
  max-width: 860px;
}

.legal-content h1 {
  margin-top: 0;
}

.contact-block {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-like div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.table-like span {
  font-weight: 600;
}

.thanks-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  max-width: 560px;
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-strip img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  background-color: #e8dfd6;
}

.bg-sand {
  background-color: #e7dccd;
}

.bg-clay {
  background-color: #dcd6ce;
}

.bg-cream {
  background-color: #e8dfd6;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
  }
}
