* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  background: #efe7db;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 24px 0 60px;
}

.hero-text {
  flex: 1.2;
  background: #fff4eb;
  padding: 36px;
  border-radius: 28px;
  position: relative;
}

.hero-text::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 24px;
  width: 120px;
  height: 120px;
  background: #efe7db;
  border-radius: 24px;
  z-index: -1;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  margin-bottom: 18px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: #1a1a1a;
  color: #fff;
}

.btn-light {
  background: #efe7db;
  color: #1a1a1a;
}

.hero-image {
  flex: 1;
  background: #d9d0c4;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  height: 100%;
  min-height: 420px;
}

.section {
  padding: 48px 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.offset-card {
  flex: 1;
  min-width: 260px;
  background: #ffffff;
  padding: 24px;
  border-radius: 24px;
  position: relative;
}

.offset-card:nth-child(2) {
  transform: translateY(20px);
}

.offset-card:nth-child(3) {
  transform: translateY(-10px);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card .price {
  font-weight: 700;
  color: #6a3a1d;
}

.service-card button {
  align-self: flex-start;
}

.layered {
  background: #f1ede7;
  border-radius: 32px;
  padding: 36px;
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  left: 12px;
  bottom: -18px;
  width: 160px;
  height: 160px;
  background: #e2d5c6;
  border-radius: 32px;
  z-index: -1;
}

.image-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.image-tile {
  flex: 1;
  min-width: 240px;
  background: #d9d0c4;
  border-radius: 24px;
  overflow: hidden;
}

.split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1.1;
  min-width: 260px;
}

.split-image {
  flex: 0.9;
  min-width: 240px;
  background: #d9d0c4;
  border-radius: 24px;
  overflow: hidden;
}

.form-section {
  background: #fff;
  border-radius: 32px;
  padding: 36px;
}

.background-section {
  background-color: #cbbeb2;
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  border-radius: 32px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.background-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.background-section .wrap {
  position: relative;
  z-index: 1;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d8d1c7;
  font-size: 1rem;
}

.inline-cta {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  background: #6a3a1d;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
}

.footer {
  padding: 32px 0 48px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.disclaimer {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #4f4f4f;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-hero {
  background: #efe7db;
  border-radius: 24px;
  padding: 32px;
  margin: 24px 0 32px;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-text::after {
    display: none;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
