* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1f;
  background-color: #f6f3ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 20px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  background-color: #222;
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
}

.hero {
  display: flex;
  gap: 28px;
  padding: 40px 0 64px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 10px 20px 0;
}

.hero-card {
  background-color: #fff7e9;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.hero-visual {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-frame {
  background-color: #e3ded6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.image-frame.offset {
  margin-left: 22px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-row.spaced {
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #222;
  background-color: #222;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background-color: transparent;
  color: #222;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background-color: #ffffff;
}

.section.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1;
}

.split .visual-block {
  flex: 1;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: #dce7e2;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  background-color: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.service-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #2f4732;
}

.quote-block {
  background-color: #1f2a24;
  color: #fff;
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background-color: #fff;
  border-left: 4px solid #c7a77d;
  padding: 16px 18px;
  border-radius: 10px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 14px;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bc;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background-color: #c4573c;
  border-color: #c4573c;
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  background-color: #1d1d1f;
  color: #f4f1ec;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d6cfc4;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background-color: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  z-index: 30;
  width: min(320px, 90vw);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #efe6da;
  font-size: 13px;
}

.asym-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  background-color: #f1e8db;
  border-radius: 20px;
  margin-left: 6%;
  margin-right: 2%;
}

.mini-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.mini-card {
  flex: 1 1 160px;
  background-color: #fff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.contact-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .hero,
  .section.split,
  .split.reverse {
    flex-direction: column;
  }

  .image-frame.offset {
    margin-left: 0;
  }

  .asym-section {
    margin-left: 0;
    margin-right: 0;
  }
}
