.root {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f4ef;
  margin: 0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #f7f4ef;
}

a {
  color: #143f6b;
  text-decoration: none;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 0 10px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  font-size: 20px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #f0d7c4;
  color: #3e2c23;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 60px 32px;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 560px;
}

.hero h1 {
  font-size: 42px;
  margin: 0 0 18px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  margin: 0 0 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #f8efe4;
  color: #2c1f18;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background-color: #143f6b;
  color: #ffffff;
}

.section {
  margin: 60px 0;
}

.section-title {
  font-size: 28px;
  margin: 0 0 18px;
}

.asymmetric {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.asymmetric.reverse {
  flex-direction: row-reverse;
}

.asymmetric .text {
  flex: 1 1 340px;
}

.asymmetric .image {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #e6e0d8;
  min-height: 240px;
}

.asymmetric img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .card-image {
  border-radius: 14px;
  overflow: hidden;
  background-color: #d9d1c7;
  height: 160px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.price {
  font-weight: 700;
  color: #2c1f18;
}

.story-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 28px;
  border-radius: 22px;
  background-color: #ece5dc;
}

.story-panel .wide {
  flex: 1 1 360px;
}

.story-panel .narrow {
  flex: 1 1 220px;
  background-color: #d8cfc3;
  border-radius: 16px;
  overflow: hidden;
  min-height: 200px;
}

.story-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-band {
  padding: 40px;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.cta-home {
  background-image: url("https://images.unsplash.com/photo-1507209696998-3c532be9b2b5?w=1400&q=80");
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(33, 25, 20, 0.55);
}

.cta-band .cta-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 14px;
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6cbbf;
  font-size: 14px;
  background-color: #faf7f2;
}

.form-panel textarea {
  min-height: 90px;
  resize: vertical;
}

.testimonial-line {
  font-style: italic;
  margin-bottom: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #143f6b;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.sticky-cta a {
  color: #ffffff;
  font-weight: 600;
}

.footer {
  border-top: 1px solid #dbcfc2;
  padding-top: 24px;
  margin-top: 60px;
  font-size: 14px;
  color: #3d332b;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
}

.disclaimer {
  font-size: 13px;
  background-color: #efe6db;
  padding: 14px;
  border-radius: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  padding: 18px;
  max-width: 320px;
  z-index: 6;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
}

.page-hero .text {
  flex: 1 1 320px;
}

.page-hero .image {
  flex: 1 1 280px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #e0d6cc;
  min-height: 220px;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 860px) {
  .hero h1 {
    font-size: 34px;
  }

  .sticky-cta {
    left: 18px;
    right: auto;
  }
}
