* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2b25;
  background-color: #f5f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid #d8ded6;
  background-color: #f5f6f2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #dce5d5;
  font-size: 0.82rem;
}

.hero {
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #2a3a32;
  color: #f7f9f6;
}

.hero .hero-inner {
  padding: 56px 0 64px;
  background: linear-gradient(0deg, rgba(14, 27, 21, 0.78), rgba(14, 27, 21, 0));
  width: 100%;
}

.hero h1 {
  font-size: 2.8rem;
  margin: 0 0 18px;
}

.hero p {
  max-width: 540px;
  font-size: 1.1rem;
  margin: 0 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f2b25;
  background-color: #f1f4ef;
  font-weight: 600;
  cursor: pointer;
}

.btn-dark {
  background-color: #1f2b25;
  color: #f7f9f6;
  border-color: #1f2b25;
}

.section {
  padding: 56px 0;
}

.section-dark {
  background-color: #202c27;
  color: #f7f9f6;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.magazine-col {
  flex: 1 1 280px;
  min-width: 260px;
}

.magazine-wide {
  flex: 2 1 520px;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.img-frame {
  background-color: #dfe7db;
  border-radius: 18px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e2e6df;
}

.service-card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: #1c5b43;
}

.story-band {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.story-band .img-frame {
  flex: 1 1 300px;
  min-height: 240px;
}

.story-band .story-text {
  flex: 1 1 360px;
}

.form-section {
  background-color: #edf1ec;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.form-panel {
  flex: 1 1 340px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e1e6de;
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd7cc;
  margin-bottom: 14px;
  font-family: inherit;
}

.form-panel textarea {
  min-height: 110px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background-color: #f7f9f6;
  border-top: 1px solid #d7ded6;
  padding: 12px 0;
  z-index: 5;
}

.sticky-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer {
  padding: 40px 0;
  background-color: #1b2420;
  color: #f0f4ef;
  margin-top: auto;
}

.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border: 1px solid #d5ddd5;
  border-radius: 16px;
  padding: 18px;
  width: min(340px, 90vw);
  box-shadow: 0 10px 30px rgba(13, 20, 16, 0.15);
  display: none;
  z-index: 20;
}

.cookie-banner p {
  margin: 0 0 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  font-size: 0.95rem;
  opacity: 0.86;
}

.hero-forest {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.hero-mountain {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1443890923422-7819ed4101c0?w=1400&q=80");
}

.hero-turbine {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80");
}

.section-wave {
  background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f9f6;
  background-color: #22332d;
}

.callout {
  padding: 20px 22px;
  border-radius: 16px;
  background-color: #e8efe7;
  border: 1px solid #d2dace;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
}

.small-text {
  font-size: 0.92rem;
}
