* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background: #f8f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 14px;
  border-bottom: 1px solid #d9d4cc;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

.ad-disclosure {
  font-size: 12px;
  color: #5f5a52;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 48px 0 64px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1;
  background: #d7d0c4;
  border-radius: 18px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

.primary-btn {
  background: #1f3a2e;
  color: #fff;
}

.secondary-btn {
  background: #f1e9dc;
  color: #1f3a2e;
  border: 1px solid #d6cbb9;
}

.ghost-btn {
  background: transparent;
  border: 1px solid #1f3a2e;
  color: #1f3a2e;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 56px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-media {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #d7d0c4;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.accent-block {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #ebe6dd;
}

.service-media {
  background: #d7d0c4;
}

.service-media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.service-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-tag {
  font-weight: 600;
  color: #1f3a2e;
}

.inline-cta {
  color: #1f3a2e;
  border-bottom: 1px solid #1f3a2e;
  display: inline-block;
  padding-bottom: 2px;
}

.bg-panel {
  background: #1f3a2e;
  color: #fff;
  padding: 48px 0;
  position: relative;
}

.texture-section {
  background-color: #1f3a2e;
  background-image: url("https://images.unsplash.com/photo-1471879832106-c7ab9e0cee23?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.lush-section {
  background-color: #223a2e;
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.bg-panel-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 32px;
  align-items: center;
}

.bg-panel-image {
  flex: 1;
  min-height: 240px;
  border-radius: 20px;
  overflow: hidden;
  background: #2c4a3c;
}

.bg-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.form-section {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #ebe6dd;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d6cbb9;
  font-size: 14px;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  padding: 40px 0;
  font-size: 13px;
  color: #5f5a52;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.legal-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.legal-grid > div {
  flex: 1 1 260px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f3a2e;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #d6cbb9;
  border-radius: 16px;
  padding: 16px;
  display: none;
  z-index: 120;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 36px 0 18px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight {
  background: #f1e9dc;
  padding: 18px;
  border-radius: 14px;
}

.two-col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 260px;
}

@media (max-width: 860px) {
  .hero,
  .split,
  .bg-panel-content {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
