* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1e1e1e;
  background-color: #f6f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  padding: 28px 6vw 14px;
}

.nav-shell {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand strong {
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}

.ad-label {
  font-size: 0.9rem;
  background: #e6d6c9;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-self: flex-start;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: flex-end;
  font-size: 0.98rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:focus,
.nav-links a:hover {
  border-color: #4f6b51;
}

.hero {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1517849845537-4d257902454a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 60px 6vw;
  background-color: #d8d3c9;
}

.hero-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  max-width: 520px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #4f6b51;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #1f2d2a;
}

.btn.ghost {
  background: transparent;
  color: #1f2d2a;
  border: 1px solid #1f2d2a;
}

.section {
  padding: 70px 6vw;
}

.section-alt {
  background: #fff;
}

.section-offset {
  display: flex;
  gap: 50px;
  align-items: center;
}

.section-offset.reverse {
  flex-direction: row-reverse;
}

.section-offset .text-block {
  flex: 1.1;
}

.section-offset .image-block {
  flex: 0.9;
  background-color: #e6e1da;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.inline-link {
  color: #4f6b51;
  text-decoration: underline;
  font-weight: 600;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature span {
  font-weight: 700;
  color: #4f6b51;
}

.services {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 230px;
  background: #fdfaf7;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.service-card .image-frame {
  background-color: #e0dad2;
  height: 180px;
}

.service-card .card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1f2d2a;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1478098711619-5ab0b478d6e6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d4d8d2;
  border-radius: 28px;
  padding: 50px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.testimonial {
  background: rgba(255, 255, 255, 0.85);
  color: #1f2d2a;
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 200px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.form-shell label {
  font-weight: 600;
}

.form-shell select,
.form-shell input {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c8c0b6;
  font-size: 1rem;
}

.form-note {
  font-size: 0.92rem;
  color: #505050;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

footer {
  background: #1f2d2a;
  color: #f4efe9;
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.legal-box {
  font-size: 0.9rem;
  color: #d5cfc8;
}

.page-hero {
  padding: 60px 6vw 20px;
}

.page-hero h1 {
  font-size: 2.1rem;
  margin-bottom: 12px;
}

.simple-section {
  padding: 24px 6vw 60px;
  max-width: 920px;
}

.simple-section h2 {
  font-size: 1.4rem;
  margin: 22px 0 10px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  padding: 18px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.thank-you {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  max-width: 560px;
}

@media (max-width: 900px) {
  .section-offset {
    flex-direction: column;
  }

  .hero {
    min-height: 60vh;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 600px) {
  .nav-links {
    justify-content: flex-start;
  }

  .hero-content {
    padding: 24px;
  }
}
