* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1f23;
  background-color: #f6f2ee;
  line-height: 1.6;
}

a {
  color: #1a4fb4;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.88;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background-color: #f3ece6;
  border-bottom: 1px solid #e5dcd3;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #5e5f63;
  background-color: #efe4db;
  padding: 6px 10px;
  border-radius: 999px;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  border: none;
  cursor: pointer;
  padding: 12px 18px;
  font-size: 14px;
  border-radius: 6px;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.primary-btn {
  background-color: #1a4fb4;
  color: #fff;
}

.secondary-btn {
  background-color: #f0d9c6;
  color: #1e1f23;
}

.ghost-btn {
  background-color: transparent;
  border: 1px solid #1a4fb4;
  color: #1a4fb4;
}

.split {
  display: flex;
  gap: 40px;
  padding: 60px 6vw;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  max-width: 520px;
}

.split .media {
  flex: 1 1 320px;
  max-width: 520px;
}

.split h1,
.split h2 {
  margin-top: 0;
  line-height: 1.2;
}

.hero {
  background-color: #fdf8f2;
}

.hero .tagline {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: #8a6f5a;
}

.image-frame {
  background-color: #e9ded4;
  border-radius: 14px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.city-backdrop {
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fdf8f2;
}

.city-backdrop .overlay {
  background-color: rgba(27, 31, 45, 0.68);
  padding: 60px 6vw;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 16px;
  background-color: #fff;
  padding: 18px;
  border-radius: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.service-card img {
  width: 120px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
  background-color: #e9ded4;
}

.service-card .price {
  font-weight: 700;
  color: #1a4fb4;
}

.highlight {
  background-color: #f0d9c6;
  border-radius: 16px;
  padding: 26px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.form-panel {
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(20, 24, 40, 0.08);
}

.form-panel label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #5c5d62;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #d8d0c7;
  font-size: 14px;
  font-family: inherit;
}

.form-panel textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  box-shadow: 0 10px 20px rgba(20, 24, 40, 0.2);
}

.plain-email {
  font-weight: 600;
  color: #1e1f23;
}

footer {
  padding: 40px 6vw 60px;
  background-color: #efe7e0;
  font-size: 13px;
  color: #4b4c50;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-disclaimer {
  max-width: 760px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #1e1f23;
  color: #fdf8f2;
  padding: 18px 20px;
  border-radius: 12px;
  max-width: 360px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 50px 6vw 20px;
  background-color: #fdf8f2;
}

.legal-block {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
}

.page-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  background-color: #e9ded4;
}

.no-wrap {
  white-space: nowrap;
}

@media (max-width: 860px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
