@charset "UTF-8";
@import "vendors/fonts.css";
:root {
  --marker-color: hsl(0, 0%, 0%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

body {
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.6666666667vw, 1.25rem);
  color: hsl(0, 0%, 0%);
  background-color: hsl(0, 0%, 100%);
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}

a {
  color: hsl(300, 1%, 32%);
  text-decoration: underline;
}

a:is(:hover, :focus) {
  color: hsl(85, 9%, 53%);
}

strong {
  font-weight: 700;
}

h2, h3, h4, h5 p {
  margin-bottom: 0.88rem;
}

:target {
  scroll-margin-top: 8.5rem; /* Abstand nach oben */
}

.container > p + p {
  margin-top: 1rem;
}

.container ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  background-color: hsl(0, 0%, 100%);
  width: 100%;
  z-index: 99;
  transition: 0.45s transform;
  transform: translateY(-10%);
}

@media screen and (min-width: 45em) {
  .site-header {
    box-shadow: none;
    transform: translateY(0);
  }
  .site-header .site-header__logo {
    transform: scale(1) translateY(0);
  }
  .site-header.scrolled .site-header__logo {
    transform: scale(0.8) translateY(25%);
  }
  .site-header.scrolled {
    transform: translateY(-33%);
  }
}
.site-header.scrolled {
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.2);
}

.site-header__inner {
  display: flex;
  width: min(90vw, 68rem);
  margin-inline: auto;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0;
}

@media screen and (min-width: 45em) {
  .site-header__inner {
    gap: 1.5rem;
  }
}
.site-header__logo {
  transform: scale(0.95) translateY(5%);
  transition: 0.55s all;
  transform-origin: left center;
}

@media screen and (min-width: 45em) {
  .site-header__logo {
    grid-column: unset;
  }
}
.site-header__logo img {
  max-width: 100%;
  height: auto;
  width: clamp(8rem, 17.8vw, 13.35rem);
  transition: width 0.3s ease-in-out;
}

.site-header__menu {
  display: flex;
  flex-flow: column;
  align-items: end;
  align-self: end;
}

#navigation {
  position: absolute;
  width: 0;
  top: 0;
  right: 0;
  height: 100vh;
  transition: transform 0.25s;
  background-color: #fff;
  z-index: 99;
  padding-top: clamp(6.5625rem, 12.5vw, 9.375rem);
  padding-right: clamp(6.5625rem, 12.5vw, 9.375rem);
}

#navigation[data-visible=false] {
  transform: translateX(100%);
  width: 0;
  padding: 0;
  overflow: hidden;
}

@media screen and (min-width: 45em) {
  #navigation[data-visible=false] {
    overflow: visible;
  }
}
#navigation[data-visible=true] {
  transform: translateX(0);
  width: 90%;
  max-width: 30rem;
}

@media screen and (min-width: 45em) {
  #navigation {
    position: relative;
    min-height: auto;
    right: auto;
    bottom: auto;
    height: auto;
    width: 100%;
    padding: 0;
    place-self: flex-end;
  }
  #navigation[data-visible=false] {
    transform: translateX(0);
    width: inherit;
  }
  #navigation[data-visible=true] {
    transform: translateX(0);
    width: inherit;
  }
}
#main-navigation {
  display: grid;
}

#main-navigation [role=navigation] .nav {
  display: flex;
  gap: 0.25rem;
  align-items: stretch;
  flex-flow: column;
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.15;
}

@media screen and (min-width: 45em) {
  #main-navigation [role=navigation] .nav {
    position: relative;
    flex-flow: row;
    gap: clamp(1.8rem, 4.6666666667vw, 3.5rem);
  }
}
#main-navigation [role=navigation] .nav li a {
  display: block;
  font-size: clamp(1rem, 1.4666666667vw, 1.1rem);
  font-weight: 700;
  color: hsl(85, 9%, 53%);
  text-decoration: none;
}

#main-navigation [role=navigation] .nav li a:hover {
  color: hsl(68, 64%, 65%);
}

#main-navigation [role=navigation] .nav li .sub-menu {
  display: none;
  list-style: none;
  margin-top: 0.5rem;
}

#main-navigation [role=navigation] .nav li .sub-menu li {
  margin-bottom: 0.5rem;
}

#main-navigation [role=navigation] .nav li .sub-menu li:hover a {
  color: hsl(68, 64%, 65%) !important;
}

#main-navigation [role=navigation] .nav li .sub-menu li a {
  font-size: 0.9rem;
  font-weight: normal;
}

#main-navigation [role=navigation] .nav li .sub-menu li a:hover {
  color: hsl(68, 64%, 65%);
}

@media screen and (min-width: 45em) {
  #main-navigation [role=navigation] .nav li {
    position: static;
  }
  #main-navigation [role=navigation] .nav li:hover .sub-menu, #main-navigation [role=navigation] .nav li:focus-within .sub-menu {
    display: flex;
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  #main-navigation [role=navigation] .nav li .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    border-top: 1.5rem solid transparent;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    margin: 0;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateY(2px);
    transition: opacity 0.3s ease, transform 0.1s ease;
  }
  #main-navigation [role=navigation] .nav li .sub-menu::before {
    content: "";
    position: absolute;
    top: 0;
    background: linear-gradient(0deg, hsl(87, 39%, 24%) 0%, hsla(87, 39%, 24%, 0.8) 20%, hsla(174, 39%, 27%, 0.8) 60%);
    left: -100vw;
    right: -100vw;
    height: 100vh;
    z-index: -1;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    pointer-events: none;
  }
  #main-navigation [role=navigation] .nav li .sub-menu li a {
    font-size: clamp(1.1rem, 2.1333333333vw, 1.6rem);
    color: hsl(0, 0%, 100%);
    font-weight: normal;
    white-space: nowrap;
  }
}
#main-navigation [role=navigation] .nav .menu-item--search {
  display: flex;
  flex-direction: column;
}

#main-navigation [role=navigation] .nav .menu-item--search .nav-search {
  margin-top: 0.2rem;
  background-color: hsl(84, 8%, 76%);
  border: none;
  border-radius: 0;
  font-size: 0.75rem;
  line-height: 1.3;
  padding: 0.2rem 0.6rem;
  width: 8rem;
}

#meta-navigation-top, #meta-navigation-bottom {
  display: grid;
}

#meta-navigation-top [role=navigation] .nav, #meta-navigation-bottom [role=navigation] .nav {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  flex-flow: column;
  align-items: center;
}

@media screen and (min-width: 45em) {
  #meta-navigation-top [role=navigation] .nav, #meta-navigation-bottom [role=navigation] .nav {
    flex-flow: row;
    gap: 2rem;
    align-items: flex-start;
  }
}
#meta-navigation-bottom {
  display: none;
}

@media screen and (min-width: 45em) {
  #meta-navigation-bottom {
    display: grid;
  }
}
#meta-navigation-top [role=navigation] .nav {
  align-items: stretch;
  margin-inline: 1rem;
}

#meta-navigation-top [role=navigation] .nav a {
  width: 100%;
}

@media screen and (min-width: 45em) {
  #meta-navigation-top {
    display: none;
  }
}
.site-footer a {
  text-decoration: none;
}

.site-footer .instagram, .site-footer .portal {
  height: auto;
  width: clamp(2rem, 3.5066666667vw, 2.63rem);
  margin: 0.5rem 0;
}

[aria-controls=main-navigation] {
  width: 4.5rem;
  background: transparent;
  border: none;
  display: block;
  place-self: flex-end;
  z-index: 9999;
}

@media screen and (min-width: 45em) {
  [aria-controls=main-navigation] {
    display: none;
  }
}
[aria-controls=main-navigation] .hamburger__line {
  transition: y 0.25s 0.25s, transform 0.25s, opacity 0s 0.25s;
  transform-origin: center;
  fill: #898A8A;
}

[aria-controls=main-navigation][aria-expanded=true] .hamburger {
  --hamburger-color: var(--font-color);
}

[aria-controls=main-navigation][aria-expanded=true] .hamburger__line {
  transition: y 0.25s, transform 0.25s 0.25s, opacity 0s 0.25s;
  transform-origin: center;
}

[aria-controls=main-navigation][aria-expanded=true] .hamburger__top, [aria-controls=main-navigation][aria-expanded=true] .hamburger__bottom {
  y: 45;
}

[aria-controls=main-navigation][aria-expanded=true] .hamburger__top {
  transform: rotate(45deg);
}

[aria-controls=main-navigation][aria-expanded=true] .hamburger__bottom {
  transform: rotate(-45deg);
}

[aria-controls=main-navigation][aria-expanded=true] .hamburger__middle {
  opacity: 0;
}

[aria-controls=footer-navigation] {
  padding: 3rem 0;
}

[aria-controls=footer-navigation] ul {
  list-style: none;
  justify-content: center;
  display: flex;
  gap: 3rem;
}

[aria-controls=footer-navigation] ul li a {
  text-decoration: none;
  text-transform: uppercase;
}

.breaking-news {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.breaking-news__label {
  background-color: #929b47;
  color: white;
  font-size: fluid(1.43rem, 1.1rem, 1.43rem);
  font-weight: 300;
  padding: 0.6rem 1.2rem;
  border-radius: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.breaking-news__label::after {
  content: "›";
  font-size: fluid(1.43rem, 1.1rem, 1.43rem);
  line-height: 1;
}

.breaking-news__list {
  display: flex;
  gap: 3rem;
  flex: 1;
}

.breaking-news__item {
  font-size: fluid(1.1rem, 1rem, 1.1rem);
  font-weight: 600;
  color: #272627;
  white-space: nowrap;
}

.button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 0;
  background-color: #ffffff;
  color: #525152;
  font-size: clamp(1.1rem, 1.7333333333vw, 1.3rem);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.button--dark {
  background-color: #272627;
  color: #ffffff;
}

.button--sage {
  background-color: hsl(84, 8%, 76%);
  color: hsl(300, 1%, 32%);
}

.button--pistachio {
  background-color: hsl(66, 30%, 86%);
  color: hsl(300, 1%, 32%);
}

.button--bluegray {
  background-color: hsl(207, 6%, 72%);
  color: hsl(300, 1%, 32%);
}

.button--olive {
  background-color: #929b47;
  color: white;
}

.button--cream {
  background-color: #ebe2c3;
  color: #272627;
}

.circle {
  --circle-color: #304934;
  position: relative;
  width: clamp(7rem, 15.52vw, 11.64rem);
  height: clamp(7rem, 15.52vw, 11.64rem);
  background-color: var(--circle-color);
  opacity: 0.9;
  border-radius: 50%;
  color: hsl(0, 0%, 100%);
  z-index: 3;
  margin-block: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

.circle__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-60%) translateX(-50%);
  width: 100%;
  text-align: center;
}

.circle__headline {
  font-size: clamp(2.15rem, 7.1333333333vw, 5.35rem);
  font-weight: 400;
  line-height: 1.1;
  display: block;
}

.circle__body {
  font-size: clamp(1rem, 1.8133333333vw, 1.36rem);
  font-weight: 700;
  line-height: 1;
  display: block;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 18px;
  color: #525262;
}

/* Labels */
.form label {
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Inputs, Selects, Textarea */
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form input[type=date],
.form select,
.form textarea {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  background-color: #ffffff;
  color: #525262;
  outline: none;
}

/* Select – dezenter Custom-Pfeil */
.form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  background-image: linear-gradient(45deg, transparent 50%, #525262 50%), linear-gradient(135deg, #525262 50%, transparent 50%);
  background-position: calc(100% - 1.35rem) 50%, calc(100% - 1.05rem) 50%;
  background-size: 8px 8px;
  background-repeat: no-repeat;
}

/* Textarea */
.form textarea {
  border-radius: 30px;
  resize: vertical;
}

/* Zwei Felder nebeneinander */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Halbbreites Feld */
.form .is-half {
  width: 50%;
}

/* Mobile */
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form .is-half {
    width: 100%;
  }
}
/* Submit */
.submit-btn {
  margin-top: 26px;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background-color: #2fa47f;
  color: #ffffff;
  cursor: pointer;
}

.hero {
  --gradient-rect-height: 77%;
  --gradient-start: #3F5525;
  --gradient-mid: #3F5525;
  --gradient-end: #2B615C;
  position: relative;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 4%;
}

.hero__gradient-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__gradient-overlay rect#gradientRect {
  height: var(--gradient-rect-height);
}

.hero__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__circle {
  --circle-color: #304934;
  position: absolute;
  width: 13.2866666667vw;
  height: 13.2866666667vw;
  background-color: var(--circle-color);
  opacity: 0.9;
  border-radius: 50%;
  bottom: clamp(1.25rem, 3.3333333333vw, 2.5rem);
  left: 18vw;
  color: hsl(0, 0%, 100%);
  z-index: 3;
}

.hero__content {
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
}

.hero__headline {
  font-size: 3.8466666667vw;
  font-weight: 700;
  line-height: 1.1;
  display: block;
}

.hero__body {
  font-size: 2.8133333333vw;
  line-height: 1;
  display: block;
}

h1, .heading-1 {
  font-size: clamp(1.9625rem, 4.9866666667vw, 3.74rem);
  color: hsl(0, 0%, 0%);
  font-weight: "Lexend", sans-serif;
  text-transform: 700;
  font-family: "Lexend", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

h2, .heading-2 {
  font-size: clamp(1.5625rem, 3.796vw, 2.847rem);
  color: hsl(0, 0%, 0%);
  font-weight: 300;
  text-transform: normal;
  font-family: "Lexend", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

h3, .heading-3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: hsl(0, 0%, 0%);
  font-weight: "Lexend", sans-serif;
  text-transform: 700;
  font-family: "Lexend", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

h4, .heading-4 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: hsl(105, 21%, 37%);
  font-weight: 300;
  text-transform: normal;
  font-family: "Lexend", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

.intro {
  color: hsl(0, 0%, 100%);
  margin-inline: clamp(6rem, 16.4933333333vw, 12.37rem);
  padding-block: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
  font-size: clamp(1rem, 1.6626666667vw, 1.247rem);
}

.intro > p {
  margin-bottom: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.image-caption {
  position: relative;
  display: inline-block;
}

.image-caption img {
  display: block;
}

.image-caption__text {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.4rem 0.75rem;
  line-height: 1.2;
  display: inline-block;
  border-radius: 0;
  white-space: nowrap;
}

.toolbox {
  display: flex;
  align-items: end;
}

.toolbox::before {
  position: relative;
  display: block;
  content: "";
  width: clamp(8rem, 16.84vw, 12.63rem);
  height: clamp(8rem, 16.84vw, 12.63rem);
  background-image: url("../img/toolbox.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(35%);
  z-index: 0;
}

.chat {
  width: clamp(5rem, 11.4533333333vw, 8.59rem);
  height: clamp(5rem, 11.4533333333vw, 8.59rem);
}

.media-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: white;
  font-size: clamp(1.7rem, 4.196vw, 3.147rem);
  font-weight: 300;
  line-height: 1.4;
  opacity: 1;
  transition: opacity 1s ease;
}

.tools {
  width: clamp(6rem, 16.835vw, 12.62625rem);
  height: auto;
}

.wp-edge-slider {
  width: 100vw;
  position: relative;
  margin-left: calc(50% - min(90vw, 68rem) / 2);
  padding-bottom: 1.25rem;
}

.wp-edge-slider__viewport {
  overflow: hidden;
}

.wp-edge-slider__track {
  display: flex;
  gap: 1.25rem;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 450ms ease;
  cursor: grab;
  user-select: none;
}

.wp-edge-slider__track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.wp-edge-slider__slide {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: clamp(10rem, 24.5168vw, 18.3876rem);
  text-decoration: none;
  color: inherit;
}

.wp-edge-slider__slide img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
}

.wp-edge-slider__spacer {
  flex: 0 0 auto;
  width: 0px;
}

.wp-edge-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.wp-edge-slider__dots .wp-edge-slider__dot {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: var(--slider-dot-color, #ecb847);
  opacity: 0.35;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.wp-edge-slider__dots .wp-edge-slider__dot.is-active {
  opacity: 1;
  transform: scale(1.02);
}

.wp-edge-slider__dots .wp-edge-slider__dot:focus-visible {
  outline: 2px solid var(--slider-dot-color, #ecb847);
  outline-offset: 3px;
  opacity: 1;
}

.ticker {
  position: relative;
  overflow: hidden;
}

.ticker__move {
  white-space: nowrap;
}

.ticker__element {
  display: inline-block;
}

.ticker__element > div {
  display: flex;
  align-items: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

/* Das Video füllt den Container */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay-Text */
.video-overlay {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  z-index: 2;
  color: white;
  font-size: clamp(1.5rem, 3.796vw, 2.847rem);
  font-weight: 300;
  opacity: 1;
  transition: opacity 1s ease;
}

.video-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5%;
  z-index: 2;
  pointer-events: none;
  /* Transparenter Übergang → Seiten-Hintergrundfarbe */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, hsl(206, 14%, 31%) 100%);
}

#videoIntroText {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

#videoIntroText.video-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.project-card {
  background-color: rgba(255, 255, 255, 0.3);
  padding: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
  border-radius: 0;
}

.project-card h3 {
  margin-bottom: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.genossenschaft-organe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
  padding-block: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

@media screen and (min-width: 45em) {
  .genossenschaft-organe {
    grid-template-columns: repeat(3, 1fr);
  }
}
.organ-card {
  background-color: rgba(255, 255, 255, 0.3);
  padding: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

.organ-card h3 {
  margin-bottom: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.organ-card .button-link {
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s ease;
}

.organ-card .button-link:hover {
  transform: translateX(5px);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media screen and (min-width: 45em) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 45em) {
  .team-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}
.team-member__content h3, .team-member__content h4 {
  margin-bottom: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.team-member__content p {
  margin-bottom: 0.5rem;
}

.team-member__content p:last-child {
  margin-bottom: 0;
}

.activities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

@media screen and (min-width: 45em) {
  .activities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.activity-card h3 {
  margin-bottom: 0;
}

.contact-info h3 {
  margin-bottom: 0;
}

.contact-info a {
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.video-wrapper {
  position: relative;
  width: 100%;
  background-color: hsl(0, 0%, 0%);
}

.video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
}

.button--light {
  background-color: transparent;
  border: 2px solid hsl(0, 0%, 100%);
  color: hsl(0, 0%, 100%);
}

.button--light:hover {
  background-color: hsl(0, 0%, 100%);
  color: hsl(176, 39%, 27%);
}

.project-slider {
  position: relative;
}

.project-slider__header {
  margin-bottom: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

.project-slider__header h2 {
  margin-bottom: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

@media screen and (min-width: 45em) {
  .project-slider__header {
    max-width: 60%;
  }
}
.project-slider__container {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.project-slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.project-slider__slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.project-slider__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
  min-height: clamp(20rem, 33.3333333333vw, 30rem);
  align-items: center;
}

@media screen and (min-width: 45em) {
  .project-slider__content {
    grid-template-columns: 14rem 1fr;
  }
}
@media screen and (min-width: 65em) {
  .project-slider__content {
    grid-template-columns: 14rem 1fr;
  }
}
.project-slider__text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.2s;
}

.project-slider__text h3 {
  margin-bottom: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.project-slider__slide.is-active .project-slider__text {
  opacity: 1;
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
  transform: translateY(0);
}

.project-slider__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-slider__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

.project-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(43, 97, 93, 0.7);
  border: none;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.project-slider__nav:hover {
  background: rgba(43, 97, 93, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.project-slider__nav:active {
  transform: translateY(-50%) scale(0.95);
}

.project-slider__nav--prev {
  left: 20px;
}

@media screen and (min-width: 45em) {
  .project-slider__nav--prev {
    left: 30px;
  }
}
.project-slider__nav--next {
  right: 20px;
}

@media screen and (min-width: 45em) {
  .project-slider__nav--next {
    right: 30px;
  }
}
.project-slider__nav svg {
  pointer-events: none;
}

.project-slider__indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
  padding-bottom: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.project-slider__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(43, 97, 93, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.project-slider__indicator:hover {
  background: rgba(43, 97, 93, 0.6);
  transform: scale(1.2);
}

.project-slider__indicator.active {
  background: hsl(176, 39%, 27%);
  transform: scale(1.3);
}

.project-card {
  background-color: rgba(255, 255, 255, 0.3);
  padding: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
  border-radius: 0;
}

.project-card h3 {
  margin-bottom: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.accordion {
  width: 100%;
}

.accordion__item {
  border-bottom: 1px solid white;
}

.accordion__header {
  width: 100%;
  background: transparent;
  border: none;
  padding: clamp(1.09375rem, 2.0833333333vw, 1.5625rem) 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion__header:hover {
  opacity: 0.7;
}

.accordion__header:focus {
  outline: none;
  outline-offset: 2px;
}

.accordion__title {
  font-size: 1.247rem;
  font-weight: 700;
  color: hsl(300, 1%, 15%);
  margin: 0;
  padding-right: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
  line-height: 1.3;
}

.accordion__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.accordion__icon::before, .accordion__icon::after {
  content: "";
  position: absolute;
  background-color: hsl(300, 1%, 15%);
  transition: transform 0.3s ease;
}

.accordion__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.accordion__icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.accordion__header[aria-expanded=true] .accordion__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion__content[aria-hidden=false] {
  max-height: 2000px;
}

.accordion__body img {
  width: 100%;
  height: auto;
  display: block;
}

.accordion__body p {
  margin: 0 0 clamp(1.09375rem, 2.0833333333vw, 1.5625rem) 0;
}

.accordion__body p:last-child {
  margin-bottom: 0;
}

.accordion--light .accordion__header {
  color: hsl(300, 1%, 15%);
}

.accordion--light .accordion__item {
  border-color: white;
}

.accordion--dark .accordion__title,
.accordion--dark .accordion__icon::before,
.accordion--dark .accordion__icon::after {
  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 100%);
}

.accordion--dark .accordion__item {
  border-color: white;
}

.text-gray-metal {
  color: hsl(0, 0%, 58%);
}

.bg-gray-metal {
  background-color: hsl(0, 0%, 58%);
}

.text-stone {
  color: hsl(85, 9%, 53%);
}

.bg-stone {
  background-color: hsl(85, 9%, 53%);
}

.text-dark-gray {
  color: hsl(300, 1%, 32%);
}

.bg-dark-gray {
  background-color: hsl(300, 1%, 32%);
}

.text-almost-black {
  color: hsl(300, 1%, 15%);
}

.bg-almost-black {
  background-color: hsl(300, 1%, 15%);
}

.text-light-bluegray {
  color: hsl(207, 6%, 72%);
}

.bg-light-bluegray {
  background-color: hsl(207, 6%, 72%);
}

.text-slate-taupe {
  color: hsl(17, 3%, 39%);
}

.bg-slate-taupe {
  background-color: hsl(17, 3%, 39%);
}

.text-sage {
  color: hsl(84, 8%, 76%);
}

.bg-sage {
  background-color: hsl(84, 8%, 76%);
}

.text-black {
  color: hsl(0, 0%, 0%);
}

.bg-black {
  background-color: hsl(0, 0%, 0%);
}

.text-white {
  color: hsl(0, 0%, 100%);
}

.bg-white {
  background-color: hsl(0, 0%, 100%);
}

.text-moss {
  color: hsl(105, 21%, 37%);
}

.bg-moss {
  background-color: hsl(105, 21%, 37%);
}

.text-olive {
  color: hsl(66, 37%, 44%);
}

.bg-olive {
  background-color: hsl(66, 37%, 44%);
}

.text-pistachio {
  color: hsl(71, 35%, 68%);
}

.bg-pistachio {
  background-color: hsl(71, 35%, 68%);
}

.text-lime-khaki {
  color: hsl(71, 36%, 65%);
}

.bg-lime-khaki {
  background-color: hsl(71, 36%, 65%);
}

.text-sand {
  color: hsl(45, 20%, 65%);
}

.bg-sand {
  background-color: hsl(45, 20%, 65%);
}

.text-beige {
  color: hsl(85, 9%, 62%);
}

.bg-beige {
  background-color: hsl(85, 9%, 62%);
}

.text-deep-teal {
  color: hsl(176, 39%, 27%);
}

.bg-deep-teal {
  background-color: hsl(176, 39%, 27%);
}

.text-slate-blue {
  color: hsl(206, 14%, 31%);
}

.bg-slate-blue {
  background-color: hsl(206, 14%, 31%);
}

.text-cream {
  color: hsl(47, 50%, 84%);
}

.bg-cream {
  background-color: hsl(47, 50%, 84%);
}

.container-max {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.container-wrapper {
  width: min(100%, 75rem);
  margin-inline: auto;
  box-sizing: content-box;
}

.container {
  width: min(90vw, 68rem);
  margin-inline: auto;
  box-sizing: content-box;
}

.container-margin-left {
  padding-inline: var(--margin-inline);
}

@media screen and (min-width: 45em) {
  .container-margin-left {
    padding-left: var(--margin-inline);
    padding-right: 0;
  }
}
.container-margin-right {
  padding-inline: var(--margin-inline);
}

@media screen and (min-width: 45em) {
  .container-margin-right {
    padding-right: var(--margin-inline);
    padding-left: 0;
  }
}
.container-margin-inline {
  padding-inline: var(--margin-inline);
}

.space-sm {
  padding-top: 0.5rem;
}

.space-1 {
  padding-top: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.space-2 {
  padding-top: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

.space-3 {
  padding-top: clamp(3.28125rem, 6.25vw, 4.6875rem);
}

.space-4 {
  padding-top: clamp(4.375rem, 8.3333333333vw, 6.25rem);
}

.space-5 {
  padding-top: clamp(5.46875rem, 10.4166666667vw, 7.8125rem);
}

.space-6 {
  padding-top: clamp(6.5625rem, 12.5vw, 9.375rem);
}

.space-inline-1 {
  padding-inline: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.space-inline-2 {
  padding-inline: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

.space-inline-3 {
  padding-inline: clamp(3.28125rem, 6.25vw, 4.6875rem);
}

.space-inline-4 {
  padding-inline: clamp(4.375rem, 8.3333333333vw, 6.25rem);
}

.space-block-1 {
  padding-block: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.space-block-2 {
  padding-block: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

.space-block-3 {
  padding-block: clamp(3.28125rem, 6.25vw, 4.6875rem);
}

.space-block-4 {
  padding-block: clamp(4.375rem, 8.3333333333vw, 6.25rem);
}

.space-left-1 {
  padding-left: clamp(1.09375rem, 2.0833333333vw, 1.5625rem);
}

.space-left-2 {
  padding-left: clamp(2.0275rem, 4.1666666667vw, 3.125rem);
}

.space-left-3 {
  padding-left: clamp(3.28125rem, 6.25vw, 4.6875rem);
}

.space-left-4 {
  padding-left: clamp(4.375rem, 8.3333333333vw, 6.25rem);
}

/* Grund-Container für jede Headline */
.headline-block {
  display: flex;
  gap: 1.5rem;
}

/* Bild vor der Überschrift */
.headline-block__image {
  width: auto;
  flex-shrink: 0;
}

/* Standard-Headline-Styling (optional anpassbar) */
.headline-block__text {
  margin: 0;
  line-height: 1.2;
}

/* Modifier: Überschrift MIT Bild */
.headline--with-image {
  display: flex;
}

/* Modifier: Überschrift ZENTRIERT – funktioniert MIT oder OHNE Bild */
.headline--center {
  justify-content: center;
  text-align: center;
  /* Speziell, wenn ein Bild dabei ist: */
}

.headline--center.headline--with-image {
  /* Wir zentrieren den ganzen Block, Bild + Text als Einheit */
  justify-content: center;
}

.img-size--l {
  width: clamp(7rem, 19.16vw, 14.37rem);
  height: auto;
}

.text-regular {
  font-weight: 400;
}

.text-bold {
  font-weight: 700;
}

.text-light {
  font-weight: 300;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-sm {
  font-size: clamp(0.75rem, 1.188vw, 0.891rem);
}

.table td, .table tr {
  font-size: clamp(1rem, 1.6626666667vw, 1.247rem);
}

.table-sm td, .table-sm tr {
  font-size: clamp(0.75rem, 1.188vw, 0.891rem);
}

.notice-append {
  position: absolute;
  top: 0;
  line-height: 1;
  transform: translateX(-150%);
  font-size: clamp(2.8rem, 7.704vw, 5.778rem);
  color: hsl(0, 0%, 100%);
  font-weight: 700;
}

.w-25 {
  width: 25%;
}

.w-33 {
  width: 33%;
}

.w-50 {
  width: 50%;
}

.w-66 {
  width: 66%;
}

.w-75 {
  width: 75%;
}

.w-90 {
  width: 90%;
}

.w-100 {
  width: 100%;
}

.w-min {
  min-width: 600px;
}

.flex-group {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--flex-column-gap, clamp(1.09375rem, 2.0833333333vw, 1.5625rem));
  row-gap: var(--flex-row-gap, calc(clamp(1.09375rem, 2.0833333333vw, 1.5625rem) / 2));
  width: fit-content;
}

.flex-group.mx-auto {
  width: 100%;
  justify-content: center;
}

.align-items-end {
  align-items: end;
}

.position-relative {
  position: relative;
}

.even-columns {
  display: grid;
  gap: var(--grid-gap, clamp(1.09375rem, 2.0833333333vw, 1.5625rem));
}

@media screen and (min-width: 45em) {
  .even-columns {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }
}
@media screen and (min-width: 45em) {
  .even-columns--2-3 {
    grid-auto-flow: row;
    grid-template-columns: 2fr 3fr;
  }
}
@media screen and (min-width: 45em) {
  .even-columns--3-2 {
    grid-auto-flow: row;
    grid-template-columns: 3fr 2fr;
  }
}

/*# sourceMappingURL=main.css.map */
