*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: #f7f4ee;
  color: #1f221c;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #1f221c;
  color: #fff;
  padding: 8px 12px;
  z-index: 10;
}

.skip-link:focus {
  left: 10px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 12px;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 14px;
}

.site-nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.site-nav a:focus,
.site-nav a:hover {
  border-bottom-color: #2a5d3d;
}

.ad-label {
  font-size: 12px;
  background: #f3e2b1;
  padding: 4px 8px;
  border-radius: 14px;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?w=1400&q=80");
  background-color: #384536;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 24, 20, 0.42);
}

.hero-inner {
  position: relative;
  margin: 6vw;
  max-width: 560px;
  padding: 28px;
  background: rgba(18, 20, 18, 0.55);
  border-left: 4px solid #b6d38f;
}

.hero-inner h1 {
  margin-top: 0;
  font-size: 38px;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 24px;
  background: #2a5d3d;
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: #ffffff;
  color: #2a5d3d;
}

.section {
  padding: 72px 6vw;
  position: relative;
}

.section.bg-process,
.section.bg-trust {
  background-size: cover;
  background-position: center;
  color: #f7f4ee;
}

.section.bg-process::before,
.section.bg-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 18, 0.55);
}

.section.bg-process > *,
.section.bg-trust > * {
  position: relative;
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1498837167922-ddd27525d352?w=1400&q=80");
  background-color: #2e3a2a;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-color: #2d362b;
}

.section.light {
  background: #fff;
}

.section.accent {
  background: #e6efe0;
}

.section.dark {
  background: #1f221c;
  color: #f7f4ee;
}

.section-title {
  font-size: 28px;
  margin-top: 0;
}

.asym {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.asym.reverse {
  flex-direction: row-reverse;
}

.asym .text-block {
  flex: 1 1 320px;
  min-width: 260px;
}

.asym .media-block {
  flex: 1 1 320px;
  min-width: 260px;
}

.offset-left {
  margin-left: -4vw;
}

.offset-right {
  margin-right: -4vw;
}

.image-frame {
  background-color: #dbe5d0;
  padding: 12px;
  border-radius: 20px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: #2a5d3d;
}

.list-split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.list-split ul {
  flex: 1 1 220px;
  margin: 0;
  padding-left: 18px;
}

.quote {
  padding: 18px;
  border-left: 3px solid #b6d38f;
  margin: 16px 0;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8d2c0;
  font-size: 15px;
  font-family: inherit;
}

.form-row button {
  border: none;
  cursor: pointer;
}

.notice {
  font-size: 14px;
  opacity: 0.8;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #2a5d3d;
  color: #fff;
  padding: 10px 16px;
  border-radius: 24px;
  font-weight: 600;
  z-index: 5;
}

.sticky-cta:focus,
.sticky-cta:hover {
  background: #234c32;
}

.footer {
  padding: 40px 6vw;
  background: #151815;
  color: #dfe6d7;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer a {
  color: #dfe6d7;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #c8d2c0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 6vw;
  align-items: center;
  justify-content: space-between;
  z-index: 6;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 18px;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #2a5d3d;
  color: #fff;
}

.cookie-actions .reject {
  background: #e6efe0;
  color: #1f221c;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.page-hero .text-block {
  flex: 1 1 320px;
}

.page-hero .media-block {
  flex: 1 1 300px;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 14px;
  background: #e6efe0;
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.split-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
}

.split-panel .panel {
  flex: 1 1 280px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
}

.map-block {
  background: #e6efe0;
  padding: 20px;
  border-radius: 16px;
}

.thanks-box {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  max-width: 620px;
}

.reference-list a {
  color: #dfe6d7;
}
