* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2428;
  background: #f6f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.wrapper {
  width: min(1100px, 92%);
  margin: 0 auto;
}

header {
  padding: 28px 0 8px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background: #e5efe7;
  border-radius: 20px;
}

.menu {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  padding: 28px 0 48px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  min-width: 0;
}

.panel.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 18, 20, 0.08);
}

.hero-title {
  font-size: clamp(2rem, 2.6vw + 1.4rem, 3.4rem);
  margin: 0 0 12px;
}

.subtle {
  color: #49545a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1f2428;
  color: #fff;
  font-weight: 600;
}

.btn.light {
  background: #f0c86a;
  color: #1f2428;
}

.cta-row {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #1f2428;
  color: #f9f6f1;
}

.section.dark .subtle {
  color: #d0d4d6;
}

.bg-immersive {
  background-image: linear-gradient(rgba(21, 25, 28, 0.65), rgba(21, 25, 28, 0.4)),
    url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-color: #2b3034;
  background-size: cover;
  background-position: center;
  color: #f9f6f1;
}

.bg-immersive .pill {
  background: rgba(249, 246, 241, 0.15);
  color: #f9f6f1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #7a858c;
  margin-bottom: 12px;
  display: block;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 0;
  list-style: none;
  margin: 18px 0 0;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ecf0f3;
  font-size: 0.85rem;
}

.media-block {
  background: #c9d4d8;
  border-radius: 18px;
  overflow: hidden;
}

.media-block.tall {
  height: 100%;
}

.media-block img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card-item {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15, 18, 20, 0.08);
}

.price {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 10px;
}

.inline-link {
  border-bottom: 1px solid currentColor;
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(15, 18, 20, 0.08);
}

.form-card label {
  display: block;
  font-weight: 600;
  margin-top: 12px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #c8cdd2;
  font-family: inherit;
}

.form-card button {
  margin-top: 18px;
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.footer {
  padding: 32px 0 48px;
  background: #15191c;
  color: #f9f6f1;
}

.footer .menu {
  font-size: 0.9rem;
}

.legal {
  font-size: 0.85rem;
  color: #c7cdd1;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 18, 20, 0.2);
  padding: 16px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #1f2428;
  color: #fff;
}

.cookie-reject {
  background: #e4e7ea;
  color: #1f2428;
}

.split-note {
  background: #f4efe5;
  border-radius: 14px;
  padding: 16px;
  margin-top: 18px;
}

.meta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.meta-chip {
  background: #f0f2f4;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
