:root {
  --ink: #1f2a2e;
  --muted: #5c6b70;
  --accent: #2a6f7a;
  --accent-soft: #e7f2f3;
  --sand: #f7f4ef;
  --stone: #ece7df;
  --dark: #162024;
  --light: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

header {
  padding: 24px 0 8px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.82rem;
  color: var(--accent);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.cta:hover {
  transform: translateY(-1px);
  background: #1f5962;
}

.cta.secondary:hover {
  background: var(--accent-soft);
}

main {
  padding: 20px 0 80px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 54px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1;
  min-width: 280px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.2rem, 2.6vw, 3.2rem);
}

h2 {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.img-frame {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  height: 100%;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--light);
  border: 1px solid #d8d2c8;
  font-size: 0.9rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: var(--light);
  box-shadow: 0 12px 30px rgba(16, 24, 24, 0.08);
  align-items: center;
}

.card img {
  border-radius: 12px;
  width: 120px;
  height: 90px;
  object-fit: cover;
  background-color: var(--stone);
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item svg {
  flex-shrink: 0;
}

.panel {
  background: var(--light);
  padding: 28px;
  border-radius: 18px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-shell label {
  font-weight: 600;
  color: var(--ink);
}

.form-shell select,
.form-shell input,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d9d2c8;
  font-size: 1rem;
  font-family: inherit;
}

.form-shell button {
  border: none;
  cursor: pointer;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
}

.footer {
  background: var(--dark);
  color: #d9e2e5;
  padding: 42px 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: inherit;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.92rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c2cbd0;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  padding: 16px;
  max-width: 360px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: var(--light);
}

.cookie-reject {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  z-index: 10;
}

.split-bg {
  display: flex;
  gap: 0;
  padding: 0;
  margin: 54px 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--light);
}

.split-bg .bg-image {
  flex: 1.1;
}

.split-bg .bg-content {
  flex: 1;
  padding: 32px;
  background: var(--accent-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-caption {
  font-size: 0.85rem;
  color: var(--muted);
}

.spacer-sm {
  height: 14px;
}

.spacer-md {
  height: 18px;
}

.spacer-lg {
  height: 22px;
}

@media (max-width: 900px) {
  .split,
  .split-bg {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
