* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2a1f;
  --muted: #4a5a4a;
  --accent: #2f6b3c;
  --accent-dark: #244f2f;
  --sand: #f4f1ea;
  --mist: #eef3ee;
  --clay: #e2ddd1;
  --leaf: #cfe4d3;
  --stone: #d7d8d2;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 28px 7vw 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--leaf);
  padding: 6px 10px;
  border-radius: 16px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero {
  position: relative;
  padding: 90px 7vw 110px;
  color: var(--white);
  background-color: #1f2a1f;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 24, 0.55);
}

.hero-content {
  position: relative;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  color: #e8f0e7;
}

.btn {
  border: none;
  background: var(--accent);
  color: var(--white);
  padding: 12px 22px;
  font-size: 1rem;
  border-radius: 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary {
  background: var(--accent-dark);
}

.section {
  padding: 70px 7vw;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.section-intro {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.intro-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.intro-image {
  flex: 0.9;
  background: var(--leaf);
  border-radius: 18px;
  overflow: hidden;
}

.offset-block {
  background: var(--mist);
  padding: 50px 7vw 70px;
  margin: 0 4vw;
  border-radius: 24px;
  display: flex;
  gap: 34px;
  align-items: center;
}

.offset-block .text {
  flex: 1.1;
}

.offset-block .panel-image {
  flex: 0.9;
  background: var(--clay);
  border-radius: 18px;
  overflow: hidden;
  transform: translateY(20px);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 260px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.card-image {
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--stone);
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.asym-split {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.asym-split .wide {
  flex: 1.3;
  background: var(--clay);
  border-radius: 20px;
  overflow: hidden;
}

.asym-split .narrow {
  flex: 0.7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.layered {
  position: relative;
  padding: 90px 7vw;
  background-color: var(--mist);
  background-image: url("https://images.unsplash.com/photo-1660570327062-84fcf0967110?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHw1Mnx8R2FydGVucGZsZWdlJTJDJTIwZGllJTIwU2Fpc29ucmh5dGhtZW4lMjBlcm5zdCUyMG5pbW10LnxkZXwwfDB8fHwxNzgzNjY0MDcwfDA&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 241, 234, 0.9);
}

.layered .layered-content {
  position: relative;
  max-width: 760px;
  background: var(--white);
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.testimonial {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--mist);
  padding: 20px;
  border-radius: 18px;
}

.testimonial-image {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--leaf);
  flex-shrink: 0;
}

.form-section {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd6cf;
  font-size: 1rem;
  font-family: inherit;
}

.form-message {
  font-size: 0.95rem;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: var(--accent-dark);
  color: var(--white);
  padding: 16px 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.sticky-cta p {
  margin: 0;
  font-size: 0.98rem;
}

footer {
  padding: 40px 7vw 60px;
  background: #18231b;
  color: #e8efe7;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #e8efe7;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--white);
  color: var(--ink);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  max-width: 360px;
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.banner-image {
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--stone);
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.two-col {
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.two-col .col {
  flex: 1;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-intro,
  .offset-block,
  .asym-split,
  .two-col {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
