* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1f23;
  background: #f7f5f2;
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid #e2e2df;
}

.topbar .page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav .ad-label {
  font-size: 0.85rem;
  background: #fdebd2;
  color: #5a3b19;
  padding: 6px 10px;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #0b4f6c;
  color: #ffffff;
  font-weight: 600;
}

.btn.secondary {
  background: #e6c9a8;
  color: #2a1f16;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #0b4f6c;
  color: #0b4f6c;
}

.hero {
  padding: 64px 0 48px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.img-box {
  background: #d8d3cc;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

.img-box.tall {
  min-height: 360px;
}

.img-box.medium {
  min-height: 280px;
}

.section {
  padding: 52px 0;
}

.section.alt {
  background: #ffffff;
}

.section .section-title {
  font-size: 2rem;
  margin: 0 0 12px;
}

.highlight {
  background: #e9f2f6;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.mt-24 {
  margin-top: 24px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card .price {
  font-weight: 700;
  color: #0b4f6c;
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 12% -10% auto -10%;
  height: 140px;
  background: #f5e2c5;
  opacity: 0.7;
}

.layered .page {
  position: relative;
  z-index: 1;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f1efe9;
  font-size: 0.9rem;
}

.form-wrap {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2d2cf;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  background: #131a1d;
  color: #f2f4f6;
  padding: 42px 0 56px;
}

.footer .page {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background: #ffefd6;
  color: #4b2c0b;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.bg-city {
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-city .btn {
  background: #ffffff;
  color: #1b1f23;
}

.bg-legal {
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-legal .section-title {
  color: #ffffff;
}

.small-note {
  font-size: 0.9rem;
  color: #4d4f53;
}

.contact-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
}

@media (max-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .topbar .page {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
