* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2421;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.brand {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.ad-label {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #8c887e;
  font-size: 0.78rem;
  color: #5d5a51;
  background: #fefbf7;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 54px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
}

.split-media {
  flex: 1;
}

.img-frame {
  background: #d8d2c8;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  min-height: 320px;
}

.img-frame.small {
  min-height: 240px;
}

.img-frame.tall {
  min-height: 420px;
}

.section-alt {
  background: #efe9e1;
}

.section-dark {
  background: #1f2421;
  color: #f5f2ec;
}

.section-dark .ad-label {
  border-color: #b9b4a8;
  color: #e7e2d8;
  background: transparent;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1f2421;
  background: #1f2421;
  color: #fefbf7;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1f2421;
}

.btn.light {
  background: #fefbf7;
  color: #1f2421;
  border-color: #fefbf7;
}

.btn:hover {
  opacity: 0.9;
}

.inline-link {
  text-decoration: underline;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fefbf7;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card .price {
  font-weight: 700;
  font-size: 1.1rem;
}

.form-block {
  background: #fefbf7;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9c3b9;
  font-size: 0.98rem;
  font-family: inherit;
  background: #fff;
}

.form-note {
  font-size: 0.9rem;
  color: #6b675f;
}

.two-col {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 220px;
}

.list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.list li {
  margin-bottom: 8px;
}

.footer {
  padding: 36px 0 54px;
  background: #111513;
  color: #e4dfd4;
}

.footer a {
  color: inherit;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.legal {
  font-size: 0.88rem;
  color: #c6c1b6;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 380px;
  background: #1f2421;
  color: #f6f3ef;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
}

.muted {
  color: #6b675f;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.center {
  text-align: center;
}

.contact-block {
  background: #fefbf7;
  border-radius: 16px;
  padding: 20px;
}

.references a {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
