* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c241c;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #1e5c3a;
  text-decoration: none;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  background: #e7efe6;
  color: #1a3b27;
  padding: 6px 10px;
  border-radius: 20px;
  max-width: 220px;
  text-align: right;
}

.section {
  padding: 56px 6vw;
  position: relative;
}

.section--soft {
  background: #eef2ea;
}

.section--dark {
  background: #172219;
  color: #f2f5ef;
}

.section--bg {
  background-image: linear-gradient(rgba(18, 30, 20, 0.55), rgba(18, 30, 20, 0.55)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f5f7f2;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero__text {
  flex: 1 1 320px;
  min-width: 280px;
  padding: 20px 0 40px;
}

.hero__media {
  flex: 1 1 320px;
  min-height: 360px;
  transform: translateY(20px);
}

.image-frame {
  background-color: #dde6d6;
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  background: #1e5c3a;
  color: #f7f6f2;
  padding: 12px 18px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--light {
  background: #f7f6f2;
  color: #1e5c3a;
  border: 1px solid #c6d2c2;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.offset-row__text {
  flex: 1 1 320px;
}

.offset-row__media {
  flex: 1 1 280px;
  min-height: 260px;
  margin-top: -40px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.card--lift {
  transform: translateY(-20px);
  background: #f5f1e7;
}

.card__media {
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #dfe8da;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 18px;
  background: #ffffff;
  border-radius: 18px;
}

.step--offset {
  margin-left: 6vw;
  background: #eef2ea;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7d1c6;
  font: inherit;
  background: #f7f6f2;
}

.sticky-cta {
  flex: 1 1 200px;
  align-self: flex-start;
  position: sticky;
  top: 20px;
  background: #1e5c3a;
  color: #f7f6f2;
  padding: 18px;
  border-radius: 16px;
}

.sticky-cta a {
  color: #f7f6f2;
  font-weight: 600;
}

.quote {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
}

.footer {
  padding: 40px 6vw 60px;
  background: #111a12;
  color: #e6ece2;
}

.footer a {
  color: #c3d3c6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-col {
  flex: 1 1 200px;
}

.legal-note {
  font-size: 0.85rem;
  color: #cdd6c8;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  width: min(680px, 92vw);
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.simple-page {
  padding-top: 10px;
}

.simple-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
}

.image-slim {
  max-width: 520px;
  margin-top: 20px;
}
