* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #10211f;
  --muted: #5b6b68;
  --accent: #1e6b5b;
  --accent-soft: #d9efe9;
  --surface: #f6f7f4;
  --panel: #ffffff;
  --warm: #f2e9dd;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: var(--panel);
  border-bottom: 1px solid #e2e6e4;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  gap: 20px;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.nav-links a:hover {
  background: var(--accent);
  color: #fff;
}

.page {
  padding: 48px 6%;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
}

.panel-card {
  background: var(--panel);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(16, 33, 31, 0.08);
}

.panel-image {
  flex: 1 1 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #dbe7e2;
  min-height: 280px;
}

.panel-image img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 12px 0 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cta-button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cta-button.secondary {
  background: var(--warm);
  color: var(--ink);
}

.cta-link {
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
}

.band {
  background: var(--warm);
  padding: 36px;
  border-radius: 22px;
  margin-bottom: 48px;
}

.bg-image {
  color: #f6f7f4;
  position: relative;
  overflow: hidden;
}

.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 24, 22, 0.55);
}

.bg-image > * {
  position: relative;
  z-index: 1;
}

.bg-energy {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-forest {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  background: var(--panel);
  border-radius: 20px;
  padding: 22px;
  flex: 1 1 220px;
  box-shadow: 0 14px 30px rgba(16, 33, 31, 0.08);
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  margin-bottom: 12px;
  background: #dbe7e2;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.form-shell {
  background: var(--panel);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(16, 33, 31, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #ccd7d3;
  border-radius: 10px;
  font-size: 1rem;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

footer {
  background: #0f1e1c;
  color: #f3f6f4;
  padding: 36px 6%;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.footer-links a {
  color: #f3f6f4;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--panel);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.hidden {
  display: none;
}

.list-split {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.info-block {
  flex: 1 1 240px;
  background: var(--panel);
  padding: 18px;
  border-radius: 16px;
}

.section-image {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  background: #d8e2dd;
  margin-bottom: 16px;
}

@media (max-width: 840px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
