* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f4f1;
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: #3030b8;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: #ffffff;
  border-bottom: 1px solid #ded8d2;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4d41;
  max-width: 320px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav a:focus,
.nav a:hover {
  border-bottom-color: #3030b8;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding: 48px 6% 90px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero {
  background: #efe7df;
  border-radius: 22px;
  padding: 36px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.btn {
  background: #3030b8;
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: #ffffff;
  color: #3030b8;
  border: 1px solid #3030b8;
}

.btn.light {
  background: #fef6ee;
  color: #7a4a12;
  border: 1px solid #e6cbb0;
}

.image-card {
  border-radius: 18px;
  overflow: hidden;
  background: #dcd2c8;
  min-height: 280px;
}

.info-band {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: #1f1f2b;
  color: #f5f3f1;
  padding: 26px;
  border-radius: 20px;
}

.info-item {
  flex: 1 1 200px;
}

.stacked-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e1dad3;
}

.service-card .card-image {
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background: #d8d1cb;
}

.service-card .price {
  font-weight: 700;
  color: #1f1f2b;
}

.section-accent {
  background: #ffffff;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 18px 30px rgba(20, 20, 20, 0.08);
}

.section-image {
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #cfd7dd;
}

.form-shell {
  background: #1f1f2b;
  color: #fefefe;
  padding: 32px;
  border-radius: 22px;
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-shell label {
  font-size: 0.9rem;
}

.form-shell input,
.form-shell select {
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
}

.form-shell button {
  align-self: flex-start;
}

.footer {
  background: #13131a;
  color: #e8e4e0;
  padding: 36px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a {
  color: #e8e4e0;
}

.references {
  font-size: 0.85rem;
  color: #b9b2ab;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  border-radius: 999px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  max-width: 320px;
  border: 1px solid #ded8d2;
  box-shadow: 0 12px 24px rgba(30, 30, 30, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-banner.hidden {
  display: none;
}

.banner-actions {
  display: flex;
  gap: 10px;
}

.muted {
  color: #6a5e54;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e1dad3;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    position: static;
    margin: 0 6% 30px;
  }
}
