* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-dark: #0f2a1f;
  --green-mid: #1d4f39;
  --green-soft: #a3c6b6;
  --sand: #f4f0e6;
  --ink: #1a1a1a;
  --accent: #e8a848;
  --stone: #e0e5df;
  --shadow: 0 12px 30px rgba(15, 42, 31, 0.12);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--sand);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.asymmetric-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  gap: 24px;
}

.nav-logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--green-mid);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 56px;
}

.hero-copy {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 24px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  color: var(--green-dark);
}

.hero-visual {
  flex: 1 1 360px;
  position: relative;
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  bottom: -22px;
  left: 32px;
  background: var(--green-mid);
  color: white;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--green-mid);
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-light {
  background: white;
  color: var(--green-mid);
  border: 1px solid var(--green-mid);
}

.btn-accent {
  background: var(--accent);
  color: #3a2b10;
}

.section {
  margin: 80px 0;
}

.section.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.section.offset {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
  background: var(--stone);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.bg-leaf {
  background-image: linear-gradient(
      rgba(244, 240, 230, 0.9),
      rgba(244, 240, 230, 0.9)
    ),
    url("https://images.unsplash.com/photo-1471879832106-c7ab9e0cee23?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-title {
  font-size: 1.8rem;
  color: var(--green-dark);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--green-soft);
  font-size: 0.85rem;
  color: var(--green-mid);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: white;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card h3 {
  color: var(--green-dark);
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  background: var(--green-dark);
  color: white;
  padding: 28px;
  border-radius: 22px;
}

.floating-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 320px;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: white;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--green-soft);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd5d0;
  font-size: 1rem;
}

.footer {
  background: #0c1f17;
  color: #d7e5dd;
  padding: 40px 0;
}

.footer a {
  color: #d7e5dd;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: white;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.media-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.media-strip img {
  flex: 1 1 180px;
  min-height: 140px;
  object-fit: cover;
}

.side-by-side {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.side-by-side > div {
  flex: 1 1 280px;
}

.highlight {
  background: var(--green-soft);
  padding: 20px;
  border-radius: 16px;
}

@media (max-width: 780px) {
  .hero {
    flex-direction: column;
  }

  .asymmetric-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
  }
}
