* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1f24;
  --muted: #5c6773;
  --accent: #2b6f8f;
  --accent-soft: #e6f1f6;
  --warm: #f8f2ea;
  --cool: #eef4f7;
  --sand: #f3ede6;
  --shadow: rgba(20, 24, 28, 0.08);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 24px 8px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.3px;
  text-transform: lowercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 240px;
  text-align: right;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin: 40px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
  min-width: 280px;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.3px;
}

h1 {
  font-size: 40px;
  line-height: 1.1;
  margin: 12px 0 20px;
}

h2 {
  font-size: 28px;
  margin: 10px 0 16px;
}

h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.cta-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-band {
  background: var(--warm);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 10px 20px var(--shadow);
}

.section-band.cool {
  background: var(--cool);
}

.section-band.sand {
  background: var(--sand);
}

.img-frame {
  border-radius: 24px;
  overflow: hidden;
  background: #d8e4ea;
  box-shadow: 0 12px 24px var(--shadow);
}

.img-frame.sand {
  background: #eadfce;
}

.img-frame.cool {
  background: #d6e8f0;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 18px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 600;
  color: var(--ink);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 12px;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.form-shell {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 24px var(--shadow);
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d4dbe1;
  font-size: 14px;
}

.form-message {
  font-size: 13px;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px var(--shadow);
}

.footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #e5eaef;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
}

.footer a {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 12px 24px var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.legal-wrap .col {
  flex: 1 1 320px;
}

.legal-wrap .col p {
  margin-bottom: 12px;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.hero-bg {
  min-height: 420px;
  background: linear-gradient(120deg, rgba(25, 35, 45, 0.3), rgba(25, 35, 45, 0.1)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80") center/cover;
  border-radius: 28px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #ffffff;
}

.hero-bg p {
  color: #eef5f8;
}

.bg-docks {
  background: linear-gradient(120deg, rgba(19, 33, 47, 0.2), rgba(19, 33, 47, 0.05)),
    url("https://images.unsplash.com/photo-1500534623283-312aade485b7?w=1400&q=80") center/cover;
}

.bg-harbor {
  background: linear-gradient(120deg, rgba(19, 33, 47, 0.25), rgba(19, 33, 47, 0.05)),
    url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80") center/cover;
}

.banner {
  border-radius: 28px;
  padding: 26px;
  color: #ffffff;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
}

.banner p {
  color: #eef5f8;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 14px var(--shadow);
}

.table-row span {
  color: var(--muted);
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
