* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #161616;
  --muted: #5d5d5d;
  --accent: #1f4b99;
  --accent-soft: #e8eefb;
  --paper: #f7f6f2;
  --sand: #efe6da;
  --stone: #e4e7ec;
  --dark: #111827;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 5vw;
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
  background: var(--stone);
}

.hero {
  padding: 48px 5vw 32px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-visual {
  flex: 1;
  background: var(--sand);
  padding: 12px;
}

.split-visual img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.section {
  padding: 48px 5vw;
}

.background-section {
  position: relative;
  overflow: hidden;
  background: #0b1b33;
  color: #f5f5f5;
}

.background-section .bg-image {
  position: absolute;
  inset: 0;
  opacity: 0.25;
}

.background-section .bg-image img {
  width: 100%;
  height: 100%;
}

.background-section .bg-content {
  position: relative;
  z-index: 1;
}

.section.dark {
  background: var(--dark);
  color: #f8f8f8;
}

.section.alt {
  background: #ffffff;
}

.section-title {
  font-size: 28px;
  margin-bottom: 12px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card-media {
  background: var(--stone);
  border-radius: 12px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight {
  background: var(--accent-soft);
  border-radius: 18px;
  padding: 28px;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
}

.form-block label {
  font-size: 14px;
  color: var(--muted);
}

.form-block input,
.form-block select,
.form-block textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  font-size: 15px;
}

.footer {
  margin-top: auto;
  padding: 32px 5vw;
  background: #0f172a;
  color: #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #c8c8c8;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 8px;
  z-index: 5;
}

.sticky-cta button {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  width: min(380px, 85vw);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 6;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.notice {
  font-size: 14px;
  color: var(--muted);
}

.map-card {
  background: var(--sand);
  padding: 14px;
  border-radius: 16px;
}

.map-card img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--stone);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
