* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1d1a;
  --muted: #5b645c;
  --paper: #f7f6f1;
  --accent: #2c7a4b;
  --accent-dark: #1f5a38;
  --soft: #e6efe6;
  --sand: #efe9df;
  --sky: #e3edf3;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background-color: #d8e3d8;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e1e2dc;
}

.nav-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: #8a4a2f;
  background: #f8e9dc;
  padding: 4px 10px;
  border-radius: 12px;
  align-self: flex-start;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--ink);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.cta-button:hover,
.cta-button:focus {
  background: var(--accent-dark);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  font-weight: 600;
}

.ghost-button:hover,
.ghost-button:focus {
  background: var(--soft);
}

main {
  flex: 1;
}

.section {
  padding: 64px 24px;
}

.section.alt {
  background: var(--soft);
}

.section.sand {
  background: var(--sand);
}

.section.sky {
  background: var(--sky);
}

.section.bg-solar-detail {
  background: linear-gradient(rgba(247, 246, 241, 0.9), rgba(247, 246, 241, 0.9)),
    url("https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section.bg-forest-path {
  background: linear-gradient(rgba(230, 239, 230, 0.92), rgba(230, 239, 230, 0.92)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-content h1,
.split-content h2,
.split-content h3 {
  line-height: 1.2;
}

.split-media {
  flex: 1;
  background: #d8e3d8;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.9rem;
  border: 1px solid #e2e4dc;
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  gap: 16px;
  padding: 16px;
  align-items: center;
}

.service-card img {
  width: 140px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
}

.service-card div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  font-weight: 700;
  text-decoration: underline;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6cc;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.service-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-choice button {
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px solid var(--accent);
  background: #ffffff;
  color: var(--accent-dark);
  cursor: pointer;
  font-weight: 600;
}

.service-choice button:hover,
.service-choice button:focus {
  background: var(--soft);
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  background: #1f241f;
  color: #f4f6f0;
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #f4f6f0;
  text-decoration: underline;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.floating-cta:hover,
.floating-cta:focus {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 10px;
  padding: 8px 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: #dbe3db;
  color: var(--ink);
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-rail {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-rail .split-media {
  min-height: 200px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .service-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-card img {
    width: 100%;
  }

  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
