* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1f27;
  --muted: #5d6775;
  --bg: #f4f6f9;
  --panel: #ffffff;
  --accent: #1e5a8a;
  --accent-soft: #e0edf7;
  --border: #d7dee7;
  --highlight: #f1f5f9;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}

.site-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--highlight);
  padding: 6px 10px;
  border-radius: 999px;
}

main {
  flex: 1;
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 56px 24px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: var(--accent-soft);
  color: var(--accent);
}

.media {
  background-color: #d7dee7;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
}

.media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.inline-image {
  background-color: #d7dee7;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 18px;
}

.inline-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  gap: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  align-items: center;
}

.card img {
  width: 120px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  background-color: #d7dee7;
}

.card-price {
  font-weight: 700;
  color: var(--accent);
  margin-top: 6px;
}

.bg-snow-1 {
  background-image: linear-gradient(120deg, rgba(16, 24, 32, 0.7), rgba(16, 24, 32, 0.3)),
    url("https://images.unsplash.com/photo-VwRVMEJm0c0?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 28px;
  margin-top: 10px;
}

.bg-snow-2 {
  background-image: linear-gradient(120deg, rgba(20, 38, 48, 0.7), rgba(20, 38, 48, 0.25)),
    url("https://images.unsplash.com/photo-FQltYYGT7xQ?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 28px;
  margin-top: 10px;
}

.bg-snow-3 {
  background-image: linear-gradient(120deg, rgba(12, 26, 36, 0.72), rgba(12, 26, 36, 0.22)),
    url("https://images.unsplash.com/photo-QcoWnyccR5I?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 28px;
  margin-top: 10px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 14px;
}

.split-title {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.section-tag {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1.4px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.split.bg-snow-1 .section-tag,
.split.bg-snow-2 .section-tag,
.split.bg-snow-3 .section-tag {
  color: #e5f0fa;
}

.footer {
  background: #10161f;
  color: #d5dde7;
  padding: 36px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a {
  color: #d5dde7;
}

.disclaimer {
  font-size: 0.88rem;
  color: #b4c0cf;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 86px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.16);
  z-index: 20;
}

.sticky-cta .btn {
  width: 100%;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.18);
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}

.muted {
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero-title {
    font-size: 2rem;
  }

  .sticky-cta {
    position: static;
    margin: 24px auto 0;
    max-width: 320px;
  }
}
