*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f1f1f;
  background-color: #f7f4f0;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #274060;
  text-decoration: none;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.top-bar {
  background-color: #fff;
  border-bottom: 1px solid #e4ddd4;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #8a5b32;
  background: #fcebd7;
  padding: 6px 10px;
  border-radius: 14px;
  white-space: nowrap;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 28px;
  padding: 60px 0;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split__content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.split__media {
  flex: 1 1 50%;
  border-radius: 28px;
  overflow: hidden;
  background-color: #e4ddd4;
  min-height: 320px;
}

.section {
  padding: 60px 0;
}

.section--light {
  background: #fff;
}

.section--accent {
  background: #f2e7da;
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section__header h2 {
  margin: 0;
  font-size: 2rem;
}

.tagline {
  font-size: 1.1rem;
  color: #5f4d3b;
  max-width: 520px;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 calc(33.333% - 20px);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  box-shadow: 0 10px 30px rgba(22, 22, 22, 0.08);
}

.card__media {
  background-color: #d9d0c7;
  height: 180px;
}

.card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #2e5d48;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #2f5a7d;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.cta-button--secondary {
  background: #c07a45;
}

.cta-button--ghost {
  background: transparent;
  color: #2f5a7d;
  border: 2px solid #2f5a7d;
}

.inline-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  padding: 14px 22px;
  border-radius: 999px;
  background: #1f4e3a;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 20px rgba(31, 78, 58, 0.3);
}

.form-panel {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 36px rgba(24, 24, 24, 0.12);
}

.form-panel label {
  font-weight: 600;
  margin-top: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid #d2c6b7;
  font-family: inherit;
  background: #fcfaf7;
}

.form-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  background: #151515;
  color: #f5f1ea;
  padding: 40px 0;
}

.footer a {
  color: #f5f1ea;
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer__column {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c9c0b7;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 30;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: none;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 260px;
  background: #fff;
  border-left: 5px solid #c07a45;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #2f5a7d;
  color: #fff;
  padding: 24px;
  border-radius: 18px;
}

.info-strip__item {
  flex: 1 1 220px;
}

.no-wrap {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .split,
  .split--reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .card {
    flex: 1 1 100%;
  }
}
