:root {
  color-scheme: light;
  --bg: #f2f6f2;
  --bg-soft: #e6eee8;
  --surface: rgba(255, 255, 255, 0.86);
  --panel: rgba(247, 250, 247, 0.9);
  --panel-strong: #ffffff;
  --text: #15211c;
  --muted: #52655b;
  --line: rgba(55, 88, 66, 0.24);
  --line-strong: rgba(55, 88, 66, 0.42);
  --accent: #73a60d;
  --accent-strong: #4d7209;
  --warm: #b47432;
  --shadow: 0 22px 70px rgba(31, 47, 39, 0.14);
  --hero-left-overlay: rgba(2, 9, 8, 0.58);
  --hero-mid-overlay: rgba(2, 9, 8, 0.28);
  --hero-soft-overlay: rgba(2, 9, 8, 0.04);
  --hero-top-overlay: rgba(2, 9, 8, 0.02);
  --hero-bottom-overlay: rgba(2, 9, 8, 0.08);
  --split-left-overlay: rgba(242, 246, 242, 0.64);
  --split-mid-overlay: rgba(242, 246, 242, 0.25);
  --split-right-overlay: rgba(242, 246, 242, 0.04);
}

html.dark {
  color-scheme: dark;
  --bg: #020908;
  --bg-soft: #06120f;
  --surface: rgba(7, 18, 15, 0.78);
  --panel: rgba(8, 22, 18, 0.86);
  --panel-strong: #08120f;
  --text: #f2f7ed;
  --muted: #c5d0c0;
  --line: rgba(115, 166, 13, 0.28);
  --line-strong: rgba(115, 166, 13, 0.5);
  --accent: #73a60d;
  --accent-strong: #a7d348;
  --warm: #d49a42;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  --hero-left-overlay: rgba(2, 9, 8, 0.74);
  --hero-mid-overlay: rgba(2, 9, 8, 0.42);
  --hero-soft-overlay: rgba(2, 9, 8, 0.08);
  --hero-top-overlay: rgba(2, 9, 8, 0.06);
  --hero-bottom-overlay: rgba(2, 9, 8, 0.2);
  --split-left-overlay: rgba(2, 9, 8, 0.92);
  --split-mid-overlay: rgba(2, 9, 8, 0.62);
  --split-right-overlay: rgba(2, 9, 8, 0.22);
}

* {
  box-sizing: border-box;
}

.home-wordmark > span,
.brand > span,
.brand span {
  color: #a9c92f !important;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 32rem),
    radial-gradient(circle at 82% 16%, color-mix(in srgb, var(--warm) 13%, transparent), transparent 30rem),
    linear-gradient(180deg, var(--bg), var(--bg-soft) 48%, var(--bg));
  color: var(--text);
}

body,
input,
select,
textarea {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 400;
}

.font-display {
  font-family: Montserrat, Arial, sans-serif;
}

body h1,
body h1[class] {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700 !important;
  letter-spacing: 0;
}

body h2,
body h2[class] {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 600 !important;
  letter-spacing: 0;
}

body h3,
body h3[class] {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 500 !important;
  letter-spacing: 0;
}

button,
.site-header,
.mobile-menu,
.btn-primary,
.btn-secondary {
  font-family: Inter, Arial, sans-serif;
}

.bg-moss {
  background-color: var(--accent);
}

.text-moss {
  color: var(--accent-strong);
}

.shadow-glow {
  box-shadow: 0 24px 80px rgba(115, 166, 13, 0.18);
}

img {
  max-width: 100%;
}

a,
button {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  border-radius: 6px;
  background: var(--accent);
  color: #07100d;
  font-weight: 700;
  padding: 0.75rem 1rem;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.site-header nav[aria-label="Hauptnavigation"] {
  gap: clamp(0.85rem, 1.45vw, 1.75rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 1.95vw, 1.62rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand span,
.accent-text,
.section-title span {
  color: var(--accent);
}

.nav-link {
  position: relative;
  color: var(--text);
  font-size: clamp(0.82rem, 1.05vw, 0.95rem);
  font-family: Inter, Arial, sans-serif;
  font-weight: 500;
  opacity: 0.86;
  transition: color 160ms ease, opacity 160ms ease;
}

@media (min-width: 1024px) and (max-width: 1240px) {
  .site-header > div {
    gap: 0.8rem;
  }

  .site-header nav[aria-label="Hauptnavigation"] {
    gap: 0.85rem;
  }

  .site-header .brand {
    font-size: 1.2rem;
  }

  .site-header .rounded-md {
    padding-inline: 0.85rem;
  }
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.85rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-strong);
  opacity: 1;
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.icon-button {
  display: inline-flex;
  width: 2.65rem;
  height: 2.65rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--accent-strong);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.icon-button:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: var(--panel-strong);
}

.icon-button i[data-lucide]::before,
.btn-primary i[data-lucide]::before,
.focus-card span i[data-lucide]::before,
.blog-card a i[data-lucide]::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.social-mark {
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
}

.social-mark-instagram {
  font-size: 1.2rem;
  font-weight: 500;
}

.icon-button i[data-lucide="mail"]::before {
  content: "@";
}

.icon-button i[data-lucide="sun"]::before {
  content: "☼";
}

.icon-button i[data-lucide="moon"]::before {
  content: "◐";
}

.icon-button i[data-lucide="menu"]::before {
  content: "☰";
}

.btn-primary i[data-lucide="arrow-right"]::before,
.focus-card span i[data-lucide="arrow-right"]::before,
.blog-card a i[data-lucide="arrow-right"]::before {
  content: "→";
}

.mobile-menu {
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  border-color: var(--line);
}

.mobile-menu a {
  display: block;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 500;
  padding: 0.95rem 0;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background-color: var(--bg);
  background-position: var(--hero-position, center);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--text);
}

.hero-section > .relative {
  display: grid;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  padding-top: clamp(7.5rem, 14vh, 9rem);
  padding-bottom: clamp(4rem, 8vh, 6rem);
}

.hero-home {
  background-image: url("../images/hero-valley.jpg");
  --hero-position: 56% center;
}

.hero-ueber,
.hero-leistungen {
  background-image: url("../images/sapling-hero-wide.jpg");
  --hero-position: 62% center;
}

.hero-impressum {
  background-image: url("../images/sapling-hero-wide.jpg");
  --hero-position: 62% center;
}

.hero-kommunen {
  background-image: url("../images/hero-valley.jpg");
  --hero-position: 60% center;
}

.hero-unternehmen {
  background-image: url("../images/company-campus.jpg");
  --hero-position: 62% center;
}

.hero-umweltbildung {
  background-image: url("../images/education-workshop.jpg");
  --hero-position: 56% center;
}

.hero-blog {
  background-image: url("../images/blog-raptor.jpg");
  --hero-position: center;
}

.page-hero {
  min-height: 100vh;
  min-height: 100svh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--hero-left-overlay) 0%, var(--hero-mid-overlay) 38%, var(--hero-soft-overlay) 66%, transparent 84%),
    linear-gradient(180deg, var(--hero-top-overlay), transparent 54%, var(--hero-bottom-overlay));
}

html.dark .hero-section h1 {
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.38);
}

html.dark .hero-section .section-copy,
html.dark .hero-section .hero-list,
html.dark .hero-section .script-line {
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.42);
}

html:not(.dark) .hero-section {
  color: #f2f7ed;
}

html:not(.dark) .hero-section h1,
html:not(.dark) .hero-section .section-copy,
html:not(.dark) .hero-section .hero-list {
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.34);
}

html:not(.dark) .hero-section .section-copy,
html:not(.dark) .hero-section .hero-list li {
  color: rgba(242, 247, 237, 0.92);
}

html:not(.dark) .hero-section .section-title span,
html:not(.dark) .hero-section .accent-text {
  color: #91c52a;
}

html:not(.dark) .hero-section .script-line {
  color: #e5aa58;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.32);
}

.eyebrow {
  display: none;
}

.ornament {
  width: 5.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.ornament::after {
  content: "";
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  margin: -0.25rem auto 0;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--bg);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 8px;
  padding: 0.75rem 1.1rem;
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 72%, #f7d56e));
  color: #07100d;
  box-shadow: var(--shadow);
}

.btn-secondary {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
}

.button-arrow {
  display: inline-flex;
  align-items: center;
  font-size: 1.05rem;
  line-height: 1;
}

.section-pad {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.section-anchor {
  scroll-margin-top: 6rem;
}

.section-title {
  margin-top: 1rem;
  max-width: 14ch;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(2.45rem, 5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
}

.section-heading {
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
}

.section-copy {
  margin-top: 1.35rem;
  max-width: 43rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.9;
}

.script-line {
  margin-top: 1rem;
  color: var(--warm);
  font-family: "Open Sans", Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3.1vw, 2.7rem);
  line-height: 1.25;
}

.section-head {
  max-width: 52rem;
  margin: clamp(4rem, 6vw, 6rem) auto 2rem;
  text-align: center;
}

.section-head p:last-child {
  color: var(--muted);
  margin-top: 0.9rem;
  line-height: 1.8;
}

.lead-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .lead-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.bg-panel {
  background: var(--panel);
}

.border-line {
  border-color: var(--line);
}

.focus-card,
.value-card,
.format-card,
.service-card,
.blog-card,
.contact-tile,
.contact-form,
.media-card,
.benefit-panel,
.notice-strip,
.topic-panel,
.process-panel,
.project-route,
.vision-band,
.assurance-band,
.event-note,
.table-wrap,
.cta-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.focus-card {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  padding: 2rem;
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.focus-card::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid var(--line);
  transform: rotate(22deg);
  opacity: 0.28;
}

.focus-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: color-mix(in srgb, var(--panel) 84%, var(--accent) 16%);
}

.focus-card h2,
.focus-card h3 {
  margin-top: 1.5rem;
  font-size: 1.45rem;
  font-weight: 900;
  text-transform: uppercase;
}

.focus-card p {
  margin-top: 1.35rem;
  max-width: 18rem;
  color: var(--muted);
  line-height: 1.8;
}

.focus-card span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 2rem;
  color: var(--accent-strong);
  font-weight: 800;
}

.icon-ring {
  display: flex;
  width: 4.4rem;
  height: 4.4rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  color: var(--accent-strong);
}

.media-card {
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 25rem;
  object-fit: cover;
}

.curved-media {
  border-radius: 8px;
}

.value-card,
.format-card,
.service-card {
  padding: 2rem;
  text-align: center;
}

.value-card h3,
.format-card h3,
.service-card h3 {
  margin-top: 1.2rem;
  color: var(--accent-strong);
  font-size: 1.25rem;
  font-weight: 800;
}

.value-card p,
.format-card p,
.service-card p {
  margin-top: 0.75rem;
  color: var(--muted);
  line-height: 1.75;
}

.split-hero {
  display: grid;
  gap: 2rem;
  align-items: end;
  min-height: 32rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(90deg, var(--split-left-overlay), var(--split-mid-overlay), var(--split-right-overlay)),
    url("../images/hero-valley.jpg") center / cover;
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .split-hero {
    grid-template-columns: minmax(0, 1fr) 21rem;
  }
}

.benefit-panel {
  padding: 1.35rem;
}

.benefit-panel h2,
.benefit-panel h3,
.notice-strip h2,
.notice-strip h3 {
  color: var(--accent-strong);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.hero-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
  max-width: 38rem;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
}

.hero-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin-top: 0.22rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background:
    radial-gradient(circle at 70% 30%, var(--accent) 0 18%, transparent 20%),
    linear-gradient(135deg, transparent 45%, var(--accent) 46% 54%, transparent 55%);
}

.check-list {
  display: grid;
  gap: 0.85rem;
  color: var(--text);
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.65;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-strong);
  font-weight: 900;
}

.check-list.compact {
  margin-top: 1rem;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.table-wrap {
  overflow-x: auto;
  background: color-mix(in srgb, var(--panel) 88%, transparent);
}

.pricing-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.05rem 1.25rem;
  text-align: center;
  vertical-align: middle;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  width: 26%;
  text-align: left;
}

.pricing-table th {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 900;
}

.pricing-table th span {
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-table a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 55%, transparent);
  text-underline-offset: 0.2em;
}

.pricing-table a:hover {
  color: var(--accent-strong);
}

.pricing-table tbody td:not(:first-child) {
  color: var(--accent-strong);
  font-size: 1.35rem;
  font-weight: 900;
}

.pricing-table tbody td:first-child {
  color: var(--text);
  font-size: 0.95rem;
}

.pricing-table tr:nth-child(even) td {
  background: color-mix(in srgb, var(--accent) 5%, transparent);
}

.pricing-table .price-row td {
  padding-block: 1.35rem;
  color: var(--text);
  font-size: 1.2rem;
}

.pricing-table .price-row td:first-child {
  color: var(--accent-strong);
  font-size: 1.1rem;
  font-weight: 900;
}

.process-panel {
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

@media (min-width: 980px) {
  .process-panel {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
  }
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 700px) {
  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.process-steps span {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 700;
  text-align: center;
}

.process-steps svg,
.format-card svg,
.service-card svg {
  color: var(--accent-strong);
}

.project-route {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}

.route-steps {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .route-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.route-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  min-height: 12rem;
}

@media (min-width: 900px) {
  .route-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -1.05rem;
    top: 3.15rem;
    color: var(--accent-strong);
    font-size: 1.5rem;
    font-weight: 900;
  }
}

.route-number {
  position: absolute;
  left: calc(50% - 3.15rem);
  top: 0.05rem;
  z-index: 1;
  display: inline-flex;
  width: 1.65rem;
  height: 1.65rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #07100d;
  font-size: 0.85rem;
  font-weight: 900;
}

.route-icon {
  display: flex;
  width: 5rem;
  height: 5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent-strong);
}

.route-step h3 {
  color: var(--accent-strong);
  font-size: 1.15rem;
  font-weight: 900;
}

.route-step p {
  max-width: 13rem;
  color: var(--muted);
  line-height: 1.6;
}

.vision-band {
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--panel) 88%, transparent), var(--panel)),
    url("../images/hero-valley.jpg") center bottom / cover;
}

.vision-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 760px) {
  .vision-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.vision-grid span {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
}

.vision-grid .icon-ring {
  margin-inline: auto;
}

.package-grid,
.module-grid,
.service-detail-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 820px) {
  .package-grid,
  .module-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.module-grid {
  align-items: stretch;
}

@media (min-width: 900px) {
  .service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.package-card,
.module-card,
.service-detail {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.package-card,
.module-card {
  padding: 1.5rem;
}

.module-card {
  display: flex;
  min-height: 14rem;
  flex-direction: column;
}

.package-card h3,
.module-card h3,
.service-detail h3 {
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.35;
}

.package-card p,
.module-card p,
.service-detail p {
  color: var(--muted);
  line-height: 1.75;
}

.package-card ul,
.module-card ul,
.service-detail ul {
  margin-top: 1rem;
}

.module-price {
  display: inline-flex;
  align-self: flex-end;
  margin-top: auto;
  padding-top: 1.15rem;
  color: var(--accent-strong);
  font-size: 1.05rem;
  font-weight: 900;
  text-align: right;
}

.service-detail {
  padding: clamp(1.4rem, 3vw, 2rem);
  scroll-margin-top: 6rem;
}

.service-kicker {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #07100d;
  font-weight: 900;
}

.service-detail header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.service-detail .check-list {
  margin-top: 1.25rem;
}

.page-intro-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.notice-strip {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.notice-strip p {
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.7;
}

.format-card {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  align-items: center;
}

.format-card > svg,
.format-card > i[data-lucide] {
  display: block;
  flex: 0 0 auto;
  margin-inline: auto;
}

.format-card p {
  max-width: 18rem;
  margin-inline: auto;
}

.topic-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}

.topic-panel h3 {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 500;
}

.topic-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

@media (min-width: 760px) {
  .topic-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.topic-grid span {
  display: grid;
  min-height: 6.5rem;
  place-items: center;
  gap: 0.5rem;
  border-right: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
}

.topic-grid span:last-child {
  border-right: 0;
}

.topic-more {
  margin-top: 1.2rem;
  color: var(--accent-strong);
  font-size: 1.05rem;
  font-weight: 800;
}

.service-card {
  position: relative;
  overflow: hidden;
  text-align: left;
}

.service-card span {
  position: absolute;
  right: 1.2rem;
  top: 1.05rem;
  color: color-mix(in srgb, var(--accent) 55%, transparent);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}

.service-card h3 {
  color: var(--text);
}

.cta-band {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  overflow: hidden;
  padding: 1rem;
}

@media (min-width: 820px) {
  .cta-band {
    grid-template-columns: 11rem 1fr auto;
    padding: 1.2rem 1.5rem;
  }
}

.cta-band img {
  width: 100%;
  height: 10rem;
  border-radius: 8px;
  object-fit: cover;
}

.cta-band h2 {
  margin-top: 0.35rem;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
}

.cta-band p:last-child {
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.75;
}

.assurance-band {
  display: grid;
  gap: 1rem;
  align-items: stretch;
  overflow: hidden;
  margin-top: 2rem;
  padding: clamp(1rem, 2vw, 1.4rem);
}

@media (min-width: 980px) {
  .assurance-band {
    grid-template-columns: minmax(33rem, 1.85fr) repeat(3, minmax(9.25rem, 0.78fr));
  }
}

.assurance-lead {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 640px) {
  .assurance-lead {
    grid-template-columns: 10.75rem minmax(0, 1fr);
  }
}

.assurance-lead img {
  display: block;
  width: 100%;
  height: 9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: 56% 50%;
}

.assurance-intro h2 {
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1.55rem, 1.8vw, 1.95rem);
  font-weight: 600;
  line-height: 1.12;
  max-width: 28ch;
}

.assurance-intro strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--accent-strong);
  font-size: 0.98rem;
  line-height: 1.45;
}

.assurance-intro p,
.assurance-item p {
  margin-top: 0.65rem;
  color: var(--muted);
  line-height: 1.6;
}

.assurance-item {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-left: 1px solid var(--line);
  padding: 0.1rem 0 0.1rem 1rem;
}

.assurance-item .icon-ring {
  width: 3.6rem;
  height: 3.6rem;
  align-self: center;
}

@media (min-width: 761px) {
  .assurance-item .icon-ring {
    transform: translateX(-0.5rem);
  }
}

.assurance-item h3 {
  margin-top: 0.85rem;
  color: var(--accent-strong);
  font-weight: 900;
  line-height: 1.35;
  max-width: 11rem;
}

.event-note {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  margin-top: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.event-note h2 {
  color: var(--accent-strong);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
}

.event-note p {
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.75;
}

.blog-card {
  overflow: hidden;
}

.blog-card-image-wrap {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0 !important;
}

.blog-card-image-wrap img {
  display: block;
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .blog-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .blog-card-image-wrap img {
    height: 100%;
    min-height: 16rem;
  }
}

.blog-card > .blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  margin-top: 0.8rem;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.3;
}

.blog-card p:not(.eyebrow) {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.75;
}

.blog-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  color: var(--accent-strong);
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
}

.blog-card-meta {
  color: var(--accent-strong) !important;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4 !important;
}

.blog-list-status {
  grid-column: 1 / -1;
  min-height: 8rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  padding: 2rem;
  text-align: center;
}

.blog-all-link,
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-strong);
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
}

.blog-page-hero {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.blog-page-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.06;
}

.article-hero {
  padding: clamp(8.5rem, 13vw, 11rem) 0 clamp(2.5rem, 5vw, 4.5rem);
}

.article-header {
  display: grid;
  gap: 1.35rem;
}

.article-header h1 {
  max-width: 19ch;
  font-size: clamp(2.35rem, 5.5vw, 4.65rem);
  line-height: 1.08;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  color: var(--accent-strong);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

.article-excerpt {
  max-width: 50rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.75;
}

.article-cover {
  width: 100%;
  max-height: 36rem;
  aspect-ratio: 16 / 8;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.article-body {
  width: min(48rem, calc(100% - 2.5rem));
  max-width: 48rem;
  margin-inline: auto;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.9;
}

.article-body > * + * {
  margin-top: 1.35rem;
}

.article-body h2 {
  margin-top: 3rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.25;
}

.article-body h3 {
  margin-top: 2.25rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.35;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 0.6rem;
  padding-left: 1.4rem;
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

main strong {
  font-weight: 500;
}

.article-body blockquote {
  border-left: 3px solid var(--accent);
  color: var(--muted);
  font-style: italic;
  padding: 0.8rem 0 0.8rem 1.3rem;
}

.article-body img {
  display: block;
  width: 100%;
  max-height: 32rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.article-body hr {
  border: 0;
  border-top: 1px solid var(--line);
}

.article-error {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  padding: 2rem;
}

.contact-tile {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  color: var(--text);
  line-height: 1.55;
}

.contact-tile svg {
  flex: 0 0 auto;
  color: var(--accent-strong);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--panel-strong) 82%, transparent);
  color: var(--text);
  padding: 0.9rem 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.5rem;
  color: var(--accent-strong);
  font-weight: 800;
}

.site-footer {
  border-color: var(--line);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 300;
}

.site-footer .brand {
  font-weight: 700;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  padding-block: 1rem;
}

.footer-legal a {
  transition: color 160ms ease;
}

.footer-legal a:hover,
.footer-legal a[aria-current="page"] {
  color: var(--accent-strong);
}

.legal-intro {
  max-width: 44rem;
}

.legal-intro .legal-subtitle {
  color: #91c52a;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
}

.legal-intro .legal-copy {
  margin-top: 1.4rem;
  max-width: 34rem;
  color: rgba(242, 247, 237, 0.92);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}

.legal-grid {
  display: grid;
  gap: 1rem;
}

.legal-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: start;
  gap: 1.25rem;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

.legal-card h2,
.legal-card h3 {
  color: var(--accent-strong);
  line-height: 1.25;
}

.legal-card h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.legal-card h3 {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600 !important;
}

.legal-card p,
.legal-card address {
  margin-top: 0.8rem;
  color: var(--text);
  font-style: normal;
  line-height: 1.8;
}

.legal-card a {
  color: var(--accent-strong);
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 48%, transparent);
  text-underline-offset: 0.22em;
}

.legal-card .icon-ring {
  flex: 0 0 auto;
}

.legal-card--wide {
  grid-column: 1 / -1;
}

.legal-brand {
  color: var(--accent-strong);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 600;
}

@media (max-width: 760px) {
  .article-header {
    padding-right: 2rem;
  }

  .article-header h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.2rem);
    hyphens: auto;
    overflow-wrap: break-word;
  }

  .hero-section {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, var(--hero-top-overlay), transparent 28%, var(--hero-bottom-overlay)),
      linear-gradient(90deg, var(--hero-left-overlay), var(--hero-mid-overlay) 74%, var(--hero-soft-overlay));
  }

  .section-title {
    max-width: 12ch;
  }

  .hero-unternehmen .section-title {
    max-width: 100%;
    font-size: clamp(1.9rem, 8vw, 2.2rem);
    hyphens: auto;
    overflow-wrap: break-word;
  }

  .notice-strip {
    align-items: flex-start;
  }

  .event-note {
    align-items: flex-start;
  }

  .assurance-item {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 1rem;
  }

  .topic-grid span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .topic-grid span:last-child {
    border-bottom: 0;
  }

  .page-hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-home,
  .hero-kommunen {
    --hero-position: 64% center;
  }

  .hero-ueber,
  .hero-leistungen {
    --hero-position: 72% center;
  }

  .hero-impressum {
    --hero-position: 72% center;
  }

  .hero-unternehmen {
    --hero-position: 58% center;
  }

  .hero-umweltbildung {
    --hero-position: 68% center;
  }

  .hero-blog {
    --hero-position: 22% center;
  }

  .legal-card {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 760px) {
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@supports not (background: color-mix(in srgb, white, black)) {
  body {
    background: var(--bg);
  }

  .site-header,
  .mobile-menu,
  .hero-overlay {
    background: var(--bg);
  }
}

/* Startseite – Gestaltung nach der Kundenvorlage */
.home-page {
  --home-bg: #020b0a;
  --home-panel: rgba(7, 20, 17, 0.88);
  --home-line: rgba(158, 190, 39, 0.43);
  --home-green: #a4c72d;
  --home-green-bright: #badb45;
  --home-copy: #f2f3ec;
  --home-muted: #c8cec5;
  background:
    radial-gradient(circle at 74% 34%, rgba(121, 157, 32, 0.1), transparent 32rem),
    linear-gradient(180deg, #010807, #06110f 48%, #020a09);
  color: var(--home-copy);
}

.home-page .home-shell {
  width: min(100% - 2.5rem, 1240px);
  margin-inline: auto;
}

.home-header {
  border-bottom: 1px solid rgba(148, 170, 148, 0.18);
  background: rgba(1, 10, 9, 0.93);
  backdrop-filter: blur(18px);
}

.home-header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.home-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
}

.home-logo-crop {
  position: relative;
  display: block;
  width: 63px;
  height: 52px;
  overflow: visible;
}

.home-logo-crop::before {
  position: absolute;
  z-index: 0;
  top: 3px;
  left: 5px;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(159, 188, 58, 0.42);
  border-radius: 50%;
  background: #f1f0e8;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.42),
    0 5px 18px rgba(0, 0, 0, 0.18);
  content: "";
}

.home-logo-crop img {
  position: absolute;
  z-index: 1;
  top: 3px;
  left: 0;
  width: 60px;
  height: auto;
  max-width: none;
  clip-path: inset(0 0 16% 0);
  filter:
    drop-shadow(0 0 0.55px rgba(255, 255, 255, 0.98))
    drop-shadow(0 0 1.1px rgba(255, 255, 255, 0.62));
}

.home-wordmark {
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.42rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.home-wordmark > span,
.home-about-band h2 span {
  color: var(--home-green);
}

.home-nav {
  align-items: stretch;
  align-self: stretch;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.home-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.home-nav a::after {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--home-green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.home-nav a:hover,
.home-nav a.active {
  color: var(--home-green-bright);
}

.home-nav a:hover::after,
.home-nav a.active::after {
  transform: scaleX(1);
}

.home-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-contact,
.home-menu-button {
  align-items: center;
  justify-content: center;
  border: 1px solid var(--home-line);
  border-radius: 7px;
  color: #f6f8ee;
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.home-contact {
  gap: 0.55rem;
  min-height: 42px;
  padding-inline: 1rem;
  background: linear-gradient(135deg, #6f8f20, #8ba82a);
  color: #fff;
  font-size: 0.88rem;
}

.home-menu-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  background: rgba(12, 29, 24, 0.9);
}

.home-contact:hover,
.home-menu-button:hover {
  border-color: var(--home-green);
  transform: translateY(-1px);
}

.home-mobile-menu {
  margin: 0;
  padding: 0.25rem 1.25rem 1rem;
  background: rgba(1, 10, 9, 0.98);
}

.home-mobile-menu a {
  border-color: rgba(158, 190, 39, 0.22);
  color: #f2f4ed;
}

.home-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #020c0b url("../images/hero-valley.jpg") 64% center / cover no-repeat;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 10, 9, 0.99) 0%, rgba(1, 10, 9, 0.96) 29%, rgba(1, 10, 9, 0.69) 49%, rgba(1, 10, 9, 0.08) 77%),
    linear-gradient(180deg, rgba(1, 9, 8, 0.16), rgba(1, 9, 8, 0.2) 72%, #020b0a 100%);
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  padding-top: 6.4rem;
  padding-bottom: 3rem;
}

.home-hero-copy {
  max-width: 550px;
}

.home-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(3.35rem, 5.6vw, 5.3rem);
  font-weight: 600 !important;
  letter-spacing: -0.035em !important;
  line-height: 0.98;
  text-wrap: balance;
}

.home-hero-copy h1 span {
  display: block;
  margin-top: 0.17em;
  color: var(--home-green);
}

.home-hero-lead {
  max-width: 490px;
  margin: 2rem 0 0;
  color: #eef1ea;
  font-size: clamp(1.15rem, 2.1vw, 1.48rem);
  line-height: 1.5;
}

.home-hero-lead strong {
  color: var(--home-green-bright);
  font-weight: 500;
}

.home-leaf-divider {
  display: flex;
  width: 90px;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  color: var(--home-green);
}

.home-leaf-divider span {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--home-green));
}

.home-leaf-divider span:last-child {
  background: linear-gradient(90deg, var(--home-green), transparent);
}

.home-hero-text {
  max-width: 490px;
  margin: 1.25rem 0 0;
  color: var(--home-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.home-section {
  position: relative;
  padding: 3.6rem 0;
}

.home-focus-section {
  margin-top: -1.65rem;
  padding-top: 0;
}

.home-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.home-focus-card {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 84% 82%, rgba(135, 172, 38, 0.1), transparent 9rem),
    linear-gradient(145deg, rgba(6, 18, 15, 0.98), rgba(8, 23, 19, 0.84));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  color: #fff;
  padding: 1.5rem;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-focus-card::after {
  position: absolute;
  right: -20px;
  bottom: -32px;
  width: 150px;
  height: 120px;
  border: 1px solid rgba(152, 187, 42, 0.13);
  border-radius: 55% 45% 0 0;
  content: "";
  transform: rotate(-9deg);
}

.home-focus-card:hover {
  border-color: rgba(175, 211, 54, 0.75);
  box-shadow: 0 22px 70px rgba(103, 139, 27, 0.13);
  transform: translateY(-4px);
}

.home-focus-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-focus-title h3 {
  margin: 0;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600 !important;
  text-transform: uppercase;
}

.home-image-icon {
  position: relative;
  display: block;
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  overflow: hidden;
}

.home-image-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 132px;
  height: auto;
  max-width: none;
  transform: translate(-50%, -45.5%);
}

.home-focus-card > p {
  max-width: 250px;
  margin: 1.65rem 0 0;
  color: #e2e6df;
  font-size: 1rem;
  line-height: 1.65;
}

.home-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  color: var(--home-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.home-section-heading {
  margin-bottom: 2rem;
  text-align: center;
}

.home-section-heading h2 {
  margin: 0;
  color: #f3f4ef;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.72rem);
  font-weight: 500 !important;
  text-transform: uppercase;
}

.home-leaf-divider.centered {
  margin: 0.8rem auto 0;
}

.home-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-value-card {
  position: relative;
  min-height: 230px;
  border-right: 1px solid rgba(158, 190, 39, 0.34);
  padding: 0.5rem 1.4rem 1rem;
  text-align: center;
}

.home-value-card:last-child {
  border-right: 0;
}

.home-line-icon {
  display: inline-grid;
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--home-green-bright);
}

.home-value-card h3 {
  margin: 0;
  color: var(--home-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500 !important;
}

.home-value-card p {
  margin: 0.8rem auto 0;
  color: #dce0da;
  font-size: 0.9rem;
  line-height: 1.65;
}

.home-blog-section {
  padding-top: 2.25rem;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.home-page .home-blog-grid .blog-card {
  display: grid;
  min-height: 215px;
  grid-template-columns: minmax(180px, 42%) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(5, 17, 14, 0.96), rgba(9, 23, 19, 0.86));
  box-shadow: none;
}

.home-page .home-blog-grid .blog-card > .blog-card-image-wrap {
  min-height: 215px;
}

.home-page .home-blog-grid .blog-card > .blog-card-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 215px;
  object-fit: cover;
}

.home-page .home-blog-grid .blog-card > .blog-card-content {
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
}

.home-page .home-blog-grid .blog-card-meta {
  display: none;
}

.home-page .home-blog-grid .blog-card h3 {
  margin: 0;
  color: #f4f5f0;
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600 !important;
  line-height: 1.5;
}

.home-page .home-blog-grid .blog-card p:not(.blog-card-meta) {
  margin: 0.8rem 0 0;
  color: #d5dad2;
  font-size: 0.9rem;
  line-height: 1.65;
}

.home-page .home-blog-grid .blog-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--home-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
}

.home-blog-all {
  margin-top: 1.25rem;
  text-align: center;
}

.home-blog-all a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--home-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.home-about-section {
  padding-top: 2.4rem;
}

.home-about-band {
  position: relative;
  display: grid;
  min-height: 170px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(4, 15, 12, 0.97), rgba(4, 15, 12, 0.84) 58%, rgba(6, 18, 13, 0.36)),
    url("../images/sapling.jpg") right 44% / cover no-repeat;
  padding: 1.6rem 2rem;
}

.home-about-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(175, 213, 51, 0.88);
  border-radius: 50%;
  color: var(--home-green-bright);
}

.home-about-band h2 {
  margin: 0;
  color: #f5f6f0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 500 !important;
}

.home-about-band p {
  max-width: 600px;
  margin: 0.65rem 0 0;
  color: #e0e4dc;
  font-size: 0.92rem;
  line-height: 1.65;
}

.home-about-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 7px;
  background: linear-gradient(135deg, #769721, #9abc2d);
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.15rem;
}

.home-footer {
  border-top: 1px solid rgba(158, 190, 39, 0.28);
  background: rgba(1, 9, 8, 0.98);
}

.home-footer-main {
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.8fr;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.home-footer-claim {
  border-right: 1px solid rgba(158, 190, 39, 0.34);
  padding-right: 2rem;
}

.home-footer-claim p {
  margin: 0;
  color: #f1f3ed;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1.42;
}

.home-footer-claim span {
  color: var(--home-green-bright);
}

.home-footer-contact {
  display: grid;
  gap: 0.6rem;
}

.home-footer-contact a,
.home-footer-contact .home-footer-address {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #e3e7df;
  font-size: 0.9rem;
  line-height: 1.35;
}

.home-footer-contact svg {
  flex: 0 0 auto;
  color: var(--home-green);
}

.home-socials {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.home-socials a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(171, 209, 48, 0.62);
  border-radius: 50%;
  color: var(--home-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.home-socials a:hover {
  background: var(--home-green);
  color: #06100d;
  transform: translateY(-2px);
}

.home-footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  border-top: 1px solid rgba(158, 190, 39, 0.17);
  padding-top: 0.9rem;
  padding-bottom: 1rem;
}

.home-footer-legal a {
  color: #aeb8af;
  font-size: 0.78rem;
}

.home-footer-legal a:hover {
  color: var(--home-green-bright);
}

/* Transparenzhinweise für KI-gestützte, fotorealistische Bildmotive */
.ai-image-label {
  position: absolute;
  z-index: 8;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  max-width: calc(100% - 2rem);
  align-items: center;
  border: 1px solid rgba(210, 229, 139, 0.2);
  border-radius: 999px;
  background: rgba(2, 12, 10, 0.54);
  box-shadow: none;
  color: rgba(233, 238, 228, 0.78);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.59rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.25;
  padding: 0.22rem 0.45rem;
  pointer-events: none;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.ai-image-label--hero {
  right: max(1rem, calc((100vw - 1380px) / 2 + 1rem));
  bottom: 1.15rem;
}

.ai-image-label--hero-top {
  top: calc(78px + 0.85rem);
  right: 1rem;
  bottom: auto;
}

.ai-image-label--portrait {
  right: auto;
  bottom: 2rem;
  left: 2rem;
}

.ai-image-label--panel-top {
  top: 0.85rem;
  bottom: auto;
}

.about-person-image,
.commune-service-image,
.education-cta-image,
.article-cover-wrap {
  position: relative;
}

.article-cover-wrap .article-cover {
  display: block;
}

@media (max-width: 760px) {
  .ai-image-label {
    right: 0.65rem;
    bottom: 0.65rem;
    max-width: calc(100% - 1.3rem);
    font-size: 0.55rem;
    padding: 0.2rem 0.38rem;
  }

  .ai-image-label--hero,
  .ai-image-label--hero-top {
    right: 0.75rem;
  }

  .ai-image-label--hero-top {
    top: calc(78px + 0.6rem);
    bottom: auto;
  }

  .ai-image-label--portrait {
    right: auto;
    bottom: 1.35rem;
    left: 1.35rem;
  }

  .ai-image-label--panel-top {
    top: 0.65rem;
    bottom: auto;
  }
}

@media (max-width: 1120px) {
  .home-header-inner {
    gap: 0.85rem;
  }

  .home-nav {
    gap: 1rem;
  }

  .home-nav a {
    font-size: 0.82rem;
  }

  .home-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-hero,
  .home-hero-inner {
    min-height: 680px;
  }

  .home-hero {
    background-position: 58% center;
  }

  .home-hero-overlay {
    background:
      linear-gradient(90deg, rgba(1, 10, 9, 0.98), rgba(1, 10, 9, 0.79) 62%, rgba(1, 10, 9, 0.32)),
      linear-gradient(180deg, transparent, #020b0a 100%);
  }

  .home-hero-inner {
    grid-template-columns: 1fr;
  }

  .home-focus-grid,
  .home-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-focus-card:last-child {
    grid-column: auto;
  }

  .home-value-card:nth-child(2) {
    border-right: 0;
  }

  .home-value-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(158, 190, 39, 0.26);
  }

  .home-about-band {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .home-about-button {
    grid-column: 2;
    justify-self: start;
  }

  .home-footer-main {
    grid-template-columns: 1fr 1.4fr;
  }

  .home-socials {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .home-page .home-shell {
    width: min(100% - 2rem, 1240px);
  }

  .home-logo-crop {
    width: 57px;
    height: 48px;
  }

  .home-logo-crop::before {
    top: 4px;
    left: 5px;
    width: 38px;
    height: 38px;
  }

  .home-logo-crop img {
    top: 4px;
    width: 54px;
  }

  .home-hero,
  .home-hero-inner {
    min-height: 660px;
  }

  .home-hero {
    background-position: 62% center;
  }

  .home-hero-overlay {
    background:
      linear-gradient(90deg, rgba(1, 10, 9, 0.96), rgba(1, 10, 9, 0.74)),
      linear-gradient(180deg, rgba(1, 10, 9, 0.22), rgba(1, 10, 9, 0.32) 58%, #020b0a 100%);
  }

  .home-hero-inner {
    padding-top: 7rem;
  }

  .home-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .home-hero-lead {
    font-size: 1.15rem;
  }

  .home-focus-section {
    margin-top: 0;
    padding-top: 2.5rem;
  }

  .home-focus-grid,
  .home-values-grid,
  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .home-focus-card:last-child {
    grid-column: auto;
  }

  .home-focus-card {
    min-height: 255px;
  }

  .home-value-card,
  .home-value-card:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(158, 190, 39, 0.25);
    padding: 1.2rem 0 1.8rem;
  }

  .home-value-card:last-child {
    border-bottom: 0;
  }

  .home-page .home-blog-grid .blog-card {
    grid-template-columns: 1fr;
  }

  .home-page .home-blog-grid .blog-card > .blog-card-image-wrap,
  .home-page .home-blog-grid .blog-card > .blog-card-image-wrap img {
    height: 210px;
    min-height: 210px;
  }

  .home-about-band {
    grid-template-columns: 1fr;
    background:
      linear-gradient(90deg, rgba(4, 15, 12, 0.96), rgba(4, 15, 12, 0.76)),
      url("../images/sapling.jpg") 70% center / cover no-repeat;
    padding: 1.5rem;
  }

  .home-about-icon {
    width: 72px;
    height: 72px;
  }

  .home-about-button {
    grid-column: auto;
    justify-self: stretch;
  }

  .home-footer-main {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .home-footer-claim {
    border-right: 0;
    border-bottom: 1px solid rgba(158, 190, 39, 0.25);
    padding-right: 0;
    padding-bottom: 1.5rem;
  }

  .home-socials {
    grid-column: auto;
    justify-content: flex-start;
  }

  .home-footer-legal {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.8rem 1.2rem;
  }
}

/* Über Naturfokus+ */
.about-page {
  --about-line: rgba(158, 190, 39, 0.42);
  --about-green: #a4c72d;
  --about-green-bright: #badb45;
  --about-copy: #f2f3ec;
  --about-muted: #c8cec5;
  background:
    radial-gradient(circle at 82% 30%, rgba(123, 157, 37, 0.1), transparent 31rem),
    linear-gradient(180deg, #010807, #06110f 48%, #020a09);
  color: var(--about-copy);
}

.about-page .home-shell {
  width: min(100% - 2.5rem, 1240px);
  margin-inline: auto;
}

.about-hero {
  position: relative;
  min-height: 675px;
  overflow: hidden;
  background: #020b0a url("../images/sapling-hero-wide.jpg") 65% center / cover no-repeat;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 10, 9, 0.99) 0%, rgba(1, 10, 9, 0.96) 28%, rgba(1, 10, 9, 0.7) 52%, rgba(1, 10, 9, 0.08) 82%),
    linear-gradient(180deg, rgba(1, 9, 8, 0.16), transparent 56%, #020b0a 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 675px;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.about-hero-copy {
  max-width: 620px;
}

.about-hero-copy h1 {
  margin: 0;
  color: #f7f7f2;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(2.65rem, 4.75vw, 4.55rem);
  font-weight: 500 !important;
  letter-spacing: -0.028em !important;
  line-height: 1.08;
}

.about-hero-copy h1 span {
  color: var(--about-green);
}

.about-leaf-divider {
  display: flex;
  width: 90px;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.6rem;
  color: var(--about-green);
}

.about-leaf-divider span {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--about-green));
}

.about-leaf-divider span:last-child {
  background: linear-gradient(90deg, var(--about-green), transparent);
}

.about-leaf-divider.centered {
  margin: 0.75rem auto 0;
}

.about-hero-copy > p {
  max-width: 540px;
  margin: 1.45rem 0 0;
  color: var(--about-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.about-section {
  position: relative;
  padding: 3.5rem 0;
}

.about-person-section {
  z-index: 2;
  margin-top: -5rem;
  padding-top: 0;
}

.about-person-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.4fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--about-line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 42%, rgba(111, 146, 32, 0.09), transparent 19rem),
    rgba(5, 17, 14, 0.95);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.about-person-image {
  min-height: 430px;
  padding: 1.4rem;
}

.about-person-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 9px;
  object-fit: cover;
  object-position: center 24%;
}

.about-person-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.2rem 3rem;
}

.about-kicker {
  margin: 0;
  color: var(--about-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
}

.about-person-copy h2 {
  margin: 0.25rem 0 0;
  color: #f7f8f2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 500 !important;
  line-height: 1.06;
}

.about-degree {
  margin: 0.55rem 0 0;
  color: var(--about-green-bright);
  font-size: 1.05rem;
  font-weight: 600;
}

.about-role {
  margin: 0.2rem 0 0;
  color: #b9c2b9;
  font-size: 0.86rem;
}

.about-rule {
  width: 42px;
  height: 1px;
  margin: 1.35rem 0 1.15rem;
  background: var(--about-green);
}

.about-person-copy h3 {
  margin: 0;
  color: var(--about-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500 !important;
}

.about-person-copy > p:not(.about-kicker):not(.about-degree):not(.about-role) {
  max-width: 680px;
  margin: 0.65rem 0 0;
  color: #d7ddd5;
  font-size: 0.94rem;
  line-height: 1.7;
}

.about-heading {
  text-align: center;
}

.about-heading h2 {
  margin: 0;
  color: #f5f6f0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 500 !important;
  line-height: 1.15;
}

.about-values-section {
  padding-top: 2.8rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.about-value {
  border-right: 1px solid rgba(158, 190, 39, 0.28);
  padding: 0.5rem 2rem 1rem;
  text-align: center;
}

.about-value:last-child {
  border-right: 0;
}

.about-custom-icon {
  position: relative;
  display: inline-block;
  width: 82px;
  height: 82px;
  overflow: hidden;
  vertical-align: middle;
}

.about-custom-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 139px;
  height: auto;
  max-width: none;
  transform: translate(-50%, -45.5%);
}

.about-value h3 {
  margin: 0.4rem 0 0;
  color: var(--about-green-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500 !important;
}

.about-value p {
  margin: 0.55rem 0 0;
  color: #d6dcd4;
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-process-section {
  padding-top: 1.3rem;
}

.about-process-panel {
  border: 1px solid var(--about-line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(118, 154, 32, 0.1), transparent 24rem),
    rgba(5, 17, 14, 0.85);
  padding: 2.2rem 2rem 2rem;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.about-step {
  position: relative;
  text-align: center;
}

.about-step:not(:last-child)::after {
  display: none;
}

.about-step-number {
  position: absolute;
  z-index: 2;
  top: 0;
  left: calc(50% - 48px);
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--about-green);
  color: #08110d;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.about-step .about-custom-icon {
  width: 86px;
  height: 86px;
}

.about-step .about-custom-icon img {
  width: 146px;
}

.about-step .about-custom-icon.about-icon-unclipped img {
  width: 138px;
}

.about-step h3 {
  margin: 0.45rem 0 0;
  color: var(--about-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600 !important;
}

.about-step p {
  max-width: 220px;
  margin: 0.5rem auto 0;
  color: #d4dad2;
  font-size: 0.88rem;
  line-height: 1.6;
}

.about-vision-section {
  padding-top: 1.2rem;
}

.about-vision-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--about-line);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(3, 14, 11, 0.95), rgba(5, 18, 14, 0.7)),
    url("../images/hero-valley.jpg") center 54% / cover no-repeat;
  padding: 2.2rem 2.4rem 2rem;
}

.about-vision-band .about-heading p {
  margin: 0.5rem 0 0;
  color: var(--about-green-bright);
  font-size: 1rem;
}

.about-vision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.about-vision-grid article {
  text-align: center;
}

.about-vision-grid .about-custom-icon.about-icon-unclipped img {
  width: 134px;
}

.about-vision-grid h3 {
  margin: 0.25rem 0 0;
  color: #f1f3ed;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 500 !important;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .about-hero-overlay {
    background:
      linear-gradient(90deg, rgba(1, 10, 9, 0.98), rgba(1, 10, 9, 0.78) 65%, rgba(1, 10, 9, 0.3)),
      linear-gradient(180deg, transparent, #020b0a 100%);
  }

  .about-person-card {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .about-person-copy {
    padding: 2rem;
  }

  .about-process-grid,
  .about-vision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-step:nth-child(2)::after {
    display: none;
  }

  .about-step:nth-child(-n + 2) {
    padding-bottom: 1.4rem;
  }
}

@media (max-width: 700px) {
  .about-page .home-shell {
    width: min(100% - 2rem, 1240px);
  }

  .about-hero,
  .about-hero-inner {
    min-height: 680px;
  }

  .about-hero {
    background-position: 67% center;
  }

  .about-hero-overlay {
    background:
      linear-gradient(90deg, rgba(1, 10, 9, 0.96), rgba(1, 10, 9, 0.7)),
      linear-gradient(180deg, rgba(1, 10, 9, 0.18), rgba(1, 10, 9, 0.34) 60%, #020b0a 100%);
  }

  .about-hero-inner {
    padding-top: 7rem;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.55rem, 11.8vw, 3.75rem);
  }

  .about-person-section {
    margin-top: -2rem;
  }

  .about-person-card {
    grid-template-columns: 1fr;
  }

  .about-person-image {
    min-height: 360px;
    padding: 1rem;
  }

  .about-person-image img {
    min-height: 330px;
  }

  .about-person-copy {
    padding: 1.2rem 1.3rem 1.7rem;
  }

  .about-values-grid,
  .about-process-grid,
  .about-vision-grid {
    grid-template-columns: 1fr;
  }

  .about-value {
    border-right: 0;
    border-bottom: 1px solid rgba(158, 190, 39, 0.25);
    padding: 1rem 0 1.7rem;
  }

  .about-value:last-child {
    border-bottom: 0;
  }

  .about-process-panel,
  .about-vision-band {
    padding: 1.7rem 1.1rem;
  }

  .about-step {
    border-bottom: 1px solid rgba(158, 190, 39, 0.22);
    padding-bottom: 1.5rem;
  }

  .about-step:last-child {
    border-bottom: 0;
  }

  .about-step:not(:last-child)::after {
    display: none;
  }

  .about-vision-grid article {
    border-bottom: 1px solid rgba(158, 190, 39, 0.2);
    padding-bottom: 1rem;
  }

  .about-vision-grid article:last-child {
    border-bottom: 0;
  }
}

/* Kommunen */
.commune-page {
  --commune-line: rgba(158, 190, 39, 0.4);
  --commune-green: #a4c72d;
  --commune-green-bright: #badb45;
  --commune-copy: #f1f3ed;
  --commune-muted: #c8cec5;
  background:
    radial-gradient(circle at 85% 24%, rgba(123, 157, 37, 0.1), transparent 32rem),
    linear-gradient(180deg, #010807, #06110f 50%, #020a09);
  color: var(--commune-copy);
}

.commune-page .home-shell {
  width: min(100% - 2.5rem, 1240px);
  margin-inline: auto;
}

.commune-hero {
  position: relative;
  overflow: hidden;
  padding-top: 78px;
}

.commune-hero::before {
  position: absolute;
  inset: 78px 0 auto 58%;
  height: 630px;
  background: radial-gradient(circle at center, rgba(118, 154, 31, 0.12), transparent 66%);
  content: "";
}

.commune-hero-inner {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  column-gap: 3.2rem;
  padding-top: 3.5rem;
  padding-bottom: 2.8rem;
}

.commune-hero-copy {
  z-index: 1;
  max-width: 585px;
}

.commune-hero-copy h1 {
  margin: 0;
  color: #f7f8f3;
  font-family: Inter, Arial, sans-serif !important;
  font-size: clamp(2.6rem, 4.35vw, 4.2rem);
  font-weight: 600 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.08;
}

.commune-hero-copy h1 span {
  color: var(--commune-green);
}

.commune-hero-lead {
  margin: 1.3rem 0 0;
  color: #e4e8e1;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.5;
}

.commune-hero-lead strong {
  color: var(--commune-green-bright);
  font-weight: 600;
}

.commune-hero-text {
  max-width: 525px;
  margin: 1.25rem 0 0;
  color: var(--commune-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.commune-hero-image {
  position: absolute;
  z-index: 0;
  top: 2.2rem;
  right: -3rem;
  width: 64%;
  height: 540px;
  min-height: 0;
  overflow: hidden;
  border-radius: 48% 0 42% 48%;
  box-shadow: none;
  opacity: 0.55;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 76%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 76%, transparent 100%);
}

.commune-hero-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 10, 9, 0.72), transparent 38%),
    linear-gradient(180deg, transparent 58%, rgba(2, 11, 9, 0.5));
  content: "";
}

.commune-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}

.commune-benefits {
  z-index: 1;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.commune-benefits article {
  display: flex;
  min-height: 95px;
  align-items: center;
  gap: 1rem;
  border-right: 1px solid rgba(158, 190, 39, 0.28);
  padding: 0.5rem 2rem;
}

.commune-benefits article:first-child {
  padding-left: 0;
}

.commune-benefits article:last-child {
  border-right: 0;
}

.commune-benefit-icon {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  place-items: center;
  border: 1px solid rgba(172, 209, 48, 0.78);
  border-radius: 50%;
  color: var(--commune-green-bright);
}

.commune-benefits p {
  margin: 0;
  color: #d8ded6;
  font-size: 0.92rem;
  line-height: 1.55;
}

.commune-section {
  position: relative;
  padding: 3.6rem 0;
}

.commune-section-title.left > div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.commune-title-leaf {
  color: var(--commune-green-bright);
}

.commune-section-title h2 {
  margin: 0;
  color: #f5f6f0;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 600 !important;
  text-transform: uppercase;
}

.commune-section-title > p {
  margin: 0.65rem 0 0 2.55rem;
  color: var(--commune-muted);
  font-size: 0.94rem;
}

.commune-process-section {
  padding-top: 2.4rem;
}

.commune-process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.commune-process-grid article {
  position: relative;
  text-align: center;
}

.commune-process-grid article:not(:last-child)::after {
  display: none;
}

.commune-custom-icon {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 90px;
  overflow: hidden;
}

.commune-custom-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: auto;
  max-width: none;
  transform: translate(-50%, -45.5%);
}

.commune-custom-icon.commune-icon-unclipped img {
  width: 140px;
}

.commune-process-grid h3 {
  margin: 0.55rem 0 0;
  color: var(--commune-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600 !important;
  text-transform: uppercase;
}

.commune-process-grid p {
  margin: 0.45rem auto 0;
  color: #d2d9d1;
  font-size: 0.78rem;
  line-height: 1.5;
}

.commune-services-section {
  padding-top: 2.2rem;
}

.commune-service-card {
  display: grid;
  min-height: 365px;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.25fr);
  overflow: hidden;
  border: 1px solid var(--commune-line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 50%, rgba(123, 160, 34, 0.09), transparent 20rem),
    rgba(5, 18, 15, 0.9);
}

.commune-service-card + .commune-service-card {
  margin-top: 1.5rem;
}

.commune-service-image {
  min-height: 365px;
}

.commune-service-image img {
  width: 100%;
  height: 100%;
  min-height: 365px;
  object-fit: cover;
}

.commune-service-card:nth-child(1) .commune-service-image img {
  object-position: 50% 79%;
}

.commune-service-card:nth-child(2) .commune-service-image img {
  object-position: 58% center;
}

.commune-service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.5rem;
}

.commune-service-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
}

.commune-service-number {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--commune-green);
  color: #07100d;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.commune-service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(174, 211, 51, 0.72);
  border-radius: 50%;
  color: var(--commune-green-bright);
}

.commune-service-heading h2 {
  margin: 0;
  color: #f4f5ef;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 600 !important;
  text-transform: uppercase;
}

.commune-service-heading p {
  margin: 0.4rem 0 0;
  color: var(--commune-green-bright);
  font-size: 0.9rem;
  line-height: 1.45;
}

.commune-service-copy ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.35rem 0 0 6.4rem;
  padding: 0;
  list-style: none;
}

.commune-service-copy li {
  position: relative;
  color: #d7ddd5;
  font-size: 0.93rem;
  line-height: 1.5;
  padding-left: 1.25rem;
}

.commune-service-copy li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  color: var(--commune-green-bright);
  content: "◆";
  font-size: 0.58rem;
}

.commune-cta-section {
  padding-top: 1.4rem;
}

.commune-cta-band {
  display: grid;
  min-height: 210px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--commune-line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 50%, rgba(124, 161, 35, 0.12), transparent 18rem),
    rgba(6, 19, 15, 0.9);
  padding: 1.7rem 2rem;
}

.commune-cta-icon {
  align-self: start;
  color: var(--commune-green-bright);
}

.commune-cta-band h2 {
  margin: 0;
  color: #f4f5ef;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 500 !important;
}

.commune-cta-band h3 {
  margin: 0.35rem 0 0;
  color: var(--commune-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500 !important;
}

.commune-cta-band p {
  max-width: 650px;
  margin: 0.7rem 0 0;
  color: #d3d9d1;
  font-size: 0.9rem;
  line-height: 1.65;
}

.commune-cta-band a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  border: 1px solid rgba(174, 211, 51, 0.72);
  border-radius: 999px;
  color: var(--commune-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 1rem;
}

.commune-cta-drawing {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: rgba(167, 204, 48, 0.58);
}

.commune-cta-drawing svg + svg {
  margin-left: -1rem;
}

@media (max-width: 1000px) {
  .commune-hero-inner {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.8rem;
  }

  .commune-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 2rem;
  }

  .commune-process-grid article:nth-child(3)::after {
    display: none;
  }

  .commune-service-card {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  }
}

@media (max-width: 760px) {
  .commune-page .home-shell {
    width: min(100% - 2rem, 1240px);
  }

  .commune-hero-inner {
    min-height: 0;
    display: block;
    overflow: hidden;
    padding-top: 3.5rem;
    padding-bottom: 2rem;
  }

  .commune-hero-copy {
    position: relative;
    z-index: 2;
  }

  .commune-hero-copy h1 {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }

  .commune-hero-image {
    position: absolute;
    z-index: 0;
    top: 0;
    right: -3rem;
    left: -3rem;
    width: auto;
    height: 500px;
    min-height: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0.36;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 56%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 56%, transparent 100%);
  }

  .commune-hero-image::after {
    background:
      linear-gradient(90deg, rgba(1, 10, 9, 0.65), rgba(1, 10, 9, 0.18)),
      linear-gradient(180deg, rgba(1, 10, 9, 0.08), rgba(1, 10, 9, 0.58));
  }

  .commune-hero-image img {
    object-position: 62% center;
  }

  .commune-benefits {
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .commune-benefits article,
  .commune-benefits article:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(158, 190, 39, 0.25);
    padding: 1rem 0;
  }

  .commune-benefits article:last-child {
    border-bottom: 0;
  }

  .commune-section-title > p {
    margin-left: 0;
  }

  .commune-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commune-process-grid article:nth-child(2n)::after {
    display: none;
  }

  .commune-service-card {
    grid-template-columns: 1fr;
  }

  .commune-service-image,
  .commune-service-image img {
    min-height: 290px;
    height: 290px;
  }

  .commune-service-copy {
    padding: 1.5rem 1.2rem 1.7rem;
  }

  .commune-service-heading {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .commune-service-number {
    position: absolute;
    transform: translate(-8px, -30px);
  }

  .commune-service-heading > div {
    grid-column: 2;
  }

  .commune-service-copy ul {
    margin-left: 0;
  }

  .commune-cta-band {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .commune-cta-drawing {
    display: none;
  }
}

@media (max-width: 480px) {
  .commune-hero-image {
    right: -4rem;
    left: -4rem;
    height: 440px;
    opacity: 0.28;
  }

  .commune-process-grid {
    grid-template-columns: 1fr;
  }

  .commune-process-grid article {
    border-bottom: 1px solid rgba(158, 190, 39, 0.2);
    padding-bottom: 1.25rem;
  }

  .commune-process-grid article:last-child {
    border-bottom: 0;
  }

  .commune-process-grid article::after {
    display: none;
  }

  .commune-cta-band {
    grid-template-columns: 1fr;
  }
}

/* Unternehmen */
.company-page {
  --company-bg: #07110f;
  --company-surface: #0d1915;
  --company-surface-soft: #13211a;
  --company-green: #a9c92f;
  --company-green-dark: #758f1d;
  --company-text: #f3f4ed;
  --company-muted: #b8c1b9;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(124, 153, 37, 0.1), transparent 28rem),
    var(--company-bg);
  color: var(--company-text);
  font-family: "Open Sans", Arial, sans-serif;
}

.company-page .home-shell {
  width: min(100% - 3rem, 1240px);
  margin-inline: auto;
}

.company-page main {
  overflow: hidden;
}

.company-hero {
  position: relative;
  padding-top: 78px;
}

.company-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(169, 201, 47, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(169, 201, 47, 0.025) 1px, transparent 1px);
  background-size: 84px 84px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  pointer-events: none;
}

.company-hero-inner {
  position: relative;
  display: grid;
  min-height: 720px;
  align-items: center;
  column-gap: 4rem;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  grid-template-rows: 1fr auto;
  padding-block: 4.25rem 2.8rem;
}

.company-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.company-hero-copy h1 {
  margin: 0;
  color: var(--company-text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(3rem, 5.8vw, 5.25rem);
  font-weight: 600 !important;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.company-hero-copy h1 span {
  color: var(--company-green);
}

.company-script-line {
  max-width: 520px;
  margin: 1.55rem 0 0;
  color: var(--company-green);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.company-hero-text {
  max-width: 590px;
  margin: 1.35rem 0 0;
  color: var(--company-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.company-hero-button,
.company-cta a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid rgba(169, 201, 47, 0.75);
  border-radius: 999px;
  color: var(--company-green);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.72rem 1.15rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.company-hero-button {
  margin-top: 1.65rem;
}

.company-hero-button:hover,
.company-cta a:hover {
  background: var(--company-green);
  color: #11190d;
  transform: translateY(-2px);
}

.company-hero-image {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(169, 201, 47, 0.2);
  border-radius: 48% 52% 40% 60% / 43% 39% 61% 57%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.company-hero-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 15, 0.32), transparent 48%),
    linear-gradient(180deg, transparent 60%, rgba(7, 17, 15, 0.35));
  content: "";
}

.company-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.company-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3.2rem;
  border-top: 1px solid rgba(169, 201, 47, 0.25);
  padding-top: 1.8rem;
}

.company-benefits article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-right: 1px solid rgba(169, 201, 47, 0.22);
  padding: 0.4rem 1.5rem;
}

.company-benefits article:last-child {
  border-right: 0;
}

.company-benefits article > span {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border: 1px solid rgba(169, 201, 47, 0.42);
  border-radius: 50%;
  color: var(--company-green);
}

.company-benefits p {
  margin: 0;
  color: #e6e9e2;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.4;
}

.company-section {
  padding-block: 5.5rem;
}

.company-heading {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.company-heading h2,
.company-individual-band h2,
.company-cta h2 {
  margin: 0;
  color: var(--company-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 500 !important;
  line-height: 1.12;
}

.company-heading > p {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--company-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.company-path-section {
  background: linear-gradient(180deg, rgba(14, 27, 22, 0.18), rgba(14, 27, 22, 0.7));
}

.company-path-panel {
  border: 1px solid rgba(169, 201, 47, 0.28);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(169, 201, 47, 0.08), transparent 32rem),
    rgba(13, 25, 21, 0.78);
  padding: 3.5rem 3.2rem 3.1rem;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.company-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.company-path-grid article {
  position: relative;
  display: grid;
  min-height: 155px;
  align-items: center;
  gap: 0.35rem 1rem;
  grid-template-columns: 88px minmax(0, 1fr);
  border: 1px solid rgba(169, 201, 47, 0.2);
  border-radius: 1.2rem;
  background: rgba(7, 17, 15, 0.64);
  padding: 1.15rem 1.15rem 1.15rem 1rem;
}

.company-path-grid article > div {
  align-self: center;
  grid-column: 2;
  grid-row: 1;
}

.company-custom-icon {
  position: relative;
  display: block;
  width: 82px;
  height: 82px;
  overflow: hidden;
  grid-row: 1;
  border-radius: 50%;
}

.company-custom-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 138px;
  max-width: none;
  height: 138px;
  object-fit: contain;
  transform: translate(-50%, -45.5%);
}

.company-icon-unclipped {
  overflow: visible;
}

.company-icon-unclipped img {
  width: 126px;
  height: 126px;
  transform: translate(-50%, -50%);
}

.company-path-grid h3 {
  margin: -0.25rem 0 0;
  color: #f0f2ea;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600 !important;
}

.company-path-grid p {
  margin: 0;
  color: var(--company-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.company-modules-section {
  position: relative;
  background:
    radial-gradient(circle at 100% 50%, rgba(169, 201, 47, 0.06), transparent 30rem),
    var(--company-bg);
}

.company-heading-ornament {
  position: relative;
  padding-bottom: 1.7rem;
}

.company-heading-ornament::after {
  display: block;
  width: 74px;
  height: 2px;
  margin: 1.35rem auto 0;
  background: var(--company-green);
  content: "";
}

.company-modules-list {
  max-width: 1080px;
  margin: 2.5rem auto 0;
  overflow: hidden;
  border: 1px solid rgba(169, 201, 47, 0.24);
  border-radius: 1.7rem;
  background: rgba(13, 25, 21, 0.78);
}

.company-module {
  position: relative;
  display: grid;
  min-height: 200px;
  align-items: center;
  gap: 1.4rem;
  grid-template-columns: 110px minmax(250px, 0.9fr) minmax(280px, 1.1fr);
  border-bottom: 1px solid rgba(169, 201, 47, 0.18);
  padding: 2rem 2.4rem;
}

.company-module:last-child {
  border-bottom: 0;
}

.company-module:nth-child(even) {
  background: rgba(169, 201, 47, 0.025);
}

.company-module-icon {
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  border: 1px solid rgba(169, 201, 47, 0.28);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(169, 201, 47, 0.12), transparent 70%),
    #0a1512;
  color: var(--company-green);
}

.company-module-intro {
  align-self: center;
}

.company-module h3 {
  margin: 0;
  color: #f0f2ea;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 600 !important;
  line-height: 1.22;
}

.company-module-intro p {
  margin: 0.65rem 0 0;
  color: var(--company-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.company-module ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  color: #d2d8d1;
  font-size: 0.84rem;
  line-height: 1.4;
  list-style: none;
}

.company-module li {
  position: relative;
  padding-left: 1.25rem;
}

.company-module li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--company-green);
  content: "";
}

.company-individual-section {
  background:
    linear-gradient(180deg, rgba(13, 25, 21, 0.95), rgba(7, 17, 15, 0.98));
  padding-top: 0;
}

.company-individual-band {
  display: grid;
  align-items: center;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  border: 1px solid rgba(169, 201, 47, 0.27);
  border-radius: 1.7rem;
  background: rgba(18, 34, 27, 0.82);
  padding: 3rem 3.4rem;
}

.company-individual-band > div:first-child p {
  max-width: 630px;
  margin: 0.9rem 0 0;
  color: var(--company-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.company-individual-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.company-individual-values span {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(169, 201, 47, 0.16);
  border-radius: 0.9rem;
  background: rgba(7, 17, 15, 0.58);
  color: #e7ebe3;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
  padding: 0.8rem;
}

.company-individual-values svg {
  flex: 0 0 auto;
  color: var(--company-green);
}

.company-cta {
  position: relative;
  display: flex;
  min-height: 265px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  margin-top: 1.25rem;
  border: 1px solid rgba(169, 201, 47, 0.24);
  border-radius: 1.7rem;
  padding: 3.4rem;
}

.company-cta::before,
.company-cta::after {
  position: absolute;
  inset: 0;
  content: "";
}

.company-cta::before {
  background: url("../images/company-campus.jpg") center 58% / cover no-repeat;
  opacity: 0.34;
}

.company-cta::after {
  background: linear-gradient(90deg, rgba(7, 17, 15, 0.95) 0%, rgba(7, 17, 15, 0.72) 62%, rgba(7, 17, 15, 0.48) 100%);
}

.company-cta h2,
.company-cta a {
  position: relative;
  z-index: 1;
}

.company-cta h2 {
  max-width: 700px;
}

.company-cta a {
  flex: 0 0 auto;
  background: rgba(7, 17, 15, 0.6);
}

@media (max-width: 1000px) {
  .company-hero-inner {
    column-gap: 2rem;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  }

  .company-path-panel {
    padding-inline: 2rem;
  }

  .company-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-module {
    grid-template-columns: 90px minmax(220px, 0.9fr) minmax(220px, 1fr);
    padding-inline: 1.5rem;
  }

  .company-module-icon {
    width: 82px;
    height: 82px;
  }

  .company-individual-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .company-page .home-shell {
    width: min(100% - 2rem, 1240px);
  }

  .company-hero-inner {
    min-height: 0;
    display: block;
    overflow: hidden;
    padding-block: 4.4rem 2.5rem;
  }

  .company-hero-copy {
    position: relative;
    z-index: 2;
  }

  .company-hero-copy h1 {
    font-size: clamp(2.7rem, 12vw, 4.25rem);
  }

  .company-hero-image {
    position: absolute;
    z-index: 0;
    top: 0;
    right: -5rem;
    left: -5rem;
    width: auto;
    height: 620px;
    min-height: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0.34;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
  }

  .company-hero-image::after {
    background:
      linear-gradient(90deg, rgba(7, 17, 15, 0.78), rgba(7, 17, 15, 0.22)),
      linear-gradient(180deg, rgba(7, 17, 15, 0.08), rgba(7, 17, 15, 0.74));
  }

  .company-hero-image img {
    min-height: 620px;
    object-position: 64% center;
  }

  .company-benefits {
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 3rem;
  }

  .company-benefits article {
    width: min(100%, 360px);
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(169, 201, 47, 0.22);
    padding: 1rem 0.5rem;
  }

  .company-benefits article:last-child {
    border-bottom: 0;
  }

  .company-section {
    padding-block: 4rem;
  }

  .company-path-panel {
    border-radius: 1.4rem;
    padding: 2.5rem 1.15rem;
  }

  .company-path-grid {
    grid-template-columns: 1fr;
    margin-top: 2.2rem;
  }

  .company-module {
    gap: 0.9rem 1rem;
    align-items: start;
    grid-template-columns: 76px minmax(0, 1fr);
    padding: 1.4rem 1rem;
  }

  .company-module-icon {
    width: 72px;
    height: 72px;
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .company-module-icon svg {
    width: 34px;
    height: 34px;
  }

  .company-module-intro {
    grid-column: 2;
    grid-row: 1;
  }

  .company-module ul {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0.5rem;
    padding-left: 0;
  }

  .company-individual-band {
    gap: 2rem;
    padding: 2.2rem 1.25rem;
  }

  .company-cta {
    min-height: 310px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .company-hero-image {
    right: -7rem;
    left: -7rem;
    opacity: 0.27;
  }

  .company-script-line {
    font-size: 1.08rem;
  }

  .company-path-grid article {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .company-custom-icon {
    width: 74px;
    height: 74px;
  }

  .company-custom-icon img {
    width: 126px;
    height: 126px;
  }

  .company-icon-unclipped img {
    width: 116px;
    height: 116px;
  }

  .company-module {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .company-module-icon {
    width: 62px;
    height: 62px;
  }

  .company-individual-values {
    grid-template-columns: 1fr;
  }
}

/* Gemeinsames Naturfokus+ Schriftsystem */
:where(.home-page, .about-page, .commune-page, .company-page, .education-page, .audit-page) {
  --nf-font-display: Georgia, "Times New Roman", serif;
  --nf-font-text: "Open Sans", Arial, sans-serif;
  --nf-font-ui: Inter, Arial, sans-serif;
  --nf-size-hero: clamp(3.1rem, 5.15vw, 5rem);
  --nf-size-section: clamp(1.35rem, 2.5vw, 1.8rem);
  --nf-size-feature: clamp(1.75rem, 3vw, 2.35rem);
  --nf-size-card: 1rem;
  font-family: var(--nf-font-text);
  font-size: 16px;
  line-height: 1.65;
}

:is(
  .home-hero-copy h1,
  .about-hero-copy h1,
  .commune-hero-copy h1,
  .company-hero-copy h1,
  .education-hero-copy h1,
  .audit-hero h1
) {
  font-family: var(--nf-font-display) !important;
  font-size: var(--nf-size-hero);
  font-weight: 500 !important;
  letter-spacing: -0.032em !important;
  line-height: 1.03;
}

:is(
  .home-section-heading h2,
  .about-heading h2,
  .commune-section-title h2,
  .company-heading h2,
  .audit-section-heading h2
) {
  font-family: var(--nf-font-ui);
  font-size: var(--nf-size-section);
  font-weight: 600 !important;
  letter-spacing: 0.015em;
  line-height: 1.25;
  text-transform: uppercase;
}

:is(
  .home-about-band h2,
  .about-person-copy h2,
  .commune-service-heading h2,
  .commune-cta-band h2,
  .company-individual-band h2,
  .company-cta h2,
  .audit-cta-band h2
) {
  font-family: var(--nf-font-display);
  font-size: var(--nf-size-feature);
  font-weight: 500 !important;
  letter-spacing: -0.018em;
  line-height: 1.12;
  text-transform: none;
}

:is(
  .home-focus-title h3,
  .home-value-card h3,
  .home-page .home-blog-grid .blog-card h3,
  .about-person-copy h3,
  .about-value h3,
  .about-step h3,
  .about-vision-grid h3,
  .commune-process-grid h3,
  .company-path-grid h3,
  .audit-project-card h3,
  .audit-offer-card h3
) {
  font-family: var(--nf-font-ui);
  font-size: var(--nf-size-card);
  font-weight: 600 !important;
  line-height: 1.4;
}

:is(
  .company-module h3,
  .commune-service-heading h2
) {
  font-family: var(--nf-font-ui);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  line-height: 1.22;
}

:is(
  .home-nav,
  .home-contact,
  .home-menu-button,
  .home-mobile-menu,
  .home-card-link,
  .home-blog-all,
  .home-about-button,
  .company-hero-button,
  .company-cta a
) {
  font-family: var(--nf-font-ui);
}

.about-person-image img {
  object-position: center 32%;
}

@media (max-width: 760px) {
  :where(.home-page, .about-page, .commune-page, .company-page, .education-page, .audit-page) {
    --nf-size-hero: clamp(2.6rem, 11.5vw, 3.85rem);
    --nf-size-section: clamp(1.3rem, 6vw, 1.65rem);
    --nf-size-feature: clamp(1.65rem, 7vw, 2.1rem);
  }
}

/* Kommunen: vollflächiges Hero-Bild */
.commune-page .commune-hero {
  background: #020b09;
}

.commune-page .commune-hero::before {
  display: none;
}

.commune-page .commune-hero-inner {
  isolation: isolate;
}

.commune-page .commune-hero-image {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  pointer-events: none;
  transform: translateX(-50%);
  -webkit-mask-image: none;
  mask-image: none;
}

.commune-page .commune-hero-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 10, 9, 0.98) 0%, rgba(1, 10, 9, 0.9) 30%, rgba(1, 10, 9, 0.55) 57%, rgba(1, 10, 9, 0.26) 82%, rgba(1, 10, 9, 0.34) 100%),
    linear-gradient(180deg, rgba(1, 10, 9, 0.08) 0%, rgba(1, 10, 9, 0.08) 64%, rgba(1, 10, 9, 0.9) 100%);
  content: "";
}

.commune-page .commune-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.commune-page .commune-hero-copy,
.commune-page .commune-benefits {
  position: relative;
  z-index: 1;
}

.commune-page .commune-benefits {
  border-top: 1px solid rgba(169, 201, 47, 0.28);
  padding-top: 1rem;
}

@media (max-width: 760px) {
  .commune-page .commune-hero-image {
    top: 0;
    right: auto;
    left: 50%;
    width: 100vw;
    height: 100%;
    min-height: 100%;
    opacity: 1;
    transform: translateX(-50%);
  }

  .commune-page .commune-hero-image::after {
    background:
      linear-gradient(90deg, rgba(1, 10, 9, 0.9), rgba(1, 10, 9, 0.48)),
      linear-gradient(180deg, rgba(1, 10, 9, 0.18) 0%, rgba(1, 10, 9, 0.58) 58%, rgba(1, 10, 9, 0.94) 100%);
  }

  .commune-page .commune-hero-image img {
    min-height: 100%;
    object-position: 64% center;
  }
}

/* Umweltbildung */
.education-page {
  --education-bg: #06100e;
  --education-panel: #0d1915;
  --education-panel-soft: #132119;
  --education-green: #a9c92f;
  --education-green-bright: #bddb43;
  --education-text: #f3f4ed;
  --education-muted: #c0c8bf;
  --home-line: rgba(169, 201, 47, 0.38);
  --home-green: #a9c92f;
  --home-green-bright: #bddb43;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 34%, rgba(137, 171, 41, 0.07), transparent 28rem),
    var(--education-bg);
  color: var(--education-text);
}

.education-page .home-shell {
  width: min(100% - 3rem, 1240px);
  margin-inline: auto;
}

.education-page main {
  overflow: hidden;
}

.education-hero {
  position: relative;
  overflow: hidden;
  padding-top: 78px;
}

.education-hero-inner {
  position: relative;
  display: grid;
  min-height: 680px;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  padding-block: 4rem 3.5rem;
}

.education-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 625px;
}

.education-hero-copy h1 {
  margin: 0;
  color: var(--education-text);
  text-wrap: balance;
}

.education-hero-copy h1 span {
  color: var(--education-green);
}

.education-hero-lead {
  margin: 1.6rem 0 0;
  color: var(--education-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 500;
  line-height: 1.5;
}

.education-accent-line {
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 1.2rem;
  border-radius: 999px;
  background: var(--education-green);
}

.education-hero-text {
  max-width: 520px;
  margin: 1.35rem 0 0;
  color: var(--education-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.education-hero-image {
  position: absolute;
  z-index: 0;
  top: 0;
  right: calc(50% - 50vw);
  width: min(68vw, 920px);
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.education-hero-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 16, 14, 0.82), rgba(6, 16, 14, 0.12) 48%),
    linear-gradient(180deg, rgba(6, 16, 14, 0.08), rgba(6, 16, 14, 0.08) 68%, rgba(6, 16, 14, 0.62));
  content: "";
}

.education-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.education-section {
  position: relative;
  padding-block: 4.5rem;
}

.education-intro-section {
  padding-top: 0;
}

.education-notice,
.education-event-note {
  display: grid;
  align-items: center;
  gap: 1.3rem;
  grid-template-columns: auto minmax(0, 1fr);
  border: 1px solid rgba(169, 201, 47, 0.32);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 88% 100%, rgba(169, 201, 47, 0.08), transparent 22rem),
    rgba(12, 25, 20, 0.88);
  padding: 1.65rem 2rem;
}

.education-ring-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(169, 201, 47, 0.58);
  border-radius: 50%;
  color: var(--education-green-bright);
}

.education-notice h2,
.education-event-note h2,
.education-cta h2 {
  margin: 0;
  color: var(--education-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 500 !important;
  line-height: 1.15;
}

.education-notice h2,
.education-event-note h2 {
  color: var(--education-green-bright);
}

.education-notice p,
.education-event-note p {
  max-width: 850px;
  margin: 0.55rem 0 0;
  color: var(--education-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.education-formats-section {
  padding-top: 1.3rem;
}

.education-heading {
  text-align: center;
}

.education-heading h2 {
  margin: 0;
  color: var(--education-text);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 600 !important;
  letter-spacing: 0.015em;
  line-height: 1.25;
  text-transform: uppercase;
}

.education-heading h2::after {
  display: block;
  width: 68px;
  height: 2px;
  margin: 1rem auto 0;
  background: var(--education-green);
  content: "";
}

.education-heading > p {
  margin: 0.75rem 0 0;
  color: var(--education-muted);
  font-size: 0.92rem;
}

.education-format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.education-format-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(169, 201, 47, 0.3);
  border-radius: 1rem;
  background: rgba(12, 24, 20, 0.9);
  padding: 1.35rem 1rem 0;
  text-align: center;
}

.education-card-icon {
  display: grid;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  place-items: center;
  border: 1px solid rgba(169, 201, 47, 0.55);
  border-radius: 50%;
  color: var(--education-green-bright);
}

.education-format-card h3 {
  margin: 0.9rem 0 0;
  color: #f2f3ec;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600 !important;
  line-height: 1.35;
}

.education-format-card h3::after {
  display: block;
  width: 30px;
  height: 1px;
  margin: 0.65rem auto 0;
  background: var(--education-green);
  content: "";
}

.education-format-card p {
  max-width: 220px;
  margin: 0.7rem auto 1.1rem;
  color: var(--education-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.education-format-card > img {
  width: calc(100% + 2rem);
  height: 155px;
  min-height: 155px;
  margin-top: auto;
  object-fit: cover;
}

.education-format-card:nth-child(1) > img {
  object-position: center 40%;
}

.education-format-card:nth-child(2) > img {
  object-position: center 66%;
}

.education-format-card:nth-child(3) > img {
  object-position: 72% center;
}

.education-format-card:nth-child(4) > img {
  object-position: 68% center;
}

.education-topics-section {
  padding-top: 0;
}

.education-topic-panel {
  overflow: hidden;
  border: 1px solid rgba(169, 201, 47, 0.32);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 100% 100%, rgba(169, 201, 47, 0.09), transparent 18rem),
    rgba(11, 23, 19, 0.92);
  padding: 2rem 2rem 1.35rem;
}

.education-heading.compact h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 500 !important;
  letter-spacing: -0.015em;
  text-transform: none;
}

.education-heading.compact h2::after {
  width: 48px;
  margin-top: 0.75rem;
}

.education-topic-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 1.7rem;
}

.education-topic-grid article {
  min-height: 132px;
  border-right: 1px solid rgba(169, 201, 47, 0.22);
  padding: 0 1rem;
  text-align: center;
}

.education-topic-grid article:last-child {
  border-right: 0;
}

.education-topic-grid .education-topic-icon {
  position: relative;
  display: inline-block;
  width: 72px;
  height: 72px;
  overflow: hidden;
  vertical-align: top;
}

.education-topic-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -45.5%);
}

.education-topic-grid p {
  margin: 0.65rem 0 0;
  color: #e2e6df;
  font-size: 0.82rem;
  line-height: 1.45;
}

.education-topic-more {
  margin: 1rem 0 0;
  color: var(--education-green);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.92rem;
  text-align: center;
}

.education-event-section {
  padding-top: 0;
}

.education-event-note {
  padding-block: 1.45rem;
}

.education-cta {
  position: relative;
  display: grid;
  min-height: 210px;
  align-items: center;
  gap: 2rem;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  overflow: hidden;
  margin-top: 1rem;
  border: 1px solid rgba(169, 201, 47, 0.3);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 72% 45%, rgba(169, 201, 47, 0.12), transparent 25rem),
    rgba(14, 29, 22, 0.96);
  padding: 1.35rem 2.25rem 1.35rem 1.35rem;
}

.education-cta-image {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(169, 201, 47, 0.3);
}

.education-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}

.education-cta h3 {
  margin: 0.45rem 0 0;
  color: var(--education-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500 !important;
}

.education-cta p {
  max-width: 660px;
  margin: 0.65rem 0 0;
  color: var(--education-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.education-cta a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 0.7rem;
  background: linear-gradient(135deg, #78951f, #a1bd31);
  color: #f8f9f3;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.2rem;
  transition: transform 180ms ease, filter 180ms ease;
}

.education-cta a:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

@media (max-width: 1000px) {
  .education-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  }

  .education-format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .education-topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem 0;
  }

  .education-topic-grid article:nth-child(3) {
    border-right: 0;
  }

  .education-cta {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .education-cta-image {
    width: 125px;
    height: 125px;
  }

  .education-cta a {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .education-page .home-shell {
    width: min(100% - 2rem, 1240px);
  }

  .education-hero-inner {
    min-height: 640px;
    display: block;
    padding-block: 4rem 2.6rem;
  }

  .education-hero-copy {
    position: relative;
    z-index: 2;
  }

  .education-hero-image {
    z-index: 0;
    top: 0;
    right: -4rem;
    left: -4rem;
    width: auto;
    height: 100%;
    border: 0;
    border-radius: 0;
    opacity: 0.46;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 65%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 65%, transparent 100%);
  }

  .education-hero-image::after {
    background:
      linear-gradient(90deg, rgba(6, 16, 14, 0.86), rgba(6, 16, 14, 0.25)),
      linear-gradient(180deg, rgba(6, 16, 14, 0.08), rgba(6, 16, 14, 0.84));
  }

  .education-hero-image img {
    object-position: 68% center;
  }

  .education-section {
    padding-block: 3.5rem;
  }

  .education-intro-section,
  .education-topics-section,
  .education-event-section {
    padding-top: 0;
  }

  .education-notice,
  .education-event-note {
    align-items: start;
    padding: 1.35rem 1.1rem;
  }

  .education-ring-icon {
    width: 64px;
    height: 64px;
  }

  .education-format-grid {
    grid-template-columns: 1fr;
  }

  .education-format-card {
    min-height: 410px;
  }

  .education-format-card > img {
    height: 180px;
  }

  .education-format-card p {
    max-width: none;
    white-space: nowrap;
  }

  .education-topic-panel {
    padding-inline: 1rem;
  }

  .education-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .education-topic-grid article,
  .education-topic-grid article:nth-child(3) {
    border-right: 1px solid rgba(169, 201, 47, 0.22);
  }

  .education-topic-grid article:nth-child(2n),
  .education-topic-grid article:last-child {
    border-right: 0;
  }

  .education-cta {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.35rem;
  }

  .education-cta-image {
    width: 92px;
    height: 92px;
  }

  .education-cta a {
    grid-column: 1 / -1;
    justify-self: stretch;
  }
}

@media (max-width: 480px) {
  .education-hero-inner {
    min-height: 610px;
  }

  .education-notice,
  .education-event-note {
    grid-template-columns: 1fr;
  }

  .education-topic-grid {
    grid-template-columns: 1fr;
  }

  .education-topic-grid article,
  .education-topic-grid article:nth-child(3),
  .education-topic-grid article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(169, 201, 47, 0.18);
    padding-bottom: 1.1rem;
  }

  .education-topic-grid article:last-child {
    border-bottom: 0;
  }

  .education-cta {
    grid-template-columns: 1fr;
  }

  .education-cta-image {
    width: 110px;
    height: 110px;
  }

  .education-format-card p {
    font-size: 0.78rem;
  }
}

/* Seitenübergreifender Designabgleich */
:where(.home-page, .about-page, .commune-page, .company-page, .education-page) {
  --home-line: rgba(169, 201, 47, 0.4);
  --home-green: #a9c92f;
  --home-green-bright: #bddb43;
}

.home-nav a.active,
.home-nav a[aria-current="page"] {
  color: var(--home-green-bright, #bddb43);
}

.home-nav a.active::after,
.home-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.home-mobile-menu a.active,
.home-mobile-menu a[aria-current="page"] {
  border-color: rgba(189, 219, 67, 0.55);
  color: var(--home-green-bright, #bddb43);
}

@media (min-width: 761px) {
  :is(.home-page, .about-page, .commune-page, .company-page, .education-page) .home-shell {
    width: min(100% - 3rem, 1380px);
  }

  .max-w-7xl {
    max-width: 1380px;
  }
}

/* Über Naturfokus+: kompaktere Proportionen und mehr Abstand zum Personen-Kasten */
.about-page {
  --nf-size-hero: clamp(2.65rem, 4.35vw, 4.2rem);
}

.about-hero,
.about-hero-inner {
  min-height: 630px;
}

.about-hero-inner {
  padding-top: 6.25rem;
  padding-bottom: 4.2rem;
}

.about-hero-copy > p {
  line-height: 1.7;
}

.about-hero-copy > .about-hero-goal {
  margin-bottom: 2.5rem;
}

.about-person-section {
  margin-top: -3rem;
}

.about-section {
  padding-block: 3rem;
}

.about-person-image {
  min-height: 390px;
  overflow: hidden;
  padding: 1.2rem;
}

.about-person-image img {
  min-height: 360px;
}

.about-person-image .about-person-photo-tight {
  transform: scale(1.12);
  transform-origin: center 62%;
}

.about-person-copy {
  padding: 2rem 2.5rem;
}

.about-process-panel {
  padding: 2rem 1.8rem 1.8rem;
}

/* Die Listenpunkte beginnen bündig unter den Überschriften. */
.commune-service-copy ul {
  margin-left: 4.75rem;
}

/* Hauptbilder als ruhige, halbtransparente Hintergrundmotive */
.company-hero-image {
  position: absolute;
  z-index: 0;
  top: 2.2rem;
  right: -3rem;
  width: 66%;
  height: 570px;
  min-height: 0;
  border: 0;
  border-radius: 48% 0 42% 48%;
  box-shadow: none;
  opacity: 0.48;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 76%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 76%, transparent 100%);
}

.company-hero-image::after {
  background:
    linear-gradient(90deg, rgba(7, 17, 15, 0.76), rgba(7, 17, 15, 0.08) 48%),
    linear-gradient(180deg, transparent 58%, rgba(7, 17, 15, 0.5));
}

.company-hero-image img {
  min-height: 0;
  object-position: 61% center;
}

.education-hero-image {
  opacity: 0.52;
}

.education-hero-image::after {
  background:
    linear-gradient(90deg, rgba(6, 16, 14, 0.9), rgba(6, 16, 14, 0.15) 52%),
    linear-gradient(180deg, transparent 58%, rgba(6, 16, 14, 0.58));
}

/* Einheitliche sichtbare Größe der grünen Bild-Icons */
:is(
  .home-image-icon,
  .about-custom-icon,
  .commune-custom-icon,
  .company-custom-icon,
  .education-topic-grid .education-topic-icon
) {
  width: 82px;
  height: 82px;
  overflow: hidden;
  border-radius: 50%;
}

.home-image-icon {
  flex-basis: 82px;
}

:is(
  .home-image-icon,
  .about-custom-icon,
  .commune-custom-icon,
  .company-custom-icon,
  .education-topic-icon
) img {
  height: auto !important;
  transform: translate(-50%, -45.5%) !important;
}

:is(.about-icon-unclipped, .commune-icon-unclipped, .company-icon-unclipped) {
  overflow: hidden;
}

.about-step-number {
  top: 1px;
  left: calc(50% - 49px);
}

/* Startseite */
.home-image-icon img[src$="/kommune.png"] { width: 146% !important; }
.home-image-icon img[src$="/unternehmen.png"] { width: 155% !important; }
.home-image-icon img[src$="/umweltbildung.png"] { width: 149% !important; }

/* Über Naturfokus+: Werte */
.about-values-grid img[src$="/artenschutz.png"] { width: 182% !important; }
.about-values-grid img[src$="/about-clarity.png"] { width: 170% !important; }
.about-values-grid img[src$="/about-impact.png"] { width: 155% !important; }

/* Über Naturfokus+: Projektablauf */
.about-process-grid img[src$="/about-understand.png"] { width: 195% !important; }
.about-process-grid img[src$="/about-plan.png"] { width: 156% !important; }
.about-process-grid img[src$="/about-implement.png"] { width: 145% !important; }
.about-process-grid img[src$="/about-develop.png"] { width: 151% !important; }

/* Über Naturfokus+: Vision */
.about-vision-grid img[src$="/umweltbildung.png"] { width: 157% !important; }
.about-vision-grid img[src$="/artenschutz.png"] { width: 193% !important; }
.about-vision-grid img[src$="/betreuung.png"] { width: 210% !important; }
.about-vision-grid img[src$="/about-develop.png"] { width: 151% !important; }

/* Kommunen: gemeinsamer Weg */
.commune-process-grid img[src$="/commune-capture.png"] { width: 166% !important; }
.commune-process-grid img[src$="/commune-structure.png"] { width: 156% !important; }
.commune-process-grid img[src$="/about-plan.png"] { width: 156% !important; }
.commune-process-grid img[src$="/commune-guide.png"] { width: 171% !important; }
.commune-process-grid img[src$="/commune-check.png"] { width: 148% !important; }
.commune-process-grid img[src$="/about-develop.png"] { width: 151% !important; }

/* Unternehmen: gemeinsamer Weg */
.company-path-grid img[src$="/about-understand.png"] { width: 195% !important; }
.company-path-grid img[src$="/about-plan.png"] { width: 156% !important; }
.company-path-grid img[src$="/about-impact.png"] { width: 163% !important; }
.company-path-grid img[src$="/about-implement.png"] { width: 145% !important; }
.company-path-grid img[src$="/company-communicate.png"] { width: 216% !important; }
.company-path-grid img[src$="/company-support.png"] { width: 165% !important; }

/* Umweltbildung: mögliche Themen */
.education-topic-grid img[src$="/education-biodiversity.png"] { width: 132% !important; }
.education-topic-grid img[src$="/education-amphibians-reptiles.png"] { width: 166% !important; }
.education-topic-grid img[src$="/education-bats.png"] { width: 171% !important; }
.education-topic-grid img[src$="/education-wildbees.png"] { width: 171% !important; }
.education-topic-grid img[src$="/education-company-nature.png"] { width: 155% !important; }

/* Einheitliche Linienwirkung der vektorbasierten Symbole */
:is(
  .home-line-icon,
  .commune-benefit-icon,
  .commune-service-icon,
  .education-ring-icon,
  .education-card-icon,
  .company-module-icon
) svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.7;
}

:is(.commune-benefit-icon, .commune-service-icon, .education-ring-icon, .education-card-icon) {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}

@media (max-width: 760px) {
  .about-page {
    --nf-size-hero: clamp(2.45rem, 10.5vw, 3.35rem);
  }

  .about-hero,
  .about-hero-inner {
    min-height: 640px;
  }

  .about-person-section {
    margin-top: -1.5rem;
  }

  .about-person-image {
    min-height: 340px;
  }

  .about-person-image img {
    min-height: 315px;
  }

  .about-person-image .about-person-photo-tight {
    transform: scale(1.08);
    transform-origin: center 58%;
  }

  :is(
    .home-image-icon,
    .about-custom-icon,
    .commune-custom-icon,
    .company-custom-icon,
    .education-topic-grid .education-topic-icon
  ) {
    width: 74px;
    height: 74px;
  }

  .home-image-icon {
    flex-basis: 74px;
  }

  .commune-service-copy ul {
    margin-left: 4.75rem;
  }

  .company-hero-image {
    top: 0;
    right: -5rem;
    left: -5rem;
    width: auto;
    height: 620px;
    border-radius: 0;
    opacity: 0.3;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
  }

  .company-hero-copy h1 {
    font-size: clamp(2.05rem, 9vw, 2.5rem);
  }

  .education-hero-image {
    opacity: 0.34;
  }
}

/* Blogübersicht und Artikel im gemeinsamen Naturfokus+ Design */
:where(.blog-page, .article-page) {
  --home-bg: #020b0a;
  --home-panel: rgba(7, 20, 17, 0.9);
  --home-line: rgba(158, 190, 39, 0.43);
  --home-green: #a4c72d;
  --home-green-bright: #badb45;
  --home-copy: #f2f3ec;
  --home-muted: #c8cec5;
  background:
    radial-gradient(circle at 82% 18%, rgba(121, 157, 32, 0.09), transparent 30rem),
    linear-gradient(180deg, #010807, #06110f 48%, #020a09);
  color: var(--home-copy);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

:is(.blog-page, .article-page) .home-shell {
  width: min(100% - 2.5rem, 1240px);
  margin-inline: auto;
}

.blog-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  padding-top: 78px;
  background: #020b0a;
}

.blog-hero-image {
  position: absolute;
  inset: 0;
  background: url("../images/blog-raptor.jpg") 48% center / cover no-repeat;
}

.blog-hero-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 10, 9, 0.98) 0%, rgba(1, 10, 9, 0.91) 31%, rgba(1, 10, 9, 0.56) 54%, rgba(1, 10, 9, 0.16) 82%),
    linear-gradient(180deg, rgba(1, 9, 8, 0.1), rgba(1, 9, 8, 0.18) 65%, #020b0a 100%);
  content: "";
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 532px;
  align-items: center;
  padding-block: 3.5rem;
}

.blog-hero-copy {
  max-width: 610px;
}

.blog-hero-kicker {
  margin: 0 0 1rem;
  color: var(--home-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.blog-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 5.15vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.032em;
  line-height: 1.02;
}

.blog-hero-copy h1 span {
  display: block;
  color: var(--home-green);
}

.blog-hero-copy > p:not(.blog-hero-kicker) {
  max-width: 560px;
  margin: 1.55rem 0 0;
  color: var(--home-muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.blog-list-section {
  padding: 4.6rem 0 5.2rem;
}

.blog-section-heading {
  max-width: 670px;
}

.blog-section-heading h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.1vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.blog-section-heading p {
  margin: 0.9rem 0 0;
  color: var(--home-muted);
  line-height: 1.75;
}

.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 2rem;
}

.blog-page .blog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 84%, rgba(135, 172, 38, 0.09), transparent 10rem),
    linear-gradient(145deg, rgba(6, 18, 15, 0.98), rgba(8, 23, 19, 0.86));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.blog-page .blog-card:hover {
  border-color: rgba(175, 211, 54, 0.72);
  box-shadow: 0 24px 65px rgba(103, 139, 27, 0.13);
  transform: translateY(-4px);
}

.blog-page .blog-card > .blog-card-image-wrap,
.blog-page .blog-card > .blog-card-image-wrap img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.blog-page .blog-card > .blog-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.55rem 1.65rem 1.65rem;
}

.blog-page .blog-card-meta {
  margin: 0;
  color: var(--home-green-bright) !important;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.45 !important;
  text-transform: uppercase;
}

.blog-page .blog-card h3 {
  margin: 0.75rem 0 0;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.blog-page .blog-card p:not(.blog-card-meta) {
  margin: 0.85rem 0 0;
  color: #d5dad2;
  line-height: 1.7;
}

.blog-page .blog-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--home-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
}

:is(.blog-page, .article-page) .blog-list-status {
  border-color: var(--home-line);
  background: rgba(7, 20, 17, 0.9);
  color: var(--home-muted);
}

.article-page .article-hero {
  padding: 8.7rem 0 3.5rem;
}

.article-page .article-header {
  width: min(100% - 3rem, 1100px);
  gap: 1.25rem;
  margin-inline: auto;
}

.article-page .article-back {
  color: var(--home-green-bright);
}

.article-page .article-meta {
  color: var(--home-green-bright);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.article-page .article-header h1 {
  max-width: 20ch;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.032em;
  line-height: 1.04;
}

.article-page .article-excerpt {
  color: var(--home-muted);
}

.article-page .article-cover {
  margin-top: 0.6rem;
  border-color: var(--home-line);
  border-radius: 14px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.22);
}

.article-page .article-body {
  width: min(52rem, calc(100% - 2.5rem));
  max-width: 52rem;
  color: #e6e9e2;
}

.article-page .article-body h2,
.article-page .article-body h3 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.article-page .article-body li::marker {
  color: var(--home-green);
}

.article-page .article-body blockquote {
  border-color: var(--home-green);
  color: var(--home-muted);
}

.article-page .article-body a {
  color: var(--home-green-bright);
}

@media (min-width: 761px) {
  :is(.blog-page, .article-page) .home-shell {
    width: min(100% - 3rem, 1380px);
  }
}

@media (max-width: 760px) {
  .blog-hero {
    min-height: 620px;
  }

  .blog-hero-image {
    background-position: 42% center;
  }

  .blog-hero-image::after {
    background:
      linear-gradient(90deg, rgba(1, 10, 9, 0.92), rgba(1, 10, 9, 0.48)),
      linear-gradient(180deg, rgba(1, 9, 8, 0.18), rgba(1, 9, 8, 0.3) 60%, #020b0a 100%);
  }

  .blog-hero-inner {
    min-height: 542px;
    align-items: flex-end;
    padding-block: 3rem;
  }

  .blog-hero-copy h1 {
    font-size: clamp(2.65rem, 12vw, 3.55rem);
  }

  .blog-page-grid {
    grid-template-columns: 1fr;
  }

  .blog-page .blog-card > .blog-card-image-wrap,
  .blog-page .blog-card > .blog-card-image-wrap img {
    height: 225px;
  }

  .article-page .article-hero {
    padding: 7.2rem 0 2.7rem;
  }

  .article-page .article-header {
    width: min(100% - 2rem, 1100px);
    padding-right: 0;
  }

  .article-page .article-header h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.1rem);
    hyphens: none;
  }

  .article-page .article-cover {
    aspect-ratio: 4 / 3;
  }
}

/* Impressum im gemeinsamen Naturfokus+ Design */
.legal-page {
  --home-bg: #020b0a;
  --home-panel: rgba(7, 20, 17, 0.9);
  --home-line: rgba(158, 190, 39, 0.43);
  --home-green: #a4c72d;
  --home-green-bright: #badb45;
  --home-copy: #f2f3ec;
  --home-muted: #c8cec5;
  background:
    radial-gradient(circle at 80% 24%, rgba(121, 157, 32, 0.08), transparent 30rem),
    linear-gradient(180deg, #010807, #06110f 48%, #020a09);
  color: var(--home-copy);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.legal-page .home-shell {
  width: min(100% - 2.5rem, 1240px);
  margin-inline: auto;
}

.legal-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding-top: 78px;
  background: #020b0a;
}

.legal-hero-image {
  position: absolute;
  inset: 0;
  background: url("../images/sapling-hero-wide.jpg") 64% center / cover no-repeat;
}

.legal-hero-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 10, 9, 0.98) 0%, rgba(1, 10, 9, 0.92) 34%, rgba(1, 10, 9, 0.54) 60%, rgba(1, 10, 9, 0.22) 100%),
    linear-gradient(180deg, rgba(1, 9, 8, 0.12), rgba(1, 9, 8, 0.16) 64%, #020b0a 100%);
  content: "";
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 442px;
  align-items: center;
  padding-block: 3rem;
}

.legal-hero-copy {
  max-width: 650px;
}

.legal-hero-kicker {
  margin: 0 0 0.9rem;
  color: var(--home-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 5.15vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.032em;
  line-height: 1.02;
}

.legal-hero-copy h1 span {
  color: var(--home-green);
}

.legal-hero-copy > p:not(.legal-hero-kicker) {
  margin: 1.25rem 0 0;
  color: var(--home-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.legal-content-section {
  padding: 4.7rem 0 5.3rem;
}

.legal-section-heading {
  max-width: 690px;
}

.legal-section-heading h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.1vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.legal-section-heading p {
  margin: 0.9rem 0 0;
  color: var(--home-muted);
  line-height: 1.75;
}

.legal-page .legal-grid {
  gap: 1.2rem;
  margin-top: 2rem;
}

.legal-page .legal-card {
  border: 1px solid var(--home-line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 84%, rgba(135, 172, 38, 0.08), transparent 10rem),
    linear-gradient(145deg, rgba(6, 18, 15, 0.98), rgba(8, 23, 19, 0.87));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.17);
  padding: clamp(1.35rem, 2.6vw, 2rem);
}

.legal-page .legal-card .icon-ring {
  width: 64px;
  height: 64px;
  border-color: rgba(169, 201, 47, 0.62);
  background: rgba(128, 160, 35, 0.08);
  color: var(--home-green-bright);
}

.legal-page .legal-card h2,
.legal-page .legal-card h3 {
  margin: 0;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-weight: 600 !important;
}

.legal-page .legal-card h2 {
  font-size: 1.35rem;
}

.legal-page .legal-card h3 {
  font-size: 1.1rem;
}

.legal-page .legal-card p,
.legal-page .legal-card address {
  color: #d7dcd4;
  font-size: 0.97rem;
  line-height: 1.8;
}

.legal-page .legal-card a {
  color: var(--home-green-bright);
  text-decoration-color: rgba(186, 219, 69, 0.42);
}

.legal-page .legal-brand {
  color: var(--home-green-bright);
  font-family: Inter, Arial, sans-serif;
}

@media (min-width: 761px) {
  .legal-page .home-shell {
    width: min(100% - 3rem, 1380px);
  }
}

@media (max-width: 760px) {
  .legal-hero {
    min-height: 540px;
  }

  .legal-hero-image {
    background-position: 72% center;
  }

  .legal-hero-image::after {
    background:
      linear-gradient(90deg, rgba(1, 10, 9, 0.9), rgba(1, 10, 9, 0.4)),
      linear-gradient(180deg, rgba(1, 9, 8, 0.12), rgba(1, 9, 8, 0.24) 58%, #020b0a 100%);
  }

  .legal-hero-inner {
    min-height: 462px;
    align-items: flex-end;
    padding-block: 3rem;
  }

  .legal-hero-copy h1 {
    font-size: clamp(2.7rem, 12vw, 3.55rem);
  }

  .legal-content-section {
    padding-block: 3.8rem 4.4rem;
  }

  .legal-page .legal-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
  }

  .legal-page .legal-card .icon-ring {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .legal-page .legal-card {
    grid-template-columns: 1fr;
  }
}

/* Datenschutzerklärung */
.privacy-content-section {
  background:
    radial-gradient(circle at 4% 18%, rgba(146, 183, 37, 0.06), transparent 28rem),
    linear-gradient(180deg, rgba(4, 15, 13, 0.45), rgba(2, 10, 9, 0.12));
}

.privacy-updated {
  color: var(--home-green-bright) !important;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(215px, 0.27fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  margin-top: 2.2rem;
}

.privacy-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 0.2rem;
  border: 1px solid rgba(158, 190, 39, 0.34);
  border-radius: 14px;
  background: rgba(5, 17, 14, 0.78);
  padding: 1.3rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.privacy-toc p {
  margin: 0 0 0.55rem;
  color: var(--home-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-toc a {
  border-radius: 7px;
  color: #d5dbd2;
  font-size: 0.86rem;
  line-height: 1.4;
  padding: 0.46rem 0.55rem;
  transition: background 160ms ease, color 160ms ease;
}

.privacy-toc a:hover,
.privacy-toc a:focus-visible {
  background: rgba(158, 190, 39, 0.1);
  color: #fff;
}

.privacy-sections {
  display: grid;
  gap: 1.2rem;
}

.privacy-card {
  scroll-margin-top: 105px;
  border: 1px solid rgba(158, 190, 39, 0.38);
  border-radius: 14px;
  background:
    radial-gradient(circle at 94% 8%, rgba(135, 172, 38, 0.075), transparent 14rem),
    linear-gradient(145deg, rgba(6, 18, 15, 0.98), rgba(8, 23, 19, 0.88));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.15);
  padding: clamp(1.4rem, 3vw, 2.25rem);
}

.privacy-card-heading {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.privacy-number {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(169, 201, 47, 0.6);
  border-radius: 50%;
  background: rgba(128, 160, 35, 0.08);
  color: var(--home-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.privacy-eyebrow {
  margin: 0 0 0.15rem !important;
  color: var(--home-green-bright) !important;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.76rem !important;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.privacy-card h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.privacy-card p,
.privacy-card li,
.privacy-card address {
  color: #d6dcd4;
  font-size: 0.96rem;
  line-height: 1.8;
}

.privacy-card p {
  margin: 0.85rem 0 0;
}

.privacy-card > p:first-of-type {
  margin-top: 0;
}

.privacy-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.8rem 0 0;
  padding-left: 1.25rem;
}

.privacy-card li::marker {
  color: var(--home-green-bright);
}

.privacy-card a {
  color: var(--home-green-bright);
  text-decoration: underline;
  text-decoration-color: rgba(186, 219, 69, 0.42);
  text-underline-offset: 0.18em;
}

.privacy-card strong {
  color: #f6f7f2;
  font-weight: 600;
}

.privacy-address {
  margin-top: 0.85rem;
  font-style: normal;
}

.privacy-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  margin-top: 1.25rem;
  border-left: 2px solid var(--home-green);
  border-radius: 0 9px 9px 0;
  background: rgba(153, 190, 39, 0.075);
  padding: 1rem 1.1rem;
}

.privacy-note svg {
  margin-top: 0.2rem;
  color: var(--home-green-bright);
}

.privacy-note p {
  margin: 0;
  font-size: 0.9rem;
}

.home-footer-legal a[aria-current="page"] {
  color: var(--home-green-bright);
}

@media (max-width: 900px) {
  .privacy-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .privacy-toc,
  .privacy-sections {
    min-width: 0;
  }

  .privacy-card {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .privacy-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-toc p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .privacy-toc {
    grid-template-columns: 1fr;
  }

  .privacy-card-heading {
    align-items: flex-start;
  }

  .privacy-number {
    width: 46px;
    height: 46px;
  }

  .privacy-card p,
  .privacy-card li,
  .privacy-card address {
    font-size: 0.92rem;
  }
}

/* Artenschutzgutachten */
.audit-page {
  --home-bg: #020b0a;
  --home-panel: rgba(7, 20, 17, 0.9);
  --home-line: rgba(158, 190, 39, 0.43);
  --home-green: #a4c72d;
  --home-green-bright: #badb45;
  --home-copy: #f2f3ec;
  --home-muted: #c8cec5;
  background:
    radial-gradient(circle at 76% 42%, rgba(121, 157, 32, 0.09), transparent 34rem),
    linear-gradient(180deg, #010807, #06110f 50%, #020a09);
  color: var(--home-copy);
  font-family: "Open Sans", Arial, sans-serif;
}

.audit-page .home-shell {
  width: min(100% - 3rem, 1240px);
  margin-inline: auto;
}

.audit-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #020b0a url("../images/artenschutzgutachten-hero.webp") 68% center / cover no-repeat;
}

.audit-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 10, 9, 0.99) 0%, rgba(1, 10, 9, 0.95) 36%, rgba(1, 10, 9, 0.57) 58%, rgba(1, 10, 9, 0.11) 79%),
    linear-gradient(180deg, rgba(1, 9, 8, 0.18), rgba(1, 9, 8, 0.1) 72%, #020b0a 100%);
}

.audit-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 760px;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 3.5rem;
}

.audit-hero-copy {
  width: min(100%, 680px);
}

.audit-eyebrow,
.audit-section-heading > p,
.audit-cta-band > div > p {
  margin: 0 0 0.85rem;
  color: var(--home-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.audit-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--nf-font-display);
  font-size: var(--nf-size-hero);
  font-weight: 500;
  letter-spacing: -0.032em;
  line-height: 1.03;
  text-wrap: balance;
}

.audit-hero h1 span {
  display: block;
  margin-top: 0.12em;
  color: var(--home-green);
}

.audit-hero-lead {
  max-width: 620px;
  margin: 1.8rem 0 0;
  color: #e4e9e1;
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.7;
}

.audit-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.35rem;
  border-top: 1px solid rgba(171, 205, 53, 0.28);
  padding-top: 1.45rem;
}

.audit-benefit {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
}

.audit-benefit p {
  margin: 0;
}

.audit-benefit strong,
.audit-benefit span {
  display: block;
}

.audit-benefit strong {
  color: #f7f8f2;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}

.audit-benefit p > span {
  margin-top: 0.28rem;
  color: #bdc6bd;
  font-size: 0.82rem;
  line-height: 1.45;
}

.audit-image-icon {
  position: relative;
  display: block;
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  overflow: hidden;
}

.audit-image-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 212%;
  max-width: none;
  transform: translate(-50%, -50%);
}

.audit-image-icon-small {
  width: 56px;
  height: 56px;
}

.home-audit-icon img {
  width: 150% !important;
  height: auto !important;
  transform: translate(-50%, -45.5%) !important;
}

.home-audit-card .home-focus-title {
  gap: 0.75rem;
}

.home-audit-card .home-focus-title h3 {
  min-width: 0;
  font-size: clamp(0.94rem, 1.25vw, var(--nf-size-card));
  hyphens: auto;
  overflow-wrap: break-word;
}

.audit-section {
  position: relative;
  padding: 5.2rem 0;
}

.audit-section-heading {
  margin-bottom: 2.8rem;
  text-align: center;
}

.audit-section-heading h2 {
  margin: 0;
  color: #f5f6f1;
  font-family: var(--nf-font-ui);
  font-size: var(--nf-size-section);
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.25;
  text-transform: uppercase;
  text-wrap: balance;
}

.audit-projects {
  background:
    radial-gradient(circle at 50% 10%, rgba(154, 190, 39, 0.06), transparent 32rem),
    #06110f;
}

.audit-project-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(158, 190, 39, 0.28);
  border-bottom: 1px solid rgba(158, 190, 39, 0.28);
}

.audit-project-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(158, 190, 39, 0.25);
  padding: 2rem 1.15rem;
  text-align: center;
}

.audit-project-card:last-child {
  border-right: 0;
}

.audit-project-card h3,
.audit-offer-card h3 {
  margin: 0;
  color: var(--home-green-bright);
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.audit-project-card p,
.audit-offer-card p {
  margin: 0.8rem 0 0;
  color: #d4dad2;
  font-size: 0.9rem;
  line-height: 1.7;
}

.audit-offer {
  background:
    radial-gradient(circle at 85% 35%, rgba(147, 183, 37, 0.08), transparent 29rem),
    linear-gradient(180deg, #020b0a, #06130f);
}

.audit-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.audit-offer-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(158, 190, 39, 0.28);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 82%, rgba(135, 172, 38, 0.1), transparent 8rem),
    linear-gradient(145deg, rgba(7, 20, 17, 0.98), rgba(8, 25, 20, 0.82));
  padding: 1.65rem 1.35rem;
  text-align: center;
}

.audit-offer-lucide {
  display: grid;
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  place-items: center;
  border: 1px solid rgba(186, 219, 69, 0.52);
  border-radius: 50%;
  color: var(--home-green-bright);
}

.audit-promise {
  display: grid;
  width: min(100%, 980px);
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.15rem;
  align-items: center;
  margin: 3rem auto 0;
  border-left: 3px solid var(--home-green);
  border-radius: 0 10px 10px 0;
  background: rgba(150, 188, 38, 0.085);
  padding: 1.35rem 1.6rem;
}

.audit-promise svg {
  color: var(--home-green-bright);
}

.audit-promise p {
  margin: 0;
  color: #edf1e9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.audit-scope-note {
  width: min(100%, 900px);
  margin: 1rem auto 0;
  color: #aeb9af;
  font-size: 0.79rem;
  line-height: 1.6;
  text-align: center;
}

.audit-cta-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(158, 190, 39, 0.25);
  background:
    radial-gradient(circle at 16% 52%, rgba(155, 192, 40, 0.2), transparent 18rem),
    linear-gradient(120deg, #142b21, #081711 64%, #06100d);
  padding: 4.5rem 0;
}

.audit-cta-section::after {
  position: absolute;
  right: -7rem;
  bottom: -11rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(180, 216, 62, 0.1);
  border-radius: 50%;
  content: "";
}

.audit-cta-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.8rem;
  align-items: start;
}

.audit-cta-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(186, 219, 69, 0.6);
  border-radius: 50%;
  color: var(--home-green-bright);
}

.audit-cta-band h2 {
  margin: 0;
  color: #fff;
  font-family: var(--nf-font-display);
  font-size: var(--nf-size-feature);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.12;
}

.audit-cta-band h3 {
  max-width: 760px;
  margin: 1rem 0 0;
  color: #d8ded5;
  font-size: clamp(1rem, 1.9vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
}

.audit-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-top: 1.7rem;
}

.audit-cta-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #dce4da;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
}

.audit-cta-links .audit-cta-button {
  border: 1px solid rgba(187, 219, 69, 0.72);
  border-radius: 7px;
  background: linear-gradient(135deg, #779822, #99b92d);
  padding: 0.8rem 1.1rem;
  color: #fff;
  font-weight: 600;
  transition: transform 160ms ease, border-color 160ms ease;
}

.audit-cta-links .audit-cta-button:hover {
  border-color: var(--home-green-bright);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .audit-project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .audit-project-card {
    border-bottom: 1px solid rgba(158, 190, 39, 0.25);
  }

  .audit-project-card:nth-child(3) {
    border-right: 0;
  }

  .audit-project-card:nth-child(n + 4) {
    border-bottom: 0;
  }

  .audit-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .audit-page .home-shell {
    width: min(100% - 2rem, 1240px);
  }

  .audit-hero,
  .audit-hero-inner {
    min-height: 760px;
  }

  .audit-hero {
    background-position: 68% center;
  }

  .audit-hero-overlay {
    background:
      linear-gradient(90deg, rgba(1, 10, 9, 0.96), rgba(1, 10, 9, 0.66)),
      linear-gradient(180deg, rgba(1, 10, 9, 0.18), rgba(1, 10, 9, 0.44) 65%, #020b0a 100%);
  }

  .audit-hero-inner {
    align-items: flex-start;
    padding-top: 8.4rem;
  }

  .audit-hero h1 {
    max-width: 530px;
    font-size: var(--nf-size-hero);
  }

  .audit-benefits {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .audit-benefit {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .audit-benefit p > span {
    font-size: 0.75rem;
  }

  .audit-section {
    padding: 4rem 0;
  }

  .audit-project-grid,
  .audit-offer-grid {
    grid-template-columns: 1fr;
  }

  .audit-project-grid {
    border: 0;
  }

  .audit-project-card,
  .audit-project-card:nth-child(n) {
    display: grid;
    min-height: 0;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    border: 0;
    border-bottom: 1px solid rgba(158, 190, 39, 0.25);
    padding: 1.25rem 0;
    text-align: left;
  }

  .audit-project-card:last-child {
    border-bottom: 0;
  }

  .audit-project-card .audit-image-icon,
  .audit-offer-card .audit-image-icon,
  .audit-offer-lucide {
    width: 78px;
    height: 78px;
  }

  .audit-offer-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 1.25rem;
    text-align: left;
  }

  .audit-project-card p,
  .audit-offer-card p {
    margin-top: 0.4rem;
  }

  .audit-promise {
    align-items: start;
    padding: 1.2rem;
  }

  .audit-cta-band {
    grid-template-columns: 1fr;
  }

  .audit-cta-icon {
    width: 74px;
    height: 74px;
  }
}

@media (max-width: 480px) {
  .audit-hero,
  .audit-hero-inner {
    min-height: 800px;
  }

  .audit-hero {
    background-position: 64% center;
  }

  .audit-hero-lead {
    font-size: 1rem;
  }

  .audit-section-heading {
    margin-bottom: 2rem;
  }

  .audit-project-card,
  .audit-project-card:nth-child(n),
  .audit-offer-card {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 0.8rem;
  }

  .audit-project-card .audit-image-icon,
  .audit-offer-card .audit-image-icon,
  .audit-offer-lucide {
    width: 68px;
    height: 68px;
  }

  .audit-promise {
    grid-template-columns: 1fr;
  }

  .audit-cta-links {
    align-items: flex-start;
    flex-direction: column;
  }
}
