* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2428;
  background: #f8f6f2;
  line-height: 1.6;
}

a {
  color: #1f2428;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.ad-label {
  font-size: 0.85rem;
  background: #f0e9dc;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.hero {
  display: flex;
  gap: 28px;
  padding: 40px 6vw 60px;
  align-items: stretch;
}

.hero-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-visual {
  flex: 1;
  border-radius: 28px;
  overflow: hidden;
  background-color: #e6dfd6;
  min-height: 360px;
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #dfe8e2;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #1f2428;
  background: #1f2428;
  color: #f8f6f2;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: #1f2428;
}

.btn:hover,
.btn:focus {
  opacity: 0.9;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #efe8df;
}

.asym-block {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-block.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1;
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 14px 28px rgba(31, 36, 40, 0.08);
  margin-top: -30px;
}

.image-frame {
  flex: 1;
  min-width: 260px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #e9e1d8;
  min-height: 220px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #2d5c4c;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
}

.form-panel {
  flex: 1.1;
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(31, 36, 40, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-panel select,
.form-panel input,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c4be;
  font-size: 0.95rem;
  width: 100%;
}

.form-aside {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  background: #e8efe9;
  padding: 18px;
  border-radius: 18px;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 60px;
  background: #1f2428;
  color: #f8f6f2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f8f6f2;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #2d5c4c;
  color: #f8f6f2;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(31, 36, 40, 0.18);
  z-index: 10;
}

.sticky-cta:hover,
.sticky-cta:focus {
  opacity: 0.9;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(31, 36, 40, 0.16);
  padding: 18px;
  max-width: 320px;
  z-index: 11;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.muted {
  color: #6a6f73;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-inline {
  text-decoration: underline;
}

.split-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: stretch;
}

.highlight-panel {
  flex: 1;
  background: #f4f0ea;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bg-visual {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background-color: #d9d1c6;
  min-height: 260px;
}

.bg-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
