:root {
  color-scheme: light;
  --ink: #1d1f1e;
  --muted: #5a6360;
  --accent: #b34aa0;
  --accent-dark: #8f2f7c;
  --sand: #f4f0ea;
  --mist: #eef2f1;
  --leaf: #2d4b43;
  --peach: #f7e2d3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fbfbf9;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--peach);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  padding: 40px 0 20px;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 420px;
  background: var(--sand);
  border-radius: 28px;
  overflow: hidden;
  transform: translateY(-18px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--accent-dark);
  color: #fff;
}

.section {
  padding: 50px 0;
}

.section.alt {
  background: var(--mist);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--muted);
}

.asym {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.asym .copy {
  flex: 1 1 300px;
}

.asym .image-frame {
  flex: 1 1 300px;
  min-height: 320px;
  background: var(--sand);
  border-radius: 22px;
  overflow: hidden;
  transform: rotate(-1deg);
}

.offset-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-card {
  background: #fff;
  padding: 20px 24px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  max-width: 520px;
}

.offset-card:nth-child(2) {
  margin-left: 40px;
}

.offset-card:nth-child(3) {
  margin-left: 14px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  flex: 1 1 240px;
  min-width: 220px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card-image {
  height: 180px;
  background: var(--sand);
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split-panel {
  flex: 1 1 320px;
  background: #fff;
  padding: 26px;
  border-radius: 18px;
}

.section-bg {
  background: var(--leaf);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}

.section-bg .container {
  position: relative;
  z-index: 1;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 220px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9cecb;
  font: inherit;
}

.form-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.testimonial {
  background: var(--sand);
  padding: 18px 20px;
  border-radius: 16px;
}

.footer {
  background: #0f1412;
  color: #e8ecea;
  padding: 40px 0;
  margin-top: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cdd4d0;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  z-index: 20;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.legal-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 860px) {
  .hero-media {
    transform: none;
  }

  .offset-card:nth-child(2),
  .offset-card:nth-child(3) {
    margin-left: 0;
  }

  .sticky-cta {
    position: static;
    margin-top: 20px;
  }
}
