* {
  box-sizing: border-box;
}

:root {
  --ink: #0e1b2c;
  --muted: #4f5e6f;
  --accent: #1f6feb;
  --accent-dark: #164aa8;
  --sand: #f2efe9;
  --mist: #eef3f7;
  --sunset: #f8efe4;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: var(--card);
  border-bottom: 1px solid #dce4ee;
}

.nav-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 6vw;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: var(--sunset);
  border-radius: 999px;
  color: #6a4b1f;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mist);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 50px 6vw;
  background: var(--card);
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  background: #d5dde8;
  border-radius: 18px;
  overflow: hidden;
}

.section {
  padding: 50px 6vw;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--card);
  border-radius: 20px;
  padding: 32px;
}

.split.reverse {
  background: var(--sand);
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-layout {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  padding: 6px 12px;
  background: var(--mist);
  border-radius: 999px;
  font-size: 13px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(14, 27, 44, 0.08);
}

.card .image-frame {
  border-radius: 14px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.form-panel {
  background: var(--card);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

select,
input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8d3e1;
  font-size: 15px;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.side-note {
  font-size: 13px;
  color: var(--muted);
}

.story-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--mist);
  border-radius: 18px;
  padding: 24px;
}

.footer {
  margin-top: auto;
  background: #0c1624;
  color: #eef3f7;
  padding: 40px 6vw;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a {
  color: #eef3f7;
}

.disclaimer {
  font-size: 13px;
  color: #c7d4e6;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 6vw;
  background: rgba(12, 22, 36, 0.92);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 10;
}

.sticky-cta a {
  color: #fff;
  background: var(--accent);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fef6e8;
  color: #433218;
  padding: 16px 6vw 22px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
  border-top: 1px solid #e6d2b4;
}

#cookie-banner button {
  border: 1px solid #b48b45;
  background: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.legal {
  background: var(--card);
  border-radius: 18px;
  padding: 28px;
}

.notice {
  background: var(--sunset);
  border-radius: 14px;
  padding: 16px;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #dfe9f5;
  font-size: 12px;
}

.spaced-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 880px) {
  .hero-split,
  .split-layout,
  .two-col {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-panel,
  .hero-media,
  .split-content,
  .split-media {
    flex: 1;
  }

  .split.reverse .split-layout {
    flex-direction: row-reverse;
  }
}
