* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d1f21;
  --muted: #5c6066;
  --paper: #f7f4ef;
  --accent: #1f4d7a;
  --accent-soft: #d8e4f2;
  --sand: #f0ebe1;
  --stone: #e7e0d2;
  --edge: #d2d6dc;
  --highlight: #f9d9a8;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

header {
  background: #ffffff;
  border-bottom: 1px solid var(--edge);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--highlight);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  color: #3c2b13;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: #1f2a36;
  color: #f1f4f8;
}

.section-bg {
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.section-bg .bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-bg .bg-media img {
  width: 100%;
  height: 100%;
}

.section-bg .bg-content {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.split .media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stone);
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.button,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
}

.button.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
}

.cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--edge);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.image-frame {
  background: var(--stone);
}

.form-panel {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--edge);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--edge);
  font-size: 0.95rem;
}

.form-panel button {
  border: none;
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 30;
}

.sticky-cta a {
  background: var(--accent);
  color: #ffffff;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.footer {
  background: #11151a;
  color: #e9edf2;
  padding: 2.5rem 0;
}

.footer a {
  color: #ffffff;
}

.footer .legal-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}


#cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #ffffff;
  border: 1px solid var(--edge);
  border-radius: 12px;
  padding: 1rem;
  display: none;
  z-index: 40;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

#cookie-banner .actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

#cookie-banner button {
  border: none;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 0.8rem;
    bottom: 0.8rem;
  }
}
