.root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #172026;
  background-color: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 12px;
  background-color: #f1ede7;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.82rem;
  color: #6b5d52;
  max-width: 240px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  align-items: center;
  justify-content: flex-end;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #fff;
  border: 1px solid #e0d7cc;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 6vw 50px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #cfd8d6;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.05rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background-color: #1b3b4d;
  color: #fff;
  font-weight: 600;
  width: fit-content;
}

.section {
  padding: 48px 6vw;
}

.section-intro {
  max-width: 640px;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  min-width: 260px;
}

.split-visual {
  flex: 1;
  min-width: 260px;
}

.img-frame {
  background-color: #d7dfe0;
  border-radius: 18px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background-color: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e3dbd0;
}

.card img {
  height: 160px;
}

.price {
  font-weight: 700;
  color: #1b3b4d;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ghost-link {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #9fb0b7;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e3dbd0;
}

.form-panel label {
  font-size: 0.9rem;
  color: #394a51;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9d3d8;
  font-size: 1rem;
}

.form-panel button {
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  background-color: #1b3b4d;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.highlight {
  background-color: #edf3f4;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1b3b4d;
  color: #ffffff;
}

.section-bg .ghost-link {
  border-color: #ffffff;
}

.quote {
  padding: 16px 20px;
  border-left: 4px solid #1b3b4d;
  background-color: #fff;
  border-radius: 10px;
  margin: 0;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 60px;
  background-color: #f1ede7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #5d666b;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #e9a23b;
  color: #1b2b2f;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid #e3dbd0;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #1b3b4d;
  background-color: #1b3b4d;
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background-color: #fff;
  color: #1b3b4d;
}

.legal-block {
  background-color: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #e3dbd0;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 16px;
}

@media (max-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .topbar {
    flex-direction: column;
    gap: 14px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 90px;
  }
}
