/* =========================================================
   CI Style File
   Fonts: League Spartan 700 for headings, Inter for body/UI
   Bootstrap-safe utility classes use the prefix: ci-
   ========================================================= */

@font-face {
  font-family: "League Spartan";
  src: url("/css/fonts/LeagueSpartan-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/css/fonts/Inter-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #69ca01;
  --color-primary-dark: #4da000;
  --color-black: #050705;
  --color-dark: #0a0f0b;
  --color-dark-green: #061208;
  --color-muted: #687067;
  --color-line: rgba(5, 7, 5, 0.1);
  --color-white: #ffffff;
  --color-offwhite: #f7f8f5;

  --shadow-soft: 0 18px 45px rgba(5, 7, 5, 0.12);
  --shadow-card: 0 12px 30px rgba(5, 7, 5, 0.12);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --header-height: 88px;

  --font-heading: "League Spartan", sans-serif;
  --font-body:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

/* =========================================================
   Bootstrap-safe CI helper classes
   Diese Klassen kollidieren nicht mit Bootstrap.
   ========================================================= */

.ci-font-heading {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
}

.ci-font-body {
  font-family: var(--font-body) !important;
}

.ci-text-primary {
  color: var(--color-primary) !important;
}

.ci-text-primary-dark {
  color: var(--color-primary-dark) !important;
}

.ci-text-black {
  color: var(--color-black) !important;
}

.ci-text-dark {
  color: var(--color-dark) !important;
}

.ci-text-muted {
  color: var(--color-muted) !important;
}

.ci-text-white {
  color: var(--color-white) !important;
}

.ci-bg-primary {
  background-color: var(--color-primary) !important;
}

.ci-bg-primary-dark {
  background-color: var(--color-primary-dark) !important;
}

.ci-bg-black {
  background-color: var(--color-black) !important;
}

.ci-bg-dark {
  background-color: var(--color-dark) !important;
}

.ci-bg-dark-green {
  background-color: var(--color-dark-green) !important;
}

.ci-bg-white {
  background-color: var(--color-white) !important;
}

.ci-bg-offwhite {
  background-color: var(--color-offwhite) !important;
}

.ci-border-primary {
  border-color: var(--color-primary) !important;
}

.ci-border-black {
  border-color: var(--color-black) !important;
}

.ci-border-white {
  border-color: var(--color-white) !important;
}

.ci-rounded-lg {
  border-radius: var(--radius-lg) !important;
}

.ci-rounded-md {
  border-radius: var(--radius-md) !important;
}

.ci-rounded-sm {
  border-radius: var(--radius-sm) !important;
}

.ci-shadow-soft {
  box-shadow: var(--shadow-soft) !important;
}

.ci-shadow-card {
  box-shadow: var(--shadow-card) !important;
}

/* Eigener Button ohne Bootstrap-Kollision */
.ci-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.45rem;
  border: 1px solid var(--color-primary);
  border-radius: 7px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 850;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.ci-btn:hover,
.ci-btn:focus-visible {
  transform: translateY(-1px);
  border-color: var(--color-primary-dark);
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.ci-btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.ci-btn-outline:hover,
.ci-btn-outline:focus-visible {
  background: var(--color-primary);
  color: var(--color-white);
}

/* =========================================================
   Base
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-black);
  background: var(--color-white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
}

a:hover {
  color: var(--color-primary);
}

p {
  margin: 0 0 1.35rem;
  color: var(--color-muted);
  font-family: var(--font-body);
  line-height: 1.75;
}

ul,
ol,
li {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5.85rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  font-size: 1.125rem;
  letter-spacing: -0.025em;
}

button,
.button,
.btn,
input[type="submit"] {
  font-family: var(--font-body);
  font-weight: 700;
}

.container {
  --bs-gutter-x: 2rem;
}

.spacer-1 {
  position: relative;
  height: 5rem;
}

.breadcrumb-item {
  color: white;
}
.breadcrumb-item.active {
  color: var(--color-primary) !important;
}
.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 2000;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-black);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--color-white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;

  z-index: 1030;
  /* background: rgba(5, 7, 5, 0.92); */
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  /* transition: background 0.25s ease, box-shadow 0.25s ease, height 0.85s ease-in-out; */
  transition: all 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 5, 0.98);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  height: calc(var(--header-height));
}

@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover > .dropdown-menu,
  .navbar .nav-item.dropdown:focus-within > .dropdown-menu {
    display: block;
  }

  .navbar .nav-item.dropdown > .dropdown-menu {
    margin-top: 0;
  }
}

/* Parent mit Dropdown bekommt Chevron */
.navbar .nav-item.dropdown > .nav-link {
  position: relative;
  padding-right: 2rem !important;
}

.navbar .nav-item.dropdown > .nav-link::after {
  content: "\f078";
  font-family: "FontAwesome";
  font-weight: 400;
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  line-height: 1;
  color: currentColor;
  opacity: 0.8;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.navbar .nav-item.dropdown:hover > .nav-link::after,
.navbar .nav-item.dropdown:focus-within > .nav-link::after,
.navbar .nav-item.dropdown.is-open > .nav-link::after {
  transform: translateY(-50%) rotate(180deg);
  color: var(--color-primary);
}

.site-header.is-scrolled .navbar {
  padding-top: 0;
  transition: all 0.25s ease;
}

.navbar {
  min-height: var(--header-height);
  padding: 0.85rem 0;
  transition: all 0.25s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: var(--color-white);
}

.brand:hover,
.brand:focus {
  color: var(--color-white);
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  color: var(--color-black);
  font-size: 1.45rem;
  box-shadow: 0 0 0 8px rgba(105, 202, 1, 0.1);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-name {
  color: var(--color-primary);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-subline {
  margin-top: 0.15rem;
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  height: 88px;
  width: auto;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(105, 202, 1, 0.35);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--color-primary) !important;
}

.nav-cta {
  min-width: 176px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.45rem;
  border-radius: 7px;
  font-weight: 850;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: var(--color-primary);
  --bs-btn-border-color: var(--color-primary);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: var(--color-primary-dark);
  --bs-btn-hover-border-color: var(--color-primary-dark);
  --bs-btn-focus-shadow-rgb: 105, 202, 1;
  --bs-btn-active-bg: var(--color-primary-dark);
  --bs-btn-active-border-color: var(--color-primary-dark);
  box-shadow: 0 12px 24px rgba(105, 202, 1, 0.18);
}

.btn-outline-light {
  --bs-btn-color: #ffffff;
  --bs-btn-border-color: rgba(255, 255, 255, 0.58);
  --bs-btn-hover-color: #050705;
  --bs-btn-hover-bg: #ffffff;
  --bs-btn-hover-border-color: #ffffff;
  --bs-btn-focus-shadow-rgb: 255, 255, 255;
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-light {
  background: linear-gradient(180deg, #ffffff 0%, var(--color-offwhite) 100%);
}

.hero-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.9) 30%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.15) 75%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    circle at right center,
    transparent 0%,
    transparent 28%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 1) 75%
  );
  mask-image: radial-gradient(
    circle at right center,
    transparent 0%,
    transparent 28%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 1) 75%
  );
}

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

.min-vh-hero {
  min-height: 760px;
  height: 100svh;
  padding-top: var(--header-height);
}

.hero-content {
  max-width: 720px;
  padding-top: 4.5rem;
}

.hero-text {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--color-white);
  font-weight: 850;
}

.video-link:hover,
.video-link:focus {
  color: var(--color-primary);
}

.video-play {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 3rem;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.video-link:hover .video-play,
.video-link:focus .video-play {
  border-color: var(--color-primary);
  background: rgba(105, 202, 1, 0.18);
}

.benefits-strip {
  padding: 2.15rem 0;
  color: var(--color-white);
  background: linear-gradient(135deg, #050705 0%, #0a0f0b 100%);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-height: 100%;
}

.benefit-item i {
  flex: 0 0 2.75rem;
  width: 2.75rem;

  display: inline-flex;
  justify-content: center;
  align-items: flex-start;

  color: var(--color-primary);
  font-size: 2.35rem;
  line-height: 1;
}

.benefit-item h3 {
  margin-bottom: 0.35rem;
  color: var(--color-white);
  font-size: 1.05rem;
}

.benefit-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

.image-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(5, 7, 5, 0.06);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(5, 7, 5, 0.16);
}

.image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card .card-body {
  position: relative;
  padding: 1.25rem 1.25rem 1.35rem;
}

.image-card h3 {
  margin-bottom: 0.35rem;
}

.image-card p {
  margin: 0;
  color: #3f473e;
  font-size: 0.92rem;
  line-height: 1.5;
}

.image-card a {
  position: absolute;
  right: 1.1rem;
  bottom: 1.15rem;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-primary-dark);
  font-size: 1.25rem;
}

.image-card a:hover,
.image-card a:focus {
  color: var(--color-white);
  background: var(--color-primary);
}

.split-section {
  overflow: hidden;
  color: var(--color-white);
  background:
    radial-gradient(circle at 0 20%, rgba(105, 202, 1, 0.18), transparent 32%),
    var(--color-dark-green);
}

.split-content-wrap {
  display: flex;
  align-items: center;
  min-height: 640px;
}

.split-content {
  width: min(100%, 610px);
  margin-left: auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 6rem) clamp(4rem, 8vw, 7rem)
    1rem;
}

.split-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.check-list {
  display: grid;
  gap: 1rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.check-list i {
  color: var(--color-primary);
}

.split-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.split-image-slim {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
}
.split-image-top {
  object-position: top;
}

.split-image-center {
  object-position: center;
}

.split-image-bottom {
  object-position: bottom;
}

.project-card img {
  aspect-ratio: 1 / 1;
}

.process-section {
  background: #ffffff;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step-item {
  position: relative;
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 14px 38px rgba(5, 7, 5, 0.08);
}

.step-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 1.25rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  color: var(--color-white);
  font-size: 2rem;
}

.step-item h3 {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

.step-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-offwhite) 0%, #ffffff 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  padding: 1rem 0;
}

.stat-item strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--color-primary);
  font-size: clamp(0.4rem, 2vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.stat-item span {
  display: block;
  max-width: 150px;
  color: #283027;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}
.stat-item .counter {
  display: inline;
  margin-bottom: 0.7rem;
  color: var(--color-primary);
  font-size: clamp(0.4rem, 2vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.about-section {
  position: relative;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.garden-line {
  width: min(100%, 980px);
  margin: 2rem auto 0;
  line-height: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.garden-line-svg {
  display: block;
  width: 100%;
  height: auto;
}

#garden-line-draw {
  stroke-dasharray: var(--garden-line-length, 1);
  stroke-dashoffset: var(--garden-line-length, 1);
}

#garden-line-draw.is-visible {
  animation: drawGardenLine 3.4s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

@keyframes drawGardenLine {
  to {
    stroke-dashoffset: 0;
  }
}

.testimonials-section {
  background: var(--color-white);
  text-align: center;
}

.testimonial-card {
  /* max-width: 700px; */
  padding: clamp(2rem, 5vw, 3.6rem);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.testimonials-swiper-wrap {
  position: relative;
}

.testimonials-swiper {
  position: relative;
  padding: 0 clamp(2.75rem, 7vw, 4.25rem) 3.2rem;
}

.testimonial-slide {
  height: auto;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.5rem 0;
  color: var(--color-primary);
  font-size: 1.75rem;
}

blockquote {
  margin: 0 auto 1rem;
  max-width: 560px;
  color: #4f574d;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  line-height: 1.65;
}

.testimonial-author {
  color: #596156;
  font-weight: 700;
}

.testimonials-swiper .swiper-pagination {
  bottom: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d0d4cc;
  opacity: 1;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(105, 202, 1, 0.24);
  border-radius: 50%;
  color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 26, 15, 0.1);
  transform: translateY(-50%);
  transition:
    background-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.testimonial-nav:hover,
.testimonial-nav:focus-visible {
  color: #ffffff;
  background: var(--color-primary);
  transform: translateY(-50%) scale(1.05);
}

.testimonial-prev {
  left: 7%;
}

.testimonial-next {
  right: 7%;
}

.site-footer {
  padding: clamp(4.5rem, 8vw, 7rem) 0 2rem;
  color: var(--color-white);
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(105, 202, 1, 0.16),
      transparent 28%
    ),
    linear-gradient(135deg, #050705 0%, #0a0f0b 100%);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.74);
}

.footer-brand {
  margin-top: 2.2rem;
}

.contact-list {
  display: grid;
  gap: 1.15rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  line-height: 1.55;
}
/* =========================================================
   Footer – Öffnungszeiten
   ========================================================= */

.site-footer .footer-opening-hours {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
}

.site-footer .footer-opening-hours-title {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 0.9rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer .footer-opening-hours-title i {
  width: 24px;
  color: var(--color-primary);
  font-size: 1.25rem;
  line-height: 1;
  text-align: center;
}

.site-footer .footer-opening-hours-list {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  column-gap: 1.25rem;
  row-gap: 0.55rem;
  margin: 0;
  padding: 0 0 0 calc(24px + 0.85rem);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
}

.site-footer .footer-opening-hours-list dt,
.site-footer .footer-opening-hours-list dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
}

.site-footer .footer-opening-hours-list dt {
  color: var(--color-white);
  white-space: nowrap;
}

.site-footer .footer-opening-hours-list dd {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1199.98px) {
  .site-footer .footer-opening-hours-list {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 1rem;
  }
}

@media (max-width: 991.98px) {
  .site-footer .footer-opening-hours {
    margin-top: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .site-footer .footer-opening-hours-list {
    grid-template-columns: 58px minmax(0, 1fr);
    padding-left: calc(24px + 0.85rem);
  }
}
.contact-list i {
  color: var(--color-primary);
  font-size: 1.25rem;
  line-height: 1.35;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
}

.social-links a:hover,
.social-links a:focus {
  background: var(--color-white);
  color: var(--color-black);
}

.contact-form .form-control {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  font-weight: 650;
}

.contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form .form-control:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  box-shadow: 0 0 0 0.2rem rgba(105, 202, 1, 0.22);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer-bottom nav,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
  color: var(--color-primary);
}
.footer-heading {
  margin-bottom: 1.25rem;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li + li {
  margin-top: 1rem;
}

.footer-link-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-link-list a:hover {
  color: #63e600;
  transform: translateX(4px);
}

.footer-link-list i {
  color: #63e600;
  font-size: 1.1rem;
}

.footer-link-list span {
  margin-left: 0.35rem;
  padding: 0.2rem 0.45rem;
  border-radius: 0.35rem;
  background: rgba(99, 230, 0, 0.16);
  color: #63e600;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-contact-cta {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact-cta p {
  max-width: 420px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1199.98px) {
  .steps-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  :root {
    --header-height: 76px;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(5, 7, 5, 0.96);
  }

  .nav-link {
    padding: 0.75rem 0;
  }

  .nav-cta {
    width: 100%;
    margin-top: 0.75rem;
  }

  .hero-section,
  .min-vh-hero {
    min-height: 720px;
  }

  .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.9) 30%,
      rgba(0, 0, 0, 0.55) 55%,
      rgba(0, 0, 0, 0.15) 65%,
      transparent 100%
    );
    -webkit-mask-image: radial-gradient(
      circle at top center,
      transparent 0%,
      transparent 28%,
      rgba(0, 0, 0, 0.35) 45%,
      rgba(0, 0, 0, 1) 63%
    );
    mask-image: radial-gradient(
      circle at top center,
      transparent 0%,
      transparent 28%,
      rgba(0, 0, 0, 0.35) 45%,
      rgba(0, 0, 0, 1) 63%
    );
  }
  .hero-col {
    align-self: flex-end;
    -webkit-align-self: flex-end;
    margin-bottom: 33px;
  }
  .hero-bg video {
    height: 75%;
  }

  .hero-content {
    padding-top: 2.5rem;
  }

  .benefits-strip {
    padding: 3rem 0;
  }

  .split-content-wrap {
    min-height: auto;
  }

  .split-content {
    width: 100%;
    margin: 0;
    padding: 4.5rem 2rem;
  }

  .split-image {
    min-height: 420px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  body {
    background: var(--color-offwhite);
  }

  .container {
    --bs-gutter-x: 1.5rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .brand-name {
    font-size: 1.42rem;
  }

  .brand-subline {
    font-size: 0.62rem;
  }

  .section {
    padding: 4.2rem 0;
  }

  .hero-section {
    min-height: 820px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .min-vh-hero {
    min-height: 820px;
    align-items: flex-start !important;
  }

  .hero-content {
    padding-top: 4.5rem;
  }

  .hero-actions {
    display: grid;
    gap: 0.9rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .benefit-item {
    padding: 0.2rem 0;
  }

  .card-row {
    gap: 1rem 0;
  }

  .image-card {
    border-radius: 12px;
  }

  .image-card img,
  .project-card img {
    aspect-ratio: 16 / 8.7;
  }

  .image-card .card-body {
    padding: 1rem 3.5rem 1.1rem 1rem;
  }

  .split-content {
    padding: 4rem 1.5rem;
  }

  .split-image {
    min-height: 360px;
  }

  .steps-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 1.15rem;
    align-items: start;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 1rem 0 1.6rem;
  }

  .step-item:not(:last-child)::after {
    position: absolute;
    left: 36px;
    bottom: -2px;
    width: 2px;
    height: 28px;
    content: "";
    background: var(--color-primary);
  }

  .step-icon {
    width: 72px;
    height: 72px;
    margin: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.25rem;
  }

  .stat-item strong,
  .stat-item .counter {
    font-size: 2.4rem;
    z-index: 2;
  }
  .about-section .container {
    position: relative;
    z-index: 1;
  }

  .garden-line {
    /* height: 70px; */
    z-index: 0;
    margin-top: 2rem;
  }

  .swiper-pagination {
    position: relative;
    z-index: 0;
  }
  .testimonial-card {
    padding: 0;
    background: transparent;
  }

  .testimonials-swiper {
    padding: 0 0 3rem;
  }

  .testimonial-nav {
    top: auto;
    bottom: 12%;
    width: 38px;
    height: 38px;
    transform: none;
  }

  .testimonial-nav:hover,
  .testimonial-nav:focus-visible {
    transform: scale(1.05);
  }

  .site-footer {
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
  }

  .footer-bottom nav,
  .legal-links {
    gap: 1rem 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .btn {
    min-height: 52px;
  }

  .hero-section,
  .min-vh-hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 3.5rem;
  }

  .benefits-strip .row {
    gap: 1.6rem 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.benefits-strip .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-height: 100%;
}

.benefits-strip .benefit-item > i.fa {
  flex: 0 0 3rem !important;
  width: 3rem !important;
  min-width: 3rem !important;
  max-width: 3rem !important;

  display: flex !important;
  justify-content: center;
  align-items: flex-start;

  color: var(--color-primary);
  font-size: 2.35rem;
  line-height: 1;
}

/* =========================================================
   CI Before / After Slider
   ========================================================= */

.ci-before-after {
  --ci-ba-position: 50%;

  position: relative;
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16 / 9;
  overflow: hidden;

  border: 1px solid rgba(5, 7, 5, 0.08);
  border-radius: var(--radius-lg, 28px);
  background: var(--color-offwhite, #f7f8f5);
  box-shadow: var(--shadow-card, 0 12px 30px rgba(5, 7, 5, 0.12));

  isolation: isolate;
  user-select: none;
  touch-action: none;
}

.ci-ba-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.ci-ba-img-before {
  z-index: 1;
}

.ci-ba-after {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: var(--ci-ba-position);
  overflow: hidden;
}

.ci-ba-label {
  position: absolute;
  z-index: 5;
  top: 1rem;

  padding: 0.45rem 0.75rem;
  border-radius: 999px;

  background: rgba(5, 7, 5, 0.72);
  backdrop-filter: blur(12px);
  color: var(--color-white, #fff);

  font-family: var(--font-body, system-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1;
}

.ci-ba-label-before {
  left: 1rem;
}

.ci-ba-label-after {
  right: 1rem;
  background: rgba(105, 202, 1, 0.88);
  color: var(--color-black, #050705);
}

.ci-ba-range {
  position: absolute;
  inset: 0;
  z-index: 10;

  width: 100%;
  height: 100%;
  margin: 0;

  opacity: 0;
  cursor: ew-resize;
  appearance: none;
  -webkit-appearance: none;
}

.ci-ba-range::-webkit-slider-thumb {
  width: 48px;
  height: 48px;
  appearance: none;
  -webkit-appearance: none;
}

.ci-ba-range::-moz-range-thumb {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
}

.ci-ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ci-ba-position);
  z-index: 4;

  width: 3px;
  background: var(--color-primary, #69ca01);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55),
    0 0 24px rgba(105, 202, 1, 0.55);

  transform: translateX(-50%);
  pointer-events: none;
}

.ci-ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;

  display: grid;
  width: clamp(46px, 7vw, 62px);
  height: clamp(46px, 7vw, 62px);
  place-items: center;

  border: 3px solid var(--color-primary, #69ca01);
  border-radius: 50%;
  background: rgba(5, 7, 5, 0.82);
  box-shadow:
    0 14px 34px rgba(5, 7, 5, 0.28),
    0 0 0 8px rgba(105, 202, 1, 0.14);

  transform: translate(-50%, -50%);
}

.ci-ba-handle::before,
.ci-ba-handle::after {
  content: "";
  position: absolute;

  width: 9px;
  height: 9px;
  border-top: 2px solid var(--color-white, #fff);
  border-left: 2px solid var(--color-white, #fff);
}

.ci-ba-handle::before {
  left: 16px;
  transform: rotate(-45deg);
}

.ci-ba-handle::after {
  right: 16px;
  transform: rotate(135deg);
}

.ci-ba-handle span {
  display: block;
  width: 2px;
  height: 22px;
  border-radius: 999px;
  background: var(--color-primary, #69ca01);
}

.ci-before-after:focus-within {
  outline: 3px solid rgba(105, 202, 1, 0.38);
  outline-offset: 4px;
}

@media (max-width: 767.98px) {
  .ci-before-after {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md, 18px);
  }

  .ci-ba-label {
    top: 0.75rem;
    font-size: 0.72rem;
  }

  .ci-ba-label-before {
    left: 0.75rem;
  }

  .ci-ba-label-after {
    right: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .ci-before-after {
    aspect-ratio: 1 / 1;
  }
}

/* =========================================================
   CI Classic FAQ Accordion - Fix: Plus rechts + Active Border
   ========================================================= */

.ci-faq-classic {
  display: grid;
  gap: 1rem;
}
.ci-faq-classic .accordion-item {
  overflow: hidden;
  border: 1.5px solid rgba(5, 7, 5, 0.16);
  border-radius: 22px;
  background: var(--color-white);
  color: var(--color-black);
  box-shadow: none;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.ci-faq-classic .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(105, 202, 1, 0.75);
  box-shadow: inset 5px 0 0 var(--color-primary);
}

.ci-faq-classic .accordion-item:hover {
  border-color: rgba(105, 202, 1, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(5, 7, 5, 0.08);
}

.ci-faq-classic .accordion-item:has(.accordion-button:not(.collapsed)):hover {
  border-color: rgba(105, 202, 1, 0.75);
  box-shadow:
    inset 5px 0 0 var(--color-primary),
    0 14px 34px rgba(5, 7, 5, 0.08);
}
.ci-faq-classic .accordion-header {
  margin: 0;
}

.ci-faq-classic .accordion-button {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  width: 100%;
  min-height: 82px;

  padding: 1.45rem 2rem;
  padding-left: 2rem;

  background: transparent;
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
  text-align: left;
  box-shadow: none;
}

.ci-faq-classic .accordion-button:not(.collapsed) {
  /* color: var(--color-primary); */
  background: transparent;
  box-shadow: none;
}

.ci-faq-classic .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

/* Plus/Minus wirklich ans rechte Ende */
.ci-faq-classic .accordion-button::after {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 2rem;
  height: 2rem;
  margin-left: auto;

  background-image: none !important;
  content: "+";

  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;

  transform: none !important;
}

.ci-faq-classic .accordion-button:not(.collapsed)::after {
  content: "−";
  color: var(--color-primary);
  transform: none !important;
}

.ci-faq-classic .accordion-body {
  position: relative;
  z-index: 2;

  padding: 0 2rem 2rem;
  padding-left: 2rem;

  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
}

@media (max-width: 767.98px) {
  .ci-faq-classic {
    gap: 0.85rem;
  }

  .ci-faq-classic .accordion-item {
    border-radius: 16px;
  }

  .ci-faq-classic
    .accordion-item:has(.accordion-button:not(.collapsed))::before {
    width: 5px;
    border-radius: 16px 0 0 16px;
  }

  .ci-faq-classic .accordion-button {
    min-height: 70px;
    padding: 1.2rem 1.25rem;
    font-size: 1.15rem;
  }

  .ci-faq-classic .accordion-body {
    padding: 0 1.25rem 1.35rem;
  }

  .ci-faq-classic .accordion-button::after {
    width: 1.7rem;
    height: 1.7rem;
    font-size: 1.7rem;
  }
}

/* NAV Toggler */
.navbar-toggler {
  border: 0;
  padding: 0;
  box-shadow: none;
  outline: none;
  background: transparent;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
  box-shadow: none;
  outline: none;
}
.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill: none;
  transition:
    stroke-dasharray 400ms,
    stroke-dashoffset 400ms;
  stroke: var(--color-primary);
  stroke-width: 5.5;
  stroke-linecap: round;
}
.ham4 .top {
  stroke-dasharray: 40 121;
}
.ham4 .bottom {
  stroke-dasharray: 40 121;
}
.ham4.active .top {
  stroke-dashoffset: -68px;
}
.ham4.active .bottom {
  stroke-dashoffset: -68px;
}
.ci-idea-banner-section {
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: var(--color-offwhite);
}
@media (min-width: 768px) {
  .ci-idea-banner--image-left .ci-idea-banner-image-col {
    left: 0;
    right: auto;
  }

  .ci-idea-banner--image-left .ci-idea-banner-text-col {
    margin-left: 50%;
  }

  .ci-idea-banner--image-left .ci-idea-banner-media::before {
    background: linear-gradient(
      270deg,
      rgba(4, 12, 5, 1) 0%,
      rgba(6, 18, 8, 0.85) 18%,
      rgba(6, 18, 8, 0.45) 42%,
      rgba(6, 18, 8, 0.12) 68%,
      transparent 100%
    );
  }
}

/* =========================================================
   Service Cards - gleiche Höhe + Button unten rechts
   =========================================================
*/
.service-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.service-card img {
  flex: 0 0 auto;
}

.service-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 190px;
  padding: 1.25rem;
}

.service-card .card-title {
  margin-bottom: 0.45rem;
}

.service-card .card-text {
  margin-bottom: 1.25rem;
}

.service-card .card-more {
  position: static;
  align-self: flex-end;
  margin-top: auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;

  width: auto;
  height: 38px;
  min-height: 38px;
  padding: 0 0.9rem;

  border-radius: 999px;
  background: rgba(105, 202, 1, 0.12);
  color: var(--color-primary-dark);

  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
}

.service-card .card-more i {
  font-size: 1rem;
}

.service-card .card-more:hover,
.service-card .card-more:focus {
  color: var(--color-white);
  background: var(--color-primary);
}

@media (max-width: 767.98px) {
  .service-card .card-body {
    min-height: auto;
    padding: 1rem;
  }
}

/* IDEA BANNER  */
.ci-idea-banner-section {
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: var(--color-offwhite);
}

.ci-idea-banner {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(circle at 8% 18%, rgba(105, 202, 1, 0.16), transparent 28%),
    linear-gradient(135deg, #020602 0%, var(--color-dark-green) 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-card);
}

.ci-idea-banner-row {
  position: relative;
}

/* Diese Spalte bestimmt die komplette Bannerhöhe */
.ci-idea-banner-text-col {
  position: relative;
  z-index: 2;
}

.ci-idea-banner-content {
  padding: clamp(1.8rem, 4vw, 3.5rem);
}

.ci-idea-banner-title {
  max-width: 560px;
  margin: 0 0 1rem;
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.ci-idea-banner-text {
  max-width: 520px;
  margin-bottom: 1.7rem;
  color: rgba(255, 255, 255, 0.82);
}

.ci-idea-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Bildspalte nimmt auf Desktop KEINEN Platz im Flow ein */
@media (max-width: 767.98px) {
  .ci-idea-banner {
    border-radius: 18px;
  }

  .ci-idea-banner-image-col {
    position: relative;
  }

  .ci-idea-banner-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: visible;
    height: 101%;
  }

  .ci-idea-banner-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ci-idea-banner-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      0deg,
      rgba(4, 12, 5, 1) 0%,
      rgba(6, 18, 8, 0.35) 48%,
      transparent 100%
    );
    pointer-events: none;
  }

  .ci-idea-banner-content {
    padding: 2rem 1.5rem;
  }

  .ci-idea-banner-actions {
    display: grid;
  }

  .ci-idea-banner-actions .btn {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .ci-idea-banner-row {
    position: relative;
  }

  .ci-idea-banner-text-col {
    position: relative;
    z-index: 2;
  }

  .ci-idea-banner-image-col {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    width: 50%;
    height: 100%;

    z-index: 1;
  }

  .ci-idea-banner-media {
    width: 100%;
    height: 100%;
  }

  .ci-idea-banner-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ci-idea-banner-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .ci-idea-banner-media img {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ci-idea-banner-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background: linear-gradient(
      90deg,
      rgba(4, 12, 5, 1) 0%,
      rgba(6, 18, 8, 0.85) 18%,
      rgba(6, 18, 8, 0.45) 42%,
      rgba(6, 18, 8, 0.12) 68%,
      transparent 100%
    );
  }
}
form [class*="col"].has-error textarea,
form [class*="col"].has-error input {
  border: 2px solid var(--bs-danger-border-subtle);
  background-color: var(--bs-danger-bg-subtle);
}
.success-checkmark {
  width: 90px;
  height: 90px;
  margin: 0 auto;
}

.success-checkmark svg {
  width: 90px;
  height: 90px;
  display: block;
}

.success-checkmark .circle {
  fill: none;
  stroke: #198754;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: draw-circle 0.7s ease-out forwards;
}

.success-checkmark .check {
  fill: none;
  stroke: #198754;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: draw-check 0.35s ease-out 0.65s forwards;
}

@keyframes draw-circle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw-check {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    display: none;
    position: static !important;
    float: none;
    width: 100%;
    min-width: 100%;
    margin-top: 0.35rem;
    padding: 0.4rem;
    border-radius: 1rem;
    box-shadow: none;
    background: rgba(5, 7, 5, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar .nav-item.dropdown.is-open > .dropdown-menu {
    display: block;
  }

  .navbar .nav-item.dropdown > .nav-link {
    width: 100%;
    display: block;
  }
}

/* =========================================================
   DESKTOP DROPDOWN STYLING
========================================================= */

@media (min-width: 992px) {
  .navbar .dropdown-menu,
  .navbar .sub-menu-container {
    min-width: 260px;
    padding: 0.65rem;
    margin-top: 0;

    border: 1px solid rgba(5, 7, 5, 0.1);
    border-radius: 18px;

    background:
      radial-gradient(
        circle at 12% 18%,
        rgba(105, 202, 1, 0.18),
        transparent 34%
      ),
      linear-gradient(180deg, #ffffff 0%, var(--color-offwhite) 100%);

    box-shadow: 0 18px 42px rgba(5, 7, 5, 0.16);
  }

  .navbar .dropdown-menu .nav-link,
  .navbar .sub-menu-container .nav-link {
    display: block;
    width: 100%;

    padding: 0.7rem 0.9rem !important;
    border-radius: 12px;

    color: var(--color-black) !important;
    background: transparent;

    font-size: 0.92rem;
    font-weight: 750;
    line-height: 1.25;
    white-space: nowrap;
  }

  .navbar .dropdown-menu .nav-link:hover,
  .navbar .dropdown-menu .nav-link:focus,
  .navbar .dropdown-menu .nav-link.active,
  .navbar .sub-menu-container .nav-link:hover,
  .navbar .sub-menu-container .nav-link:focus,
  .navbar .sub-menu-container .nav-link.active {
    color: var(--color-primary-dark) !important;
    background: rgba(105, 202, 1, 0.13);
  }

  .navbar .dropdown-menu .nav-item,
  .navbar .sub-menu-container .nav-item {
    width: 100%;
  }
}

/* BENTO Terrace */

.terrace-bento-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.terrace-layout-row {
  --bs-gutter-x: clamp(2rem, 4vw, 4.5rem);
  --bs-gutter-y: 2.5rem;
}

.terrace-bento {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  height: 100%;
  min-height: 0;
}

.terrace-bento-item {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--color-offwhite);
  box-shadow: 0 12px 32px rgba(5, 7, 5, 0.1);
}

.terrace-bento-item:first-child {
  grid-row: 1 / span 2;
}

.terrace-bento-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.terrace-bento-item:hover img {
  transform: scale(1.035);
}

@media (max-width: 991.98px) {
  .terrace-bento-section {
    min-height: auto;
  }

  .terrace-bento {
    height: auto;
    min-height: 560px;
  }
}

@media (max-width: 575.98px) {
  .terrace-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    min-height: auto;
    gap: 0.85rem;
  }

  .terrace-bento-item,
  .terrace-bento-item:first-child {
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .terrace-bento-item:first-child {
    aspect-ratio: 4 / 5;
  }
}
.terrace-bento-item.wysiwyg {
  padding: 0;
}

.terrace-bento-item.wysiwyg > *,
.terrace-bento-item.wysiwyg > * > * {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.terrace-bento-item.wysiwyg img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.ci-content-panel {
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 14px 34px rgba(5, 7, 5, 0.08);
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.ci-content-panel:hover {
  border-color: rgba(105, 202, 1, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(5, 7, 5, 0.08);
}

.ci-content-panel p:last-child,
.ci-copy-column p:last-child {
  margin-bottom: 0;
}

.sub-note {
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 4px solid rgba(105, 202, 1, 0.8);
  opacity: 0.95;
}

.image-rounded {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--color-offwhite);
  box-shadow: 0 12px 32px rgba(5, 7, 5, 0.1);
}

wbr::after {
  content: "-" !important; /* soft hyphen */
}

/* =========================================================
   NAVIGATION: dritte Ebene rechts neben dem Dropdown
   ========================================================= */

@media (min-width: 992px) {
  .site-header,
  .navbar,
  .navbar-nav,
  .navbar-collapse,
  .navbar .dropdown-menu {
    overflow: visible;
  }

  .navbar .dropdown-menu > .nav-item.dropdown {
    position: relative;
  }

  .navbar .dropdown-menu > .nav-item.dropdown > .sub-menu-container {
    display: none;
    position: absolute;
    top: 0;
    left: calc(100% - 0.25rem);
    z-index: 1060;

    margin: 0;
    list-style: none;
  }

  .navbar .dropdown-menu > .nav-item.dropdown:hover > .sub-menu-container,
  .navbar
    .dropdown-menu
    > .nav-item.dropdown:focus-within
    > .sub-menu-container {
    display: block;
  }

  .navbar .dropdown-menu > .nav-item.dropdown > .nav-link {
    padding-right: 2.25rem !important;
  }

  .navbar .dropdown-menu > .nav-item.dropdown > .nav-link::after {
    content: "\f054";
    transform: translateY(-50%);
  }

  .navbar .dropdown-menu > .nav-item.dropdown:hover > .nav-link::after,
  .navbar .dropdown-menu > .nav-item.dropdown:focus-within > .nav-link::after {
    transform: translateY(-50%) translateX(2px);
    color: var(--color-primary);
  }
}

@media (max-width: 991.98px) {
  .navbar .dropdown-menu .sub-menu-container {
    display: block;
    position: static;
    width: calc(100% - 0.75rem);
    min-width: 0;

    margin: 0.25rem 0 0 0.75rem;
    padding: 0.25rem 0 0.25rem 0.75rem;
    list-style: none;

    border: 0;
    border-left: 2px solid rgba(105, 202, 1, 0.45);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
}

/* =========================================================
   CI Image Modal
   Voraussetzung: Bootstrap 5 CSS + JS
   ========================================================= */

.ci-modal-image {
  display: block;
  cursor: zoom-in;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 0.35s ease,
    box-shadow 0.35s ease;
}

.ci-modal-image:hover {
  transform: translateY(-4px) scale(1.015);
  filter: brightness(1.04);
  box-shadow: var(--shadow-card);
}

.ci-modal-image:focus-visible {
  outline: 3px solid rgba(105, 202, 1, 0.55);
  outline-offset: 5px;
}

.ci-modal-image.ci-image-is-opening {
  animation: ciImageOpenPulse 0.42s cubic-bezier(0.2, 0.8, 0.25, 1);
}

@keyframes ciImageOpenPulse {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }

  45% {
    transform: scale(0.975);
    filter: brightness(0.88);
  }

  100% {
    transform: scale(1.025);
    filter: brightness(1.08);
  }
}

.ci-image-modal {
  --bs-modal-margin: 1rem;
}

.ci-image-modal .modal-dialog {
  max-width: min(1180px, calc(100vw - 2rem));
  justify-content: center;
  align-items: center;
}

.ci-image-modal .modal-content {
  overflow: hidden;
  border: 1px solid rgba(105, 202, 1, 0.22);
  border-radius: var(--radius-lg);
  background: var(--color-dark);
  color: var(--color-white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  width: fit-content !important;
}

.ci-image-modal.fade .modal-dialog {
  transform: translateY(22px) scale(0.94);
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.25, 1);
}

.ci-image-modal.show .modal-dialog {
  transform: translateY(0) scale(1);
}

.ci-image-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(105, 202, 1, 0.16),
      transparent 32%
    ),
    var(--color-dark-green);
}

.ci-image-modal .modal-title {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.ci-image-modal-close {
  display: inline-grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.ci-image-modal-close:hover,
.ci-image-modal-close:focus-visible {
  /* transform: rotate(90deg); */
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
  outline: none;
}

.ci-image-modal-media {
  display: grid;
  min-height: 220px;
  max-height: 72vh;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%),
    var(--color-black);
  background-position:
    0 0,
    12px 12px;
  background-size: 24px 24px;
}

.ci-image-modal-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.2, 0.8, 0.25, 1);
}

.ci-image-modal.show .ci-image-modal-media img {
  opacity: 1;
  transform: scale(1);
}

.ci-image-modal-footer {
  padding: 1rem 1.3rem 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--color-dark-green);
}

.ci-image-modal-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

.ci-image-modal-footer:has(p:empty) {
  display: none;
}

.ci-image-modal-backdrop.show,
.modal-backdrop.show {
  opacity: 0.82;
}

@media (max-width: 767.98px) {
  .ci-image-modal {
    --bs-modal-margin: 0.75rem;
  }

  .ci-image-modal .modal-dialog {
    max-width: calc(100vw - 1.5rem);
  }

  .ci-image-modal .modal-content {
    border-radius: var(--radius-md);
  }

  .ci-image-modal-header {
    padding: 0.9rem 1rem;
  }

  .ci-image-modal-close {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .ci-image-modal-media,
  .ci-image-modal-media img {
    max-height: 68vh;
  }

  .ci-image-modal-footer {
    padding: 0.85rem 1rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ci-modal-image,
  .ci-image-modal .modal-dialog,
  .ci-image-modal-media img {
    animation: none !important;
    transition: none !important;
  }
}

/* Reines Bilder-Bento */

.image-bento-section {
  height: 84vh;
  height: 84lvh;
  max-height: 900px;
  min-height: 560px;
  /* padding-block: clamp(1rem, 2.5vh, 1.75rem); */
}

.image-bento-section .image-bento-container {
  height: 100%;
}

.image-bento-section .image-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.15vw, 1rem);
  height: 100%;
  min-height: 0;
}

.image-bento-section .image-bento > .image-bento-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: auto;
  border-radius: clamp(0.85rem, 1.35vw, 1.35rem);
  background: var(--color-offwhite);
  box-shadow: var(--shadow-card);
  isolation: isolate;
}

.image-bento-section .image-bento > .image-bento-item::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    145deg,
    rgba(105, 202, 1, 0.04),
    transparent 48%,
    rgba(5, 7, 5, 0.12)
  );
  content: "";
  pointer-events: none;
}

.image-bento-section .image-bento > .image-bento-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.image-bento-section .image-bento > .image-bento-item:hover img {
  transform: scale(1.045);
}

.image-bento-section .image-bento > .image-bento-item:nth-child(1) {
  grid-column: 1 / span 5;
  grid-row: 1 / span 6;
}

.image-bento-section .image-bento > .image-bento-item:nth-child(2) {
  grid-column: 6 / span 4;
  grid-row: 1 / span 3;
}

.image-bento-section .image-bento > .image-bento-item:nth-child(3) {
  grid-column: 10 / span 3;
  grid-row: 1 / span 4;
}

.image-bento-section .image-bento > .image-bento-item:nth-child(4) {
  grid-column: 6 / span 2;
  grid-row: 4 / span 3;
}

.image-bento-section .image-bento > .image-bento-item:nth-child(5) {
  grid-column: 8 / span 2;
  grid-row: 4 / span 3;
}

.image-bento-section .image-bento > .image-bento-item:nth-child(6) {
  grid-column: 10 / span 3;
  grid-row: 5 / span 2;
}

.image-bento-section .image-bento > .image-bento-item.wysiwyg {
  padding: 0;
}

.image-bento-section .image-bento > .image-bento-item.wysiwyg > *,
.image-bento-section .image-bento > .image-bento-item.wysiwyg > * > * {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.image-bento-section .image-bento > .image-bento-item.wysiwyg img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .image-bento-section {
    height: 84vh;
    height: 84lvh;
    min-height: 620px;
    max-height: 780px;
    /* padding-block: 0.75rem; */
  }

  .image-bento-section .image-bento {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(8, minmax(0, 1fr));
    gap: 0.65rem;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .image-bento-section .image-bento > .image-bento-item,
  .image-bento-section .image-bento > .image-bento-item:first-child {
    min-width: 0;
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 0.9rem;
  }

  .image-bento-section .image-bento > .image-bento-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 4;
  }

  .image-bento-section .image-bento > .image-bento-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .image-bento-section .image-bento > .image-bento-item:nth-child(3) {
    grid-column: 2;
    grid-row: 3 / span 4;
  }

  .image-bento-section .image-bento > .image-bento-item:nth-child(4) {
    grid-column: 1;
    grid-row: 5 / span 2;
  }

  .image-bento-section .image-bento > .image-bento-item:nth-child(5) {
    grid-column: 1;
    grid-row: 7 / span 2;
  }

  .image-bento-section .image-bento > .image-bento-item:nth-child(6) {
    grid-column: 2;
    grid-row: 7 / span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-bento-section .image-bento > .image-bento-item img {
    transition: none;
  }
}

.breadcrumb-item::before {
  color: var(--color-primary) !important;
}

@media (max-width: 991.98px) {
  .site-header,
  .site-header.is-scrolled {
    height: auto;
    max-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-header .navbar {
    min-height: var(--header-height);
    align-items: flex-start;
  }

  #mainNavigation.navbar-collapse {
    width: 100%;
    max-height: none;
    overflow: visible;
  }

  #mainNavigation > .navbar-nav {
    width: 100%;
    padding-bottom: 1.5rem;
  }

  #mainNavigation > .navbar-nav > .navbar-nav {
    width: 100%;
  }

  #mainNavigation .dropdown-menu,
  #mainNavigation .sub-menu-container {
    position: static !important;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 991.98px) {
  .site-header {
    overflow: visible;
  }

  .site-header.is-scrolled {
    height: var(--header-height);
    overflow: visible;
  }

  #mainNavigation.navbar-collapse {
    top: 100%;
    left: 0;
    right: 0;

    width: 100%;
    height: calc(fit-content - var(--header-height));
    max-height: calc(100svh - var(--header-height));

    margin: 0;
    padding: 1rem;

    overflow-x: hidden !important;
    overflow-y: scroll !important;

    overscroll-behavior-y: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  #mainNavigation.collapsing {
    overflow: hidden !important;
  }

  #mainNavigation.show {
    overflow-y: scroll !important;
  }

  #mainNavigation > .navbar-nav {
    display: block;
    width: 100%;
    min-height: max-content;
    margin: 0;
    padding: 0 0 3rem;
  }

  #mainNavigation > .navbar-nav > .navbar-nav {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  #mainNavigation .dropdown-menu,
  #mainNavigation .sub-menu-container {
    position: static !important;
    height: auto;
    max-height: none;
    overflow: visible !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1440px) {
  h1 {
    font-size: clamp(2.5rem, 4.5vw, 3.55rem)!important;
  }
  .hero-text {
    font-size: clamp(1.05rem, 1.6vw, 1.18rem)!important;
  }
  aside h1 {
    font-size: clamp(2.2rem, 4.5vw, 2.5rem)!important;
  }
} 