* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #0f1f2a;
  --muted: #55626d;
  --mist: #f4f6f8;
  --stream: #e5f2f1;
  --sand: #f7f2ea;
  --river: #1f6f8b;
  --accent: #f1c27d;
  --shadow: 0 18px 40px rgba(15, 31, 42, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.92;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 12px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--river);
}

.ad-label {
  background: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom-color: var(--river);
}

.hero {
  padding: 30px 6vw 40px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 520px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  background: var(--river);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.secondary {
  background: #ffffff;
  color: var(--river);
  border: 1px solid var(--river);
}

.image-frame {
  background-color: var(--mist);
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layered-section {
  padding: 56px 6vw;
  position: relative;
}

.layered-section .layer-block {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--stream);
  border-radius: 16px;
  top: 24px;
  right: 10%;
  z-index: 0;
}

.layered-section .content {
  position: relative;
  z-index: 1;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.price {
  font-weight: 700;
  color: var(--river);
}

.muted {
  color: var(--muted);
}

.full-bleed {
  background: var(--stream);
}

.background-wrap {
  position: relative;
  overflow: hidden;
}

.background-wrap .background-image {
  position: absolute;
  inset: 0;
  opacity: 0.18;
}

.background-wrap .background-image img {
  height: 100%;
}

.background-wrap .content {
  position: relative;
  z-index: 1;
}

.split-section {
  padding: 52px 6vw;
}

.form-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd5db;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  background: var(--ink);
  color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 220px;
}

.sticky-cta a {
  background: var(--accent);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  text-align: center;
}

.footer {
  padding: 40px 6vw;
  background: #0f1f2a;
  color: #e7eef2;
}

.footer a {
  color: inherit;
  border-bottom: 1px solid rgba(231, 238, 242, 0.4);
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-columns > div {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  gap: 16px;
  align-items: center;
  max-width: 720px;
  z-index: 99;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.banner-btn {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
}

.banner-btn.accept {
  background: var(--river);
  color: #ffffff;
}

.banner-btn.reject {
  background: #f0f0f0;
  color: var(--ink);
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }

  .sticky-cta {
    position: static;
    max-width: none;
  }
}
