*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #112118;
  --muted: #5b6c60;
  --mist: #e9f1ec;
  --leaf: #2a6b4f;
  --sea: #1c4a5f;
  --sand: #f4efe8;
  --sun: #e6b35c;
  --shadow: rgba(17, 33, 24, 0.15);
  --radius: 22px;
  --max: 1140px;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

body {
  margin: 0;
  background: #f9fbf9;
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  font-size: 0.9rem;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding: 10px 0 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 6vw;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero {
  background: var(--mist);
  padding: 40px 6vw 60px;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0 0 16px;
}

.hero-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}

.btn.primary {
  background: var(--leaf);
  color: #fff;
}

.btn.ghost {
  border-color: var(--leaf);
  color: var(--leaf);
  background: transparent;
}

.offset-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px var(--shadow);
  padding: 26px;
  position: relative;
  top: 16px;
}

.image-stack {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-stack img {
  border-radius: var(--radius);
  box-shadow: 0 12px 24px var(--shadow);
  width: min(240px, 100%);
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row .panel {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 26px;
}

.asym-row .panel.dark {
  background: var(--sea);
  color: #f6f7f5;
}

.quote-strip {
  background: var(--leaf);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 22px var(--shadow);
}

.service-card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.cta-banner {
  background: #fff;
  border: 1px solid #dae4dd;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-wrap {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7e0da;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--sea);
  font-weight: 600;
}

.impact-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.impact-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border-left: 6px solid var(--sun);
}

.footer {
  padding: 40px 6vw 60px;
  background: #0f1e17;
  color: #f1f4f1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer small {
  color: #cdd4d0;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--sun);
  color: #2b2418;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 26px rgba(36, 28, 10, 0.25);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 26px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--leaf);
  color: #fff;
}

.cookie-reject {
  background: #e1e8e2;
  color: var(--ink);
}

.mini-callout {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 16px 26px var(--shadow);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #f0f5f1;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--leaf);
  font-weight: 600;
}

@media (min-width: 860px) {
  .hero-layout {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }

  .hero-copy,
  .hero-visual {
    flex: 1;
  }

  .asym-row {
    flex-direction: row;
  }

  .asym-row .panel {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .impact-row {
    flex-direction: row;
  }

  .impact-card {
    flex: 1;
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid .field {
    flex: 1;
  }
}
