* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1d1f;
  background: #f7f5f2;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8vw;
  gap: 16px;
  background: #f7f5f2;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #e6d9c7;
  padding: 6px 10px;
  border-radius: 16px;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-media {
  background: #d6d2cc;
  height: 520px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  position: absolute;
  left: 8vw;
  bottom: 60px;
  max-width: 520px;
  background: rgba(247, 245, 242, 0.9);
  padding: 24px 28px;
  border-radius: 20px;
}

.hero-content h1 {
  margin: 0 0 12px 0;
  font-size: 2.4rem;
}

.hero-content p {
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 28px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: #1f5b50;
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: #1f5b50;
  border: 1px solid #1f5b50;
}

.btn.ghost {
  background: transparent;
  border: 1px dashed #1f5b50;
  color: #1f5b50;
}

.btn:hover,
.btn:focus,
.link:hover,
.link:focus {
  opacity: 0.85;
}

.section {
  padding: 70px 8vw;
}

.section-bg {
  position: relative;
  overflow: hidden;
  background: #d6d2cc;
}

.section-bg .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.section-bg .bg-content {
  position: relative;
  z-index: 1;
  background: rgba(247, 245, 242, 0.92);
  padding: 28px;
  border-radius: 18px;
  max-width: 620px;
}

.section.light {
  background: #fbfaf7;
}

.section.dark {
  background: #1f2422;
  color: #f7f5f2;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.asym-media {
  flex: 1 1 340px;
  min-width: 280px;
  background: #d8d2c8;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  height: 320px;
}

.asym-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offset-card {
  margin-top: -40px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card-image {
  height: 170px;
  background: #dcd2c8;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 3px solid #1f5b50;
  padding-left: 16px;
  margin: 20px 0;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #ffffff;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.form-wrap label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c3b8;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
}

.footer {
  margin-top: auto;
  padding: 40px 8vw;
  background: #1a1d1c;
  color: #f7f5f2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-note {
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 820px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 50;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-title {
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.text-block {
  line-height: 1.7;
  max-width: 780px;
}

.image-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-tile {
  flex: 1 1 240px;
  height: 220px;
  background: #d8d2c8;
  border-radius: 16px;
  overflow: hidden;
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
