* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2328;
  --muted: #5c6670;
  --accent: #2d6a6f;
  --accent-soft: #e6f1f1;
  --warm: #f6efe7;
  --night: #0f1c1f;
  --card: #ffffff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfbf8;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8%;
  background: #fff;
  border-bottom: 1px solid #e8e8e3;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 60px 8%;
}

.split-section {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 50px 8%;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel.media {
  justify-content: center;
}

.panel h1,
.panel h2,
.panel h3 {
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 28px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.section-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.image-frame {
  background-color: #dfe6e3;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.image-frame.tall {
  min-height: 360px;
}

.image-frame.wide {
  min-height: 260px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 18px;
  padding: 18px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid #ecebe6;
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.tag svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

.band {
  background: var(--warm);
}

.band-dark {
  background: var(--night);
  color: #fff;
}

.band-dark a {
  color: #b6e2e4;
}

.form-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #ecebe6;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6d6cf;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row > div {
  flex: 1;
}

.form-hint {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 32px 8%;
  background: #fff;
  border-top: 1px solid #e8e8e3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border: 1px solid #d9d9d2;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  z-index: 20;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  flex: 1;
  padding: 8px 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  z-index: 15;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-block {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #ecebe6;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-section {
  padding: 50px 8%;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .sticky-cta {
    left: 50%;
    transform: translateX(-50%);
  }
}
