/* Base */
* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #101418;
  --muted: #58616b;
  --bg: #f6f7f9;
  --paper: #ffffff;
  --accent: #1f4b8f;
  --accent-2: #13705a;
  --soft: #e8edf3;
  --warm: #f4efe7;
}

body {
  margin: 0;
  font-family: "Inter", "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;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: var(--paper);
  border-bottom: 1px solid var(--soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
}

.ad-label {
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffe9c2;
  color: #5e3b00;
  font-size: 0.85rem;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 60px 6vw;
  align-items: stretch;
  background: linear-gradient(120deg, #ffffff, #edf2f8);
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-visual {
  flex: 1;
  background: #dbe4ef;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.split-section {
  display: flex;
  padding: 56px 6vw;
  gap: 36px;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
  background: var(--paper);
}

.split-section.light {
  background: var(--warm);
}

.bg-archive {
  background-image: url("https://images.unsplash.com/photo-1508780709619-79562169bc64?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-archive::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 24, 0.55);
}

.bg-archive .split-content,
.bg-archive .split-media {
  position: relative;
  z-index: 1;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  background: #e0e7f0;
}

.split-media img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent-2);
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: var(--paper);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(16, 20, 24, 0.08);
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  background: #dde4ec;
}

.media-slate {
  background: #d4deea;
}

.media-ice {
  background: #dfe7f1;
}

.media-mist {
  background: #e0e7ef;
}

.media-night {
  background: #1d2633;
}

.media-soft {
  background: #dfe6ee;
}

.media-top {
  margin-top: 24px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.section-title {
  font-size: 1.8rem;
  margin: 0;
}

.muted {
  color: var(--muted);
}

.form-wrap {
  background: var(--paper);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(16, 20, 24, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6df;
  font: inherit;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  background: #0f1720;
  color: #f3f5f7;
  padding: 40px 6vw;
  margin-top: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a {
  color: #f3f5f7;
}

.disclaimer {
  margin-top: 20px;
  color: #c7d0db;
  font-size: 0.9rem;
}

.cta-sticky {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 8;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  max-width: 360px;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.highlight {
  background: #f1f5fb;
  padding: 6px 10px;
  border-radius: 8px;
  display: inline-flex;
}

.page-hero {
  padding: 48px 6vw;
  background: var(--paper);
}

.legal-content {
  padding: 40px 6vw 70px;
}

.legal-content h2 {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .hero,
  .split-section {
    flex-direction: column;
  }

  .cta-sticky {
    right: 14px;
    left: 14px;
    text-align: center;
  }
}
