* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1d1f24;
  background-color: #f6f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 8vw;
  background: rgba(246, 245, 242, 0.9);
  border-bottom: 1px solid #e2e0dc;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #c29f5a;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 70px 8vw 90px;
  background: linear-gradient(120deg, rgba(20, 30, 48, 0.8), rgba(32, 58, 67, 0.7)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  color: #fefaf0;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin: 0;
  max-width: 720px;
}

.hero p {
  max-width: 560px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary,
.btn-secondary,
.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: #c29f5a;
  color: #1d1f24;
}

.btn-secondary {
  border-color: #fefaf0;
  color: #fefaf0;
}

.btn-soft {
  background: #fefaf0;
  color: #1d1f24;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-soft:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.section {
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #1f2a38;
  color: #fdfaf4;
}

.section.layered {
  position: relative;
  background: #fefaf0;
  overflow: hidden;
}

.section.layered::before {
  content: "";
  position: absolute;
  inset: 30% -20% auto;
  height: 200px;
  background: rgba(194, 159, 90, 0.12);
  transform: rotate(-5deg);
  z-index: 0;
}

.section .content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.highlight-box {
  border-left: 4px solid #c29f5a;
  padding: 20px;
  background: #f9f6ef;
}

.insight-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(31, 42, 56, 0.08);
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  flex: 1 1 160px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial {
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eee6d5;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e9e4da;
}

.service-card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: #5a4b2a;
  font-size: 1.1rem;
}

.cta-inline {
  color: #c29f5a;
  font-weight: 600;
  text-decoration: underline;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e0d8c6;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d0c4;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.footer {
  background: #131a23;
  color: #fefaf0;
  padding: 50px 8vw;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  background: #c29f5a;
  color: #1d1f24;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-figure {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  padding: 22px;
  border-radius: 20px;
  max-width: 420px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.background-panel {
  background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
  border-radius: 24px;
  padding: 28px;
  color: #fefaf0;
}

.map-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e4ddcf;
}

.mini-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #f1ece3;
  border-radius: 999px;
  font-size: 0.8rem;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .mini-grid {
    flex-direction: row;
  }
}
