* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2328;
  --muted: #5f6b73;
  --accent: #2b6cb0;
  --accent-soft: #e6f0fb;
  --sand: #f6f3ef;
  --slate: #101820;
  --cream: #fffdf9;
  --line: #dde5ec;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 60px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.bg-escape {
  background-color: #203040;
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
}

.section.bg-escape .subcopy {
  color: #e2e8f0;
}

.section.bg-harbor {
  background-color: #1f2a33;
  background-image: url("https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f5f7fa;
}

.section.bg-harbor .subcopy {
  color: #e5edf6;
}

.section.deep {
  background: var(--slate);
  color: #f9fbff;
}

.section .split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section .split.reverse {
  flex-direction: column-reverse;
}

.section .split-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section .split-row.reverse {
  flex-direction: column-reverse;
}

.text-block {
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.hero-title {
  font-size: 2.4rem;
  margin: 6px 0 10px;
}

.subcopy {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: #1f5a97;
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn.secondary:hover {
  background: var(--accent-soft);
}

.image-frame {
  background: #d4dbe0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.08);
}

.card.dark {
  background: #15202b;
  border-color: #1c2b3a;
  color: #eef4ff;
}

.card .price {
  font-size: 1.3rem;
  font-weight: 700;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.inline-link:hover {
  border-color: var(--accent);
}

.stacked-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stacked-list div {
  padding: 14px 18px;
  border-radius: 16px;
  background: #f9fbff;
  border: 1px solid var(--line);
}

.quote {
  font-style: italic;
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #f2f6fa;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 15px 30px rgba(16, 24, 32, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  border-top: 1px solid var(--line);
  background: #f9fafb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.footer small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 15px 30px rgba(16, 24, 32, 0.2);
  padding: 16px;
  display: none;
  z-index: 10;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: #0f172a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 9;
}

.sticky-cta button {
  border: none;
  background: #fbbf24;
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta button:hover {
  background: #f59e0b;
}

.notice {
  padding: 16px;
  border-radius: 14px;
  background: #f3f6f9;
  border: 1px solid var(--line);
}

@media (min-width: 860px) {
  .section .split,
  .section .split-row {
    flex-direction: row;
    align-items: stretch;
  }

  .section .split.reverse,
  .section .split-row.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }
}
