* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  gap: 24px;
  background: #efe9e2;
  position: relative;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #4b5563;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-toggle {
  border: 1px solid #1f2933;
  background: #fffaf5;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav[data-open="false"] .nav-links {
  display: none;
}

.hero {
  display: flex;
  gap: 36px;
  padding: 80px 6vw 60px;
  position: relative;
  background: #f3ede6;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-content,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1.1;
  background: #ffffff;
  padding: 32px 32px 24px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(31, 41, 51, 0.1);
}

.hero-media {
  flex: 0.9;
  align-self: flex-end;
  transform: translateY(36px);
  padding: 14px;
  border-radius: 22px;
}

.hero-media img {
  border-radius: 16px;
}

.section {
  padding: 70px 6vw;
}

.section.asymmetric {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.offset-card {
  flex: 1;
  min-width: 260px;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(31, 41, 51, 0.08);
}

.offset-image {
  flex: 1;
  min-width: 260px;
  background: #dde6e8;
  padding: 18px;
  border-radius: 20px;
  transform: translateY(-24px);
}

.section.accent {
  background: #efe9e2;
}

.split-block {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: stretch;
}

.split-block .block {
  flex: 1;
  min-width: 260px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  position: relative;
}

.block.highlight {
  background: #1f2933;
  color: #f8fafc;
}

.services-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1;
  min-width: 230px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.image-wrap {
  padding: 0;
}

.bg-sand {
  background: #e7dcd0;
}

.bg-cream {
  background: #f2e9e1;
}

.bg-mist {
  background: #e7eff0;
}

.bg-clay {
  background: #efe3da;
}

.bg-stone {
  background: #e9eceb;
}

.bg-slate {
  background: #dde6e8;
}

.bg-ash {
  background: #e2e6e3;
}

.service-card img {
  height: 180px;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1f2933;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f2933;
  color: #f8fafc;
  font-weight: 600;
  border: none;
}

.btn.light {
  background: #ffffff;
  color: #1f2933;
  border: 1px solid #1f2933;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd2d9;
  font-size: 0.95rem;
  width: 100%;
}

.form-wrap button {
  cursor: pointer;
}

.two-col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.two-col .col {
  flex: 1;
  min-width: 260px;
}

.testimonial {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 12px;
}

.footer {
  background: #1f2933;
  color: #f9fafb;
  padding: 40px 6vw;
  margin-top: auto;
}

.footer a {
  color: #f9fafb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fffaf5;
  border: 1px solid #1f2933;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 16px 6vw;
  border-top: 1px solid #d9e2ec;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 12;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-card {
  background: #dbe3e6;
  padding: 16px;
  border-radius: 18px;
}

.map-card img {
  border-radius: 12px;
  height: 220px;
}

.note {
  font-size: 0.95rem;
  color: #4b5563;
}

@media (max-width: 920px) {
  .hero {
    flex-direction: column;
  }

  .hero-media {
    transform: none;
  }

  .nav[data-open="false"] .nav-links {
    display: none;
  }
}
