* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c1f24;
  --muted: #5a6472;
  --surface: #f5f3ef;
  --surface-deep: #ece7e1;
  --accent: #2b5f6d;
  --accent-soft: #e2eff2;
  --line: #d8d1c8;
  --highlight: #f7f4ee;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  padding: 24px 6vw 12px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.9rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.hero {
  padding: 36px 6vw 54px;
  background: var(--surface);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-media {
  flex: 1 1 360px;
  min-width: 280px;
}

.media-frame {
  background: var(--surface-deep);
  padding: 12px;
  border-radius: 20px;
}

.media-frame img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 1px solid var(--accent);
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: var(--highlight);
}

.section.deep {
  background: var(--surface);
}

.section-title {
  font-size: 2rem;
  margin: 0 0 18px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  min-width: 210px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  object-fit: cover;
  background-color: var(--surface-deep);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.form-shell {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

footer {
  background: #111417;
  color: #e6e9ed;
  padding: 40px 6vw 80px;
}

footer a {
  color: #b8d8e0;
}

.footer-grid {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c7cdd6;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.sticky-cta span {
  font-weight: 600;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 16px 6vw;
  display: none;
  z-index: 30;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 600;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

.note {
  color: var(--muted);
}

.two-col {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.pill {
  padding: 8px 12px;
  background: var(--surface-deep);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 900px) {
  .hero {
    padding: 30px 6vw 42px;
  }

  .section {
    padding: 44px 6vw;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
