* {
  box-sizing: border-box;
}

:root {
  --ink: #1b2330;
  --muted: #4b5563;
  --brand: #0f4c5c;
  --accent: #f4b860;
  --soft: #f5f1ec;
  --sea: #e6f2f5;
  --paper: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0;
  border-bottom: 1px solid #e5e7eb;
  background: var(--paper);
}

.nav-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-disclosure {
  font-size: 12px;
  color: var(--muted);
  max-width: 280px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  padding: 64px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1;
}

.split .visual {
  flex: 1;
}

.hero {
  background: var(--sea);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--brand);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 12px 0 16px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  color: var(--paper);
  background: var(--brand);
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
}

.section-title {
  font-size: 28px;
  margin: 0 0 12px;
}

.soft {
  background: var(--soft);
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--paper);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.inline-note {
  background: #fff4e6;
  padding: 16px 18px;
  border-radius: 14px;
  margin-top: 18px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}

.stat {
  background: var(--paper);
  padding: 14px 16px;
  border-radius: 14px;
  min-width: 160px;
}

.overlap {
  margin-top: -32px;
}

.form-card {
  background: var(--paper);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 15px;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid #e5e7eb;
  background: #f8fafc;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.legal {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--paper);
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--paper);
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  z-index: 12;
}

.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: var(--paper);
  cursor: pointer;
}

.cookie-actions .reject {
  background: transparent;
  color: var(--brand);
}

.split-legal {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 56px 0;
}

.legal-sidebar {
  flex: 0 0 260px;
  background: var(--soft);
  padding: 18px;
  border-radius: 16px;
}

.legal-content {
  flex: 1;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #dbe7ea;
}

.frame-sky {
  background-color: #c9dbe3;
}

.frame-sand {
  background-color: #eadfd6;
}

.frame-mist {
  background-color: #d9e4ea;
}

.frame-cream {
  background-color: #efe8df;
}

.frame-foam {
  background-color: #d8e4db;
}

.frame-slate {
  background-color: #d9dee6;
}

.frame-lagoon {
  background-color: #dde8ef;
}

.frame-river {
  background-color: #e8e2d8;
}

.frame-fog {
  background-color: #d7e3ea;
}

@media (max-width: 900px) {
  .split,
  .split.reverse,
  .split-legal {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    justify-content: center;
  }

  .nav-row {
    flex-direction: column;
  }
}
