* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1f24;
  --muted: #5c6670;
  --bg: #f6f3ef;
  --bg-alt: #ffffff;
  --accent: #2a6b6a;
  --accent-soft: #d9ebe7;
  --warm: #f3ebe2;
  --line: #e4ddd6;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6%;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.split {
  display: flex;
  gap: 40px;
  padding: 60px 6%;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  width: fit-content;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.section {
  padding: 70px 6%;
}

.section.alt {
  background: var(--bg-alt);
}

.section.warm {
  background: var(--warm);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.media-frame {
  background: #e9e1d7;
  border-radius: 18px;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap {
  background: var(--bg-alt);
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  background: #fff;
}

.footer {
  margin-top: auto;
  padding: 36px 6%;
  background: #1f262b;
  color: #f3f4f6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.footer small {
  color: #cbd5df;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.2;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--muted);
}

.two-col {
  display: flex;
  gap: 30px;
}

.two-col > div {
  flex: 1;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.light-block {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 20px;
}

.backdrop {
  position: relative;
  overflow: hidden;
}

.backdrop-image {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: #e9e1d7;
}

.backdrop-image img {
  width: 100%;
  height: 100%;
}

.backdrop-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .split,
  .split.reverse,
  .two-col {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
