* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1f1c;
  background-color: #f6f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: #f6f4ef;
  border-bottom: 1px solid #ded8cf;
  gap: 24px;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 4px 10px;
  border: 1px solid #a79c8a;
  border-radius: 18px;
  font-size: 0.85rem;
  background: #fff3db;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 6vw 32px;
  gap: 28px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
  line-height: 1.2;
}

.hero-text p {
  margin: 0 0 20px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background: #3f5b37;
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn-secondary {
  background: #c8b79d;
  color: #1d1f1c;
}

.hero-media {
  flex: 1 1 320px;
  display: flex;
  justify-content: flex-end;
}

.img-wrap {
  background-color: #d7d0c2;
  border-radius: 20px;
  overflow: hidden;
}

.hero-media .img-wrap {
  max-width: 520px;
  width: 100%;
}

.offset-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 6vw;
  align-items: center;
}

.offset-section .text-block {
  flex: 1 1 320px;
  max-width: 520px;
}

.offset-section .media-block {
  flex: 1 1 320px;
}

.layered {
  position: relative;
  margin: 0 6vw 40px;
  background: #ffffff;
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.layered::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 40px;
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: #efe7d7;
  z-index: -1;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 200px;
  background: #f9f6f0;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .img-wrap {
  height: 150px;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: #2f4b2b;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 36px 6vw;
  background: #e8e1d3;
  align-items: center;
}

.split-band .stats {
  flex: 1 1 240px;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 600;
}

.testimonial {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 16px;
  margin-top: 12px;
}

.bg-panel {
  background: #f1ede4;
  padding: 48px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  position: relative;
}

.bg-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.bg-garden::before {
  background-image: url("https://images.unsplash.com/photo-1471879832106-c7ab9e0cee23?w=1400&q=80");
}

.bg-panel .panel-content,
.bg-panel .panel-media {
  position: relative;
  z-index: 1;
}

.panel-media {
  flex: 1 1 300px;
}

.panel-content {
  flex: 1 1 320px;
}

.form-section {
  padding: 48px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  max-width: 640px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfc6b8;
  font-family: inherit;
}

.form-card button {
  padding: 12px 18px;
  border-radius: 20px;
  border: none;
  background: #3f5b37;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #3f5b37;
  color: #fff;
  padding: 12px 16px;
  border-radius: 20px;
  font-weight: 600;
  z-index: 20;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 48px;
  background: #e8e1d3;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-note {
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  border-radius: 16px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #3f5b37;
  color: #fff;
}

.cookie-reject {
  background: #c8b79d;
  color: #1d1f1c;
}

.page-hero {
  padding: 40px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 2.2rem;
}

.page-hero .img-wrap {
  max-width: 440px;
}

.content-block {
  padding: 24px 6vw 48px;
  max-width: 900px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-panel {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  max-width: 520px;
}

@media (max-width: 900px) {
  .hero-text h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
