* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1e1e1e;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1f5c4a;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

header {
  background: #f2efe9;
  border-bottom: 1px solid #e2ddd6;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: #6f6a62;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
}

.cta-primary,
.cta-secondary,
.cta-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 22px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: #1f5c4a;
  color: #fff;
}

.cta-secondary {
  background: #f1c40f;
  color: #3b2f00;
}

.cta-inline {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #1f5c4a;
  font-weight: 600;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  padding: 64px 32px;
}

.section.alt {
  background: #ffffff;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel h1,
.panel h2,
.panel h3 {
  margin: 0;
}

.hero-visual {
  min-height: 360px;
  border-radius: 24px;
  background: #d6d0c8;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.img-frame {
  background-color: #e2ddd6;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #f7f5f2;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e5e1da;
}

.card img {
  height: 160px;
}

.price {
  font-weight: 700;
  color: #1f5c4a;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #efe7d9;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #6b5c4a;
  width: fit-content;
}

.form-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e5e1da;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d7d1c9;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.note {
  font-size: 13px;
  color: #6f6a62;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.sticky-cta a {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

footer {
  background: #f2efe9;
  padding: 40px 32px;
  font-size: 13px;
  color: #57524b;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.legal-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-grid .panel {
  min-width: 260px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e5e1da;
  max-width: 360px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.highlight {
  background: #fff4cc;
  border-radius: 16px;
  padding: 16px;
}

.inline-link {
  font-weight: 600;
}

.map-box {
  background: #e9e4dc;
  border-radius: 18px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.references a {
  display: inline-block;
  margin-right: 10px;
}

@media (max-width: 860px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
