* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1f24;
  background-color: #f7f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 22px 0 14px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: #6b635a;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.nav-link {
  padding: 6px 0;
}

.hero {
  background: #ece7e1;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 54px 0;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin: 0;
}

.hero-text {
  font-size: 18px;
  margin: 0;
  color: #3f3a33;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  background: #1d1f24;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button-outline {
  background: transparent;
  color: #1d1f24;
  border: 1px solid #1d1f24;
}

.hero-image-wrap {
  flex: 0.9;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
}

.image-frame {
  background-color: #d9d1c7;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame.offset {
  transform: translateY(24px);
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: #fff;
}

.asym-row {
  display: flex;
  gap: 32px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.asym-title {
  font-size: 30px;
  margin: 0;
}

.asym-note {
  margin: 0;
  color: #4a433b;
}

.inline-link {
  color: #915e2b;
  font-weight: 600;
}

.metric-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  background: #f1ece7;
  padding: 18px;
  border-radius: 14px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric strong {
  font-size: 20px;
}

.cards-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-image {
  background-color: #dcd4ca;
  border-radius: 14px;
  overflow: hidden;
  height: 180px;
}

.card-title {
  margin: 0;
  font-size: 18px;
}

.quote-block {
  background: #efe6db;
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-section {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.form-panel {
  flex: 1;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  font-size: 14px;
}

.form-panel select,
.form-panel input {
  padding: 10px 12px;
  border: 1px solid #c9bfb4;
  border-radius: 10px;
  font-size: 14px;
}

.form-panel button {
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #1d1f24;
  color: #fff;
  padding: 12px 0;
  z-index: 1;
}

.sticky-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer {
  background: #161616;
  color: #e9e3dc;
  padding: 44px 0;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer a {
  color: #e9e3dc;
}

.disclaimer {
  font-size: 13px;
  color: #d5ccc2;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  width: min(340px, 92%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 99;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-hero {
  background: #efe9e2;
  padding: 46px 0;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 40px 0 64px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-item {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  align-items: center;
}

.service-item .card-image {
  flex: 0 0 220px;
  height: 150px;
}

.service-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-tag {
  font-weight: 700;
  color: #8a4e1d;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-box {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
}

.thanks-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 70px 0;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e5d9cb;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 960px) {
  .hero-inner,
  .asym-row,
  .form-section,
  .service-item {
    flex-direction: column;
  }

  .hero-image-wrap {
    width: 100%;
  }

  .image-frame.offset {
    transform: none;
  }
}
