* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f1f24;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 13px;
  padding: 8px 12px;
  background: #f0e4d7;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 32px 0 64px;
}

.hero-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 28px 32px 0;
}

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
}

.hero-card {
  flex: 0.9;
  background: #1f1f24;
  color: #fdf9f3;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1f1f24;
  background: #1f1f24;
  color: #fdf9f3;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #1f1f24;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #efe9e3;
}

.section-dark {
  background: #1f1f24;
  color: #fdf9f3;
}

.asym-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-block {
  flex: 1;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  background: #d8d3cc;
}

.image-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
}

.timeline-index {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1f1f24;
  color: #fdf9f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8c2bb;
  font-size: 15px;
  font-family: inherit;
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
}

.footer {
  padding: 32px 0 48px;
  background: #141418;
  color: #fdf9f3;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-note {
  font-size: 13px;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fdf9f3;
  color: #1f1f24;
  border-radius: 16px;
  padding: 18px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.split-highlight {
  display: flex;
  gap: 24px;
  align-items: stretch;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
}

.split-highlight img {
  width: 45%;
  height: auto;
  border-radius: 18px;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  background: #efe9e3;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pill-link {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1f1f24;
  font-size: 14px;
}

.spacer {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .asym-row,
  .split-highlight {
    flex-direction: column;
  }

  .split-highlight img {
    width: 100%;
  }
}
