* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f4f1;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav-shell {
  padding: 24px 6vw 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  letter-spacing: 0.3px;
  background: #f0d8b8;
  color: #3d2e1c;
  padding: 4px 8px;
  border-radius: 999px;
  align-self: flex-start;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e6ded7;
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 4vw;
  padding: 40px 6vw 60px;
  position: relative;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 30px;
}

.hero-media {
  flex: 1.2;
  background: #e8e2dc;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: #f2c6a5;
}

.btn.alt {
  background: #ffffff;
}

.split-section {
  display: flex;
  gap: 5vw;
  padding: 60px 6vw;
  align-items: flex-start;
  position: relative;
}

.offset-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  max-width: 480px;
}

.offset-card.large {
  max-width: 520px;
  transform: translateY(20px);
}

.visual-card {
  flex: 1;
  background: #ece7e1;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
}

.image-frame {
  background: #ece7e1;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.visual-card img {
  width: 100%;
  height: 100%;
}

.section-title {
  font-size: 28px;
  margin-bottom: 12px;
}

.muted {
  color: #5b524b;
}

.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.service-card img {
  width: 100%;
  height: 150px;
  border-radius: 18px;
}

.service-price {
  font-weight: 600;
  color: #5e2c1f;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 4px 10px;
  background: #eef1f6;
  border-radius: 999px;
}

.highlight {
  background: #151515;
  color: #ffffff;
  padding: 60px 6vw;
  border-radius: 30px;
  margin: 0 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-shell {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d7cec7;
  font-size: 15px;
  font-family: inherit;
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1b1b1b;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 20;
}

.footer {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  background: #f0ebe6;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.page-hero {
  padding: 50px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-hero .hero-banner {
  background: #e6dfd8;
  border-radius: 22px;
  overflow: hidden;
  min-height: 220px;
}

.hero-banner img {
  width: 100%;
  height: 100%;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 6vw 60px;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #d9d1ca;
  padding: 16px 6vw;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  border: 1px solid #1b1b1b;
  background: #f0d8b8;
  padding: 8px 16px;
  border-radius: 999px;
}

.cookie-btn.reject {
  background: #ffffff;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.inline-link {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .hero {
    flex-direction: column;
  }

  .split-section {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
