* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2328;
  --muted: #5c6470;
  --sand: #f4f1ec;
  --fog: #eef1f5;
  --pine: #1f4c4b;
  --clay: #b86c4e;
  --sun: #f2c84b;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--pine);
  text-decoration: none;
}

header {
  padding: 24px 6vw 12px;
  border-bottom: 1px solid #e2e6ea;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--fog);
  font-size: 12px;
  color: var(--muted);
}

.page {
  padding: 32px 6vw 72px;
}

.section {
  margin: 48px 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.panel {
  padding: 24px;
  border-radius: 20px;
  background: var(--fog);
}

.panel.dark {
  background: var(--pine);
  color: #ffffff;
}

.panel.sand {
  background: var(--sand);
}

.bg-band {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #ccd3db;
  color: #0c1116;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 24px;
  background: var(--sand);
}

.hero-card h1 {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 48px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 15px;
  cursor: pointer;
  background: var(--pine);
  color: #ffffff;
}

.btn.secondary {
  background: var(--clay);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--pine);
  color: var(--pine);
}

.inline-cta {
  font-weight: 600;
}

.image-frame {
  background: #d7dde5;
  border-radius: 18px;
  overflow: hidden;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.08);
}

.card .price {
  font-size: 20px;
  font-weight: 600;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  font-size: 12px;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  padding: 20px;
  border-radius: 18px;
  background: var(--sun);
  color: #1e1a10;
}

.list {
  margin: 16px 0 0;
  padding: 0 0 0 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6dbe1;
  font-size: 15px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

footer {
  padding: 32px 6vw 48px;
  background: #111418;
  color: #e8ecf1;
}

footer a {
  color: #e8ecf1;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 420px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.reference-list a {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .nav-links {
    justify-content: flex-start;
  }

  .hero-card {
    padding: 24px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
  }
}
