* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2424;
  background: #f7f6f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: #2a5b5f;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

header {
  padding: 24px 6vw 0;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  background: #f1d6a2;
  color: #3c2d18;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 0 80px;
}

.section {
  padding: 40px 6vw;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 50%;
}

.split .visual {
  flex: 1 1 50%;
}

.hero {
  min-height: 60vh;
  color: #f7f6f2;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  background: rgba(20, 30, 32, 0.72);
  padding: 64px 6vw;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin-bottom: 18px;
}

.hero p {
  max-width: 560px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2a5b5f;
  color: #f7f6f2;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  border: 1px solid #2a5b5f;
  color: #2a5b5f;
}

.inline-cta {
  font-weight: 600;
}

.image-frame {
  background-color: #d6d9d3;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(27, 36, 38, 0.08);
}

.service-card img {
  width: 100%;
  height: 160px;
}

.price-tag {
  font-weight: 700;
  color: #16474b;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-item {
  background: #eef1ec;
  padding: 14px 16px;
  border-radius: 12px;
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 28px rgba(27, 36, 38, 0.1);
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd1c8;
  font-size: 1rem;
}

.form-card button {
  align-self: flex-start;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.82);
  padding: 16px 18px;
  border-radius: 14px;
}

.bg-sunrise {
  background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-mountain {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 40px 6vw 60px;
  background: #182426;
  color: #f7f6f2;
}

.footer a {
  color: #f7f6f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #e4e6e2;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #1f2424;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  max-width: 340px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.page-hero {
  padding: 40px 6vw;
  background: #eef1ec;
}

.simple-section {
  padding: 32px 6vw 60px;
}

.contact-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(27, 36, 38, 0.08);
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .hero-overlay {
    padding: 48px 6vw;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
  }
}
