* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1b1b1b;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  padding: 24px 6vw 8px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 10px;
  background: #141414;
  color: #fff;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 40px 6vw 20px;
  align-items: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 6vw;
  top: -20px;
  width: 180px;
  height: 180px;
  background: #f0d97c;
  opacity: 0.35;
  border-radius: 32px;
  z-index: 0;
}

.hero-copy {
  flex: 1.1;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 54px);
  margin: 0 0 16px;
}

.hero-copy p {
  font-size: 18px;
  margin: 0 0 20px;
  max-width: 520px;
}

.hero-media {
  flex: 0.9;
  position: relative;
  z-index: 1;
}

.media-frame {
  background: #d7d9e2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
}

.btn.secondary {
  background: transparent;
  color: #1b1b1b;
}

.section {
  padding: 52px 6vw;
  position: relative;
}

.section.light {
  background: #ffffff;
}

.section.sand {
  background: #f1ede3;
}

.section.dark {
  background: #141414;
  color: #f5f5f5;
}

.asym-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-row .text {
  flex: 1;
}

.asym-row .visual {
  flex: 0.9;
  margin-top: 18px;
}

.offset-box {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  margin-left: -24px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card .media-frame {
  height: 160px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.step {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #1b1b1b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-section {
  background: #ffffff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-option {
  border: 1px solid #d0d0d0;
  border-radius: 14px;
  padding: 12px;
  flex: 1 1 200px;
  background: #f7f6f2;
}

.service-option input {
  margin-right: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #c6c6c6;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
}

.form-message {
  font-size: 14px;
  color: #c0392b;
  min-height: 20px;
}

.inline-link {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1b1b1b;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 40px 6vw 60px;
  background: #0d0d0d;
  color: #eaeaea;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-grid > div {
  flex: 1 1 200px;
}

.small-text {
  font-size: 13px;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  color: #1b1b1b;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.legal-image {
  margin: 24px 0;
}

.legal-image .media-frame {
  height: 220px;
}

.contact-blocks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 220px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .hero,
  .asym-row {
    flex-direction: column;
  }

  .offset-box {
    margin-left: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
