* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a24;
  background: #f7f5f1;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.top-bar {
  padding: 22px 6vw 12px;
  background: #f7f5f1;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: #1f2a24;
}

.ad-label {
  font-size: 0.85rem;
  background: #f1ebe2;
  padding: 8px 12px;
  border-radius: 999px;
  align-self: flex-start;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 6vw 20px;
  position: relative;
}

.hero-panel {
  flex: 1 1 340px;
  min-width: 280px;
  padding: 28px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(18, 28, 22, 0.08);
  position: relative;
  z-index: 2;
}

.hero-panel h1 {
  font-size: 2.4rem;
  margin: 0 0 12px;
}

.hero-panel p {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.hero-media {
  flex: 1 1 380px;
  min-width: 300px;
  position: relative;
  margin-top: 30px;
}

.hero-media .image-frame {
  height: 340px;
  border-radius: 28px;
  overflow: hidden;
  background-color: #d8d2c7;
}

.hero-media .overlay-card {
  position: absolute;
  bottom: -30px;
  left: 12%;
  right: 12%;
  background: #1f2a24;
  color: #f7f5f1;
  padding: 16px 20px;
  border-radius: 18px;
  font-size: 0.95rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f2a24;
  color: #f7f5f1;
  border: none;
  cursor: pointer;
  font-weight: 600;
  gap: 8px;
}

.button.light {
  background: #f1ebe2;
  color: #1f2a24;
}

.button:hover,
button.button:hover,
.button:focus,
button.button:focus {
  transform: translateY(-1px);
}

.section {
  padding: 60px 6vw;
}

.section.bg-feature {
  background-image: linear-gradient(rgba(31, 42, 36, 0.75), rgba(31, 42, 36, 0.55)),
    url("https://images.unsplash.com/photo-1570793005386-840846445fed?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f5f1;
}

.section.bg-feature .button.light {
  background: #f7f5f1;
}

.section.alt {
  background: #ffffff;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 20px;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-card {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(18, 28, 22, 0.08);
  position: relative;
}

.asym-card.offset {
  transform: translateY(20px);
  background: #f1ebe2;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  background-color: #d8d2c7;
  min-height: 220px;
}

.image-frame.tall {
  min-height: 320px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 32px rgba(18, 28, 22, 0.07);
}

.service-card .image-frame {
  min-height: 160px;
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.step {
  flex: 1 1 220px;
  background: #f1ebe2;
  padding: 18px;
  border-radius: 16px;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e4ded3;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 360px;
  background: #ffffff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(18, 28, 22, 0.08);
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin-top: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9c2b6;
  margin-top: 6px;
  font-family: inherit;
}

.form-hint {
  font-size: 0.9rem;
  color: #49534a;
}

.form-fields.hidden {
  display: none;
}

.info-panel {
  flex: 1 1 240px;
  background: #f1ebe2;
  padding: 24px;
  border-radius: 22px;
  transform: translateY(18px);
}

.footer {
  padding: 40px 6vw;
  background: #1f2a24;
  color: #f7f5f1;
}

.footer a {
  color: #f7f5f1;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f2a24;
  color: #f7f5f1;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sticky-cta:hover,
.sticky-cta:focus {
  transform: translateY(-1px);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #1f2a24;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.legal-section {
  padding: 40px 6vw;
  background: #ffffff;
}

.legal-section h1 {
  margin-top: 0;
}

.contact-details {
  background: #f1ebe2;
  padding: 24px;
  border-radius: 18px;
  max-width: 540px;
}

.split-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.split-stack .image-frame {
  flex: 1 1 260px;
  min-height: 200px;
}

.split-stack .asym-card {
  flex: 1 1 280px;
}

@media (max-width: 800px) {
  .hero-media {
    margin-top: 0;
  }

  .hero-media .overlay-card {
    position: static;
    margin-top: 12px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
  }
}
