@font-face {
  font-family: "Inter";
  src:
    local("Inter"),
    local("Inter Regular"),
    url("/fonts/inter/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    local("Inter Medium"),
    url("/fonts/inter/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    local("Inter SemiBold"),
    url("/fonts/inter/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    local("Inter Bold"),
    url("/fonts/inter/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    local("Inter ExtraBold"),
    url("/fonts/inter/inter-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    local("Inter Black"),
    url("/fonts/inter/inter-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src:
    local("Poppins SemiBold"),
    url("/fonts/poppins/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src:
    local("Poppins Bold"),
    url("/fonts/poppins/poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src:
    local("Manrope ExtraBold"),
    url("/fonts/manrope/manrope-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src:
    local("Space Grotesk Bold"),
    url("/fonts/space-grotesk/space-grotesk-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src:
    local("Cormorant Garamond Bold"),
    url("/fonts/cormorant-garamond/cormorant-garamond-700.woff2")
      format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alfa Slab One";
  src:
    local("Alfa Slab One"),
    url("/fonts/Alfa_Slab_One/AlfaSlabOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.cormorant-garamond-bold {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.manrope-bold {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.space-grotesk-bold {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* === Sauber Mehr theme tokens === */
:root {
  color-scheme: light;
  --font-heading: "Poppins", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --sauber-primary-aqua: #2bbfcc;
  --sauber-primary-indigo: #536fd4;
  --sauber-off-white: #f6f8fb;
  --sauber-light-aqua: #d9f6f9;
  --sauber-light-indigo: #e3e9ff;
  --sauber-accent: #ffc857;
  --sauber-text: #1f2a37;
  --sauber-muted: #5b6776;
  --sauber-success: #18b89a;
  --sauber-alert: #e5484d;
  --sauber-white: #ffffff;
  --sauber-hero-aqua: #6df3ff;
  --sauber-border: rgba(31, 42, 55, 0.12);
  --sauber-link: var(--sauber-primary-indigo);
  --sauber-focus: rgba(83, 111, 212, 0.28);
  --text-main: var(--sauber-text);
  --text-muted: var(--sauber-muted);
  --text-soft: var(--sauber-muted);
  --default-bg: var(--sauber-off-white);

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius: var(--radius-md);

  --media-section-bg: linear-gradient(
    90deg,
    var(--sauber-light-aqua) 0%,
    var(--sauber-off-white) 45%,
    var(--sauber-white) 100%
  );
  --video-page-bg: var(--media-section-bg);
}

/* === Use tokens === */
html,
body {
  background: var(--media-section-bg);
  color: var(--sauber-text);
  margin: 0px;
  font-family: var(--font-body);
}

html {
  scroll-behavior: smooth;
}

/* === Shared section layout === */
.section {
  width: 100%;
  margin-left: 0;
  padding: 120px 0;
  overflow: hidden;
}

.section__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}

.blueText {
  color: var(--sauber-primary-aqua);
}

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

.section--align-center .section__inner {
  text-align: center;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--sauber-text);
}

h1 {
  font-size: clamp(36px, 4vw, 44px);
  font-weight: 700;
}

h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
}

h3 {
  font-size: clamp(22px, 2.4vw, 24px);
  font-weight: 600;
}

h4 {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 600;
}

p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--sauber-text);
}

.p-semi-bold {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--sauber-text);
}

.p-small {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--sauber-text);
}

.meta-caps {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--sauber-text);
}

.meta-caps-semi {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--sauber-text);
}

a {
  color: var(--sauber-link);
  font-family: var(--font-body);
}

.container {
  /* padding-top: 50px; */
}

.card,
.panel {
  background: var(--sauber-white);
  border: 1px solid var(--sauber-border);
  border-radius: var(--radius-md);
}

.btn-primary {
  background: var(--sauber-accent);
  color: var(--sauber-text);
  border: 1px solid color-mix(in srgb, var(--sauber-accent), #000 12%);
}

:focus-visible {
  outline: 3px solid var(--sauber-focus);
  outline-offset: 2px;
}

:where(
  button,
  input[type="button"],
  input[type="submit"],
  input[type="reset"],
  a[class*="button"],
  .btn-primary,
  .admin-button
) {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

:where(
  [data-clickable],
  .news-card[data-link],
  .media-showcase__card,
  .ticket-card,
  .video-card,
  [data-video-card],
  .cookie-modal__services details,
  .team-card,
  .leistungen-card
) {
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  :where(
      button,
      input[type="button"],
      input[type="submit"],
      input[type="reset"],
      a[class*="button"],
      .btn-primary,
      .admin-button
    ):not(:disabled):hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
  }

  :where(
    [data-clickable],
    .news-card[data-link],
    .media-showcase__card,
    .ticket-card,
    .video-card,
    [data-video-card],
    .cookie-modal__services details,
    .team-card,
    .leistungen-card
  ):hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
  }

  /* Keep hover lift for anchor-buttons that also use scroll animation classes. */
  a[class*="button"].animate-on-scroll.visible:hover {
    transform: translateY(-1px);
  }

  a[class*="button"].animate-on-scroll-right.visible:hover {
    transform: translateX(0) translateY(-1px);
  }

  a[class*="button"].animate-on-scroll-left.visible:hover {
    transform: translateX(0) translateY(-1px);
  }
}

.page {
  overflow-x: hidden;
}

.page .richtext {
  max-width: 960px;
  margin: 0 auto;
  padding: 140px 80px 80px;
}

.videos-page {
  background: var(--video-page-bg);
}

.error-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 96px;
}

.error-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 520px;
}

.error-page__logo {
  width: clamp(140px, 24vw, 220px);
  height: clamp(140px, 24vw, 220px);
  object-fit: contain;
}

.error-page__description {
  font-size: 16px;
  color: var(--sauber-text);
  margin: 0;
}

.error-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--sauber-primary-indigo);
  color: var(--sauber-white);
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(19, 36, 90, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.error-page__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(19, 36, 90, 0.3);
}

/* === Sauber Mehr navigation === */
.sauber-nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #ffffff87 0%, #ffffff00 100%);
}

.sauber-nav__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 18px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.sauber-nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.sauber-nav__logo img {
  width: 120px;
  height: 120px;
  position: absolute;
  object-fit: contain;
}

.sauber-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.sauber-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sauber-nav__link {
  color: var(--sauber-primary-aqua);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sauber-nav__link:hover,
.sauber-nav__link:focus-visible {
  color: var(--sauber-primary-indigo);
}

.sauber-nav__cta {
  background: var(--sauber-primary-aqua);
  color: var(--sauber-white);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.sauber-nav__cta:hover,
.sauber-nav__cta:focus-visible {
  background: color-mix(in srgb, var(--sauber-primary-aqua), #000 10%);
}

.sauber-nav__dropdown {
  position: relative;
}

.sauber-nav__dropdown-trigger {
  cursor: pointer;
}

.sauber-nav__chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.sauber-nav__dropdown.is-open .sauber-nav__chevron {
  transform: rotate(-135deg);
}

.sauber-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--sauber-white);
  border: 1px solid var(--sauber-border);
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  z-index: 5;
  opacity: 0;
  transform: translateY(-8px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease,
    transform 0.35s ease;
}

.sauber-nav__dropdown.is-open .sauber-nav__dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  max-height: 420px;
  pointer-events: auto;
}

.sauber-nav__dropdown-link {
  color: var(--sauber-text);
  text-decoration: none;
  font-weight: 500;
}

.sauber-nav__dropdown-link:hover,
.sauber-nav__dropdown-link:focus-visible {
  color: var(--sauber-primary-indigo);
}

.sauber-nav__mobile {
  display: none;
}

.sauber-nav__hamburger {
  appearance: none;
  border: none;
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  list-style: none;
  padding: 0;
}

.sauber-nav__hamburger span {
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: var(--sauber-primary-aqua);
  transition: transform 0.2s ease;
}

.sauber-nav__mobile.is-open .sauber-nav__hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.sauber-nav__mobile.is-open .sauber-nav__hamburger span:nth-child(2) {
  transform: scaleX(0);
}

.sauber-nav__mobile.is-open .sauber-nav__hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.sauber-nav__mobile-menu {
  display: flex;
  position: absolute;
  top: calc(100% + 12px);
  left: 24px;
  right: 24px;
  background: var(--sauber-white);
  border: 1px solid var(--sauber-border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.14);
  flex-direction: column;
  gap: 12px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    transform 0.35s ease;
  z-index: 20;
}

.sauber-nav__mobile.is-open .sauber-nav__mobile-menu {
  max-height: 80vh;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sauber-nav__mobile-link {
  color: var(--sauber-text);
  text-decoration: none;
  font-weight: 600;
}

.sauber-nav__mobile-link:hover,
.sauber-nav__mobile-link:focus-visible {
  color: var(--sauber-primary-indigo);
}

.sauber-nav__mobile-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--sauber-border) 70%, transparent);
  border-bottom: 1px solid
    color-mix(in srgb, var(--sauber-border) 70%, transparent);
}

.sauber-nav__mobile-services-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
  padding-left: 12px;
  border-left: 2px solid
    color-mix(in srgb, var(--sauber-border) 80%, transparent);
}

.sauber-nav__mobile-services-root {
  font-weight: 700;
}

/* === Social rail === */
.social-rail {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  filter: blur(0);
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--sauber-border) 90%, transparent);
  background: color-mix(in srgb, var(--sauber-white) 94%, transparent);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    filter 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 90;
}

.social-rail.is-dimmed {
  opacity: 0.75;
  background: color-mix(in srgb, var(--sauber-off-white) 92%, transparent);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

.social-rail:hover {
  opacity: 1;
  background: color-mix(in srgb, var(--sauber-white) 98%, transparent);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.18);
}

.social-rail.is-at-end {
  opacity: 0;
  filter: blur(10px);
  transform: translate(-50%, 16px);
  pointer-events: none;
}

.social-rail__link {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sauber-white);
  background: var(--sauber-primary-aqua);
  border: 1px solid var(--sauber-primary-aqua);
  box-shadow: 0 10px 18px
    color-mix(in srgb, var(--sauber-primary-aqua) 40%, transparent);
  line-height: 0;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.social-rail__link svg {
  width: 22px;
  height: 22px;
  display: block;
}

.social-rail__link img {
  width: 17.6px;
  height: 17.6px;
  display: block;
}

.social-rail__link:hover,
.social-rail__link:focus-visible {
  transform: translateY(-2px);
  color: var(--sauber-white);
  border-color: var(--sauber-primary-indigo);
  background: var(--sauber-primary-indigo);
  box-shadow: 0 12px 22px
    color-mix(in srgb, var(--sauber-primary-aqua) 45%, transparent);
  text-decoration: none;
}

.site-footer {
  background: #d8f2f6;
  color: #5a6770;
  padding: 70px 0 38px;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}
.site-footer__container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(210px, 1.1fr) minmax(0, 3fr);
  gap: 42px;
  align-items: start;
}
.site-footer__brand {
  display: flex;
  gap: 16px;
  align-items: center;
}
.site-footer__logo {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
}

.site-footer__logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.site-footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
}
.site-footer__brand-name {
  font-weight: 600;
  color: #2f3b45;
}
.site-footer__brand-sub {
  color: #6c7a84;
}
.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
.site-footer__column h3 {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1f2b33;
}
.site-footer__column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 15px;
}
.site-footer__column li {
  color: #64717b;
}
.site-footer__bottom {
  margin-top: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.site-footer__social {
  display: flex;
  gap: 16px;
}
.site-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #c3ecf5;
  color: #3d7e95;
  display: grid;
  place-items: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.site-footer__social a:hover {
  transform: translateY(-2px);
  background: #b3e6f1;
  text-decoration: none;
}
.site-footer__social svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 900px) {
  .sauber-nav__inner {
    padding: 16px 24px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .sauber-nav__links {
    display: none;
  }

  .sauber-nav__actions {
    gap: 12px;
  }

  .sauber-nav__mobile {
    display: block;
  }
  .site-footer__top {
    grid-template-columns: 1fr;
  }
  .site-footer__columns {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .site-footer__bottom {
    margin-top: 48px;
  }
  .page .richtext {
    padding: 120px 32px 64px;
  }
  .section__inner {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .site-footer__brand {
    justify-content: start;
    align-items: center;
    text-align: center;
  }

  .site-footer__brand-text {
    align-items: center;
  }

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

  .site-footer__column--company,
  .site-footer__column--services {
    text-align: start;
  }

  .site-footer__column--company ul,
  .site-footer__column--services ul {
    justify-items: start;
  }

  .site-footer__column--contact {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: start;
  }

  .site-footer__column--contact ul {
    justify-items: start;
  }

  .site-footer__bottom {
    justify-content: start;
    align-items: start;
    flex-direction: column;
    text-align: start;
  }

  .site-footer__legal {
    justify-content: start;
  }
}

@supports (overflow: clip) {
  .page {
    overflow-x: clip;
  }
}

.nav-settings {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-select {
  padding: 8px 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--sauber-border);
  background: var(--sauber-white);
  color: var(--sauber-text);
}
.nav-color {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--sauber-border);
  background: var(--sauber-white);
  padding: 4px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* Ausgangszustand: Element ist nach links versetzt und unsichtbar */
.animate-on-scroll {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

/* Wenn sichtbar (im Viewport): gleitet an Position und wird sichtbar */
.animate-on-scroll.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

/* Wenn gerade verlassen (Viewport nach oben verlassen): nach rechts versetzen und ausblenden */
.animate-on-scroll.out {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(40px);
}

.animate-on-scroll-right {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(40px);
  transition: all 0.6s ease-out;
}

/* Wenn sichtbar (im Viewport): gleitet an Position und wird sichtbar */
.animate-on-scroll-right.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0px);
}

/* Wenn gerade verlassen (Viewport nach oben verlassen): nach rechts versetzen und ausblenden */
.animate-on-scroll-right.out {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(40px);
}

.animate-on-scroll-left {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-40px);
  transition: all 0.6s ease-in;
}

/* Wenn sichtbar (im Viewport): gleitet an Position und wird sichtbar */
.animate-on-scroll-left.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0px);
}

/* Wenn gerade verlassen (Viewport nach oben verlassen): nach rechts versetzen und ausblenden */
.animate-on-scroll-left.out {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-40px);
}

/* === Sauber Mehr theme === */

.sauber-hero {
  position: relative;
  min-height: clamp(520px, 70vh, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--sauber-white);
  overflow: hidden;
  background: var(--sauber-off-white);
  height: 100vh;
}

.sauber-hero--leistungen {
  height: auto;
  min-height: 0;
  padding: clamp(80px, 14vh, 150px) 0;
  text-align: left;
  color: var(--sauber-text);
}

.sauber-hero--leistungen .sauber-hero__inner {
  display: grid;
  gap: 32px;
  max-width: 1400px;
}

.sauber-hero__header {
  display: flex;
  justify-content: flex-start;
}

.sauber-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--sauber-muted);
}

.sauber-hero__breadcrumb a {
  text-decoration: none;
}

.sauber-hero__breadcrumb a:hover {
  color: var(--sauber-text);
  text-decoration: underline;
}

.sauber-hero--leistungen .sauber-hero__body {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 32px;
  align-items: center;
}

.breadcrumb-hero__container {
  display: flex;
  gap: 32px;
  flex-direction: column;
}

.sauber-hero--leistungen .sauber-hero__text {
  justify-content: space-evenly;
  gap: 16px;
  height: 100%;
}

.sauber-hero--leistungen .sauber-hero__header {
  margin-bottom: 4px;
}

.sauber-hero--leistungen .sauber-hero__title {
  color: var(--sauber-text);
  text-shadow: none;
}

.sauber-hero--leistungen .sauber-hero__subtitle {
  color: var(--sauber-muted);
  text-shadow: none;
  font-weight: 500;
  line-height: 1.6;
}

.sauber-hero--leistungen .sauber-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.sauber-hero--leistungen .sauber-hero__button {
  min-width: 100px;
}

.sauber-hero--leistungen-detail .sauber-hero__body {
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  align-items: flex-start;
}

.sauber-hero__gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.sauber-hero__gallery-item {
  width: min(100%, var(--gallery-width, 432px));
  height: 170px;
}

.sauber-hero__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
}

.sauber-hero__visual img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
}

.sauber-hero__upper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sauber-hero__media {
  --hero-image-desktop: none;
  --hero-image-mobile: var(--hero-image-desktop);
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.7) 3%,
      rgba(255, 255, 255, 0.1) 80%,
      rgba(255, 255, 255, 0.4) 100%
    ),
    var(--hero-image-desktop);
  background-size: cover;
  background-position: center;
  z-index: 0;
  min-height: 100%;
}

.sauber-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10%;
  max-width: 80%;
  height: 100%;
  margin-top: 10%;
}

.sauber-hero__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.sauber-hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sauber-hero__text {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-evenly;
}

.sauber-hero__title {
  font-size: clamp(22px, 6vw, 64px);
  line-height: 1.05;
  color: var(--sauber-hero-aqua);
  margin: 0;
  text-shadow: 0px 2px 2px #ffffff63;
}

.sauber-hero:not(.sauber-hero--leistungen) .sauber-hero__title {
  font-family: "Alfa Slab One", var(--font-heading);
  font-weight: 400;
  letter-spacing: 2px;
}

.sauber-hero__subtitle {
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 600;
  color: var(--sauber-hero-aqua);
  max-width: 720px;
  margin: 0;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.sauber-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  background: var(--sauber-primary-indigo);
  color: var(--sauber-white);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(19, 36, 90, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.sauber-hero__button--secondary {
  background: #19bdd7;
}

.sauber-hero__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(19, 36, 90, 0.35);
}

.sauber-ablauf__title {
  color: var(--sauber-text);
  margin-bottom: 16px;
}

.sauber-kosten {
  background: linear-gradient(
    180deg,
    rgba(43, 191, 204, 0.35) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
}

.sauber-kosten__title {
  color: var(--sauber-primary-indigo);
  margin-bottom: 12px;
}

.sauber-kosten__description {
  color: #364b64;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 12px;
  max-width: 860px;
}

.sauber-kosten__subheading {
  color: var(--sauber-primary-indigo);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
}

.sauber-kosten__subtitle {
  color: var(--sauber-primary-indigo);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 48px;
}

.sauber-kosten__flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap;
  margin-bottom: 32px;
}

.sauber-kosten__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sauber-kosten__index {
  font-size: 22px;
  font-weight: 700;
  color: var(--sauber-primary-indigo);
}

.sauber-kosten__card {
  position: relative;
  width: 240px;
  height: 300px;
  z-index: 10;
}

.sauber-kosten__card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -10px;
  top: 10px;
  background: rgba(43, 191, 204, 0.2);
  z-index: 0;
}

.sauber-kosten__card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 18px 28px rgba(20, 35, 50, 0.2);
}

.sauber-kosten__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 10;
}

.sauber-kosten__label {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 208px;
  padding: 12px 16px;
  background: rgba(90, 79, 243, 0.6);
  color: var(--sauber-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.7;
  text-align: center;
  z-index: 11;
}

.sauber-kosten__arrow {
  align-self: center;
  transform: translateX(-100px);
  z-index: 1;
}

.sauber-kosten__arrow img {
  width: 120px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.sauber-kosten__lead,
.sauber-kosten__detail {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: #364b64;
  margin: 0 auto 24px;
  max-width: 860px;
}

.sauber-kosten__detail {
  margin-bottom: 0;
}

.sauber-kosten__buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.sauber-kosten__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  min-width: 220px;
}

.sauber-kosten__button--primary {
  background: var(--sauber-primary-indigo);
  color: var(--sauber-white);
  box-shadow: 0 10px 20px rgba(83, 111, 212, 0.25);
}

.sauber-kosten__button--secondary {
  background: var(--sauber-primary-aqua);
  color: var(--sauber-white);
  box-shadow: 0 10px 20px rgba(43, 191, 204, 0.25);
}

.sauber-kosten__animate {
  transition-delay: var(--delay, 0s);
}

@media (max-width: 1000px) {
  .sauber-kosten__flow {
    flex-wrap: wrap;
  }

  .sauber-kosten__arrow {
    display: none;
  }
}

.sauber-ablauf__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.sauber-ablauf__card {
  background: var(--sauber-light-aqua);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(20, 35, 50, 0.08);
}

.sauber-ablauf__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sauber-accent);
  color: var(--sauber-text);
  font-weight: 700;
  margin-bottom: 16px;
}

.sauber-ablauf__card-title {
  margin: 0 0 8px;
  color: var(--sauber-text);
}

.sauber-ablauf__card-text {
  margin: 0;
  color: var(--sauber-muted);
}

.sauber-kontakt {
  display: flex;
  background: linear-gradient(135deg, rgb(83 111 212 / 20%), #ffffff 100%);
}

.sauber-kontakt__inner {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 100px;
  align-items: center;
  justify-items: stretch;
}

@media (min-width: 1050px) {
  .sauber-kontakt__inner {
    max-width: 1400px;
  }
}

.sauber-kontakt__inner--services {
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 120px;
}

.sauber-kontakt__content {
  display: grid;
  gap: 18px;
  order: 2;
  width: 100%;
}

.sauber-kontakt__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 2px 14px 2px 2px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(43, 191, 204, 0.2);
  background: var(--sauber-primary-aqua);
  color: var(--sauber-text);
  font-weight: 600;
}

.sauber-kontakt__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--sauber-primary-indigo);
  color: var(--sauber-accent);
  border: 1px solid rgba(43, 191, 204, 0.2);
}

.sauber-kontakt__badge-icon svg {
  width: 32px;
  height: 32px;
}

.sauber-kontakt__headline {
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--sauber-text);
  margin: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  overflow-wrap: anywhere;
}

.sauber-kontakt__headline-accent {
  color: var(--sauber-primary-aqua);
  font-style: italic;
}

.sauber-kontakt__intro {
  color: var(--sauber-muted);
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.sauber-kontakt__items {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  border-radius: var(--radius-sm);
  flex-wrap: wrap;
}

.sauber-kontakt__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sauber-text);
  font-weight: 600;
}

.sauber-kontakt__item a.sauber-kontakt__item-text {
  color: var(--sauber-primary-indigo);
  text-decoration: none;
}

.sauber-kontakt__item a.sauber-kontakt__item-text:hover,
.sauber-kontakt__item a.sauber-kontakt__item-text:focus-visible {
  color: var(--sauber-primary-aqua);
  text-decoration: none;
}

.sauber-kontakt__item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--sauber-primary-indigo);
  color: var(--sauber-accent);
}

.sauber-kontakt__item-icon svg {
  width: 32px;
  height: 32px;
}

.sauber-kontakt__card-wrap {
  position: relative;
  width: fit-content;
  order: 1;
}

.sauber-kontakt__card-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -30px;
  top: 30px;
  background: rgba(43, 191, 204, 0.2);
  border-radius: var(--radius-sm);
  z-index: 0;
}

.sauber-kontakt__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* width: clamp(250px, 360px + 20px, 440px);
  height: clamp(250px, 380px, 400px); */
  min-height: 320px;
  height: auto;
  background: var(--sauber-primary-aqua);
  padding: 28px;
  border-radius: var(--radius-sm);
  z-index: 1;
  justify-content: space-between;
}

.sauber-kontakt__field {
  display: grid;
  gap: 6px;
  font-size: clamp(16px, 3.5vw, 20px);
  color: var(--sauber-off-white);
  font-weight: 600;
  width: 380px;
  min-width: 0;
}

.sauber-kontakt__field select,
.sauber-kontakt__field input {
  border: none;
  border-radius: var(--radius-sm);
  padding: 0 14px;
  font-family: var(--font-body);
  background: var(--sauber-light-aqua);
  color: var(--sauber-muted);
  height: 50px;
  width: 100%;
  box-sizing: border-box;
}

.sauber-kontakt__field input[type="file"] {
  padding: 12px 14px;
  height: auto;
}

.sauber-kontakt__field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--sauber-primary-indigo) 50%),
    linear-gradient(135deg, var(--sauber-primary-indigo) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(1em + 2px),
    calc(100% - 13px) calc(1em + 2px);
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.sauber-kontakt__button {
  background: var(--sauber-primary-indigo);
  color: var(--sauber-off-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-weight: 600;
  cursor: pointer;
  min-width: 160px;
  height: fit-content;
  width: fit-content;
}

.sauber-kontakt__aside {
  display: grid;
  gap: 16px;
  order: 2;
  max-width: 480px;
}

.sauber-kontakt__aside-title {
  margin: 0;
  font-size: clamp(24px, 4.5vw, 32px);
  color: var(--sauber-primary-indigo);
}

.sauber-kontakt__aside-text {
  margin: 0;
  color: var(--sauber-muted);
  line-height: 1.6;
}

.sauber-kontakt__aside-subtitle {
  margin: 16px 0 0;
  font-size: clamp(14px, 3.5vw, 18px);
  font-weight: 700;
  color: var(--sauber-primary-indigo);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sauber-kontakt__service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.sauber-kontakt__service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sauber-text);
  font-weight: 600;
}

.sauber-kontakt__service-item a {
  color: inherit;
  text-decoration: none;
}

.sauber-kontakt__service-item a:hover {
  text-decoration: underline;
}

.sauber-kontakt__service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--sauber-primary-indigo);
}

.sauber-kontakt__service-icon svg {
  width: 20px;
  height: 20px;
}

.kontakt-flow {
  background: #f7f8ff;
}

.kontakt-flow__inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: center;
}

.kontakt-flow__content {
  display: grid;
  gap: 18px;
}

.kontakt-flow__breadcrumb {
  font-size: 14px;
  color: var(--sauber-muted);
  font-weight: 600;
}

.kontakt-flow__headline {
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.2;
  color: var(--sauber-text);
  display: flex;
  flex-direction: column;
}

.kontakt-flow__headline-accent {
  color: var(--sauber-primary-indigo);
  font-weight: 700;
}

.kontakt-flow__description {
  margin: 0;
  color: var(--sauber-muted);
  max-width: 520px;
}

.kontakt-flow__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.kontakt-flow__form-wrapper {
  display: flex;
  justify-content: flex-end;
}

.kontakt-flow__form {
  width: min(540px, 100%);
}

.kontakt-flow__card {
  justify-items: center;
  background: var(--sauber-light-indigo);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 36px rgba(83, 111, 212, 0.15);
  display: grid;
  gap: 20px;
  min-height: 300px;
  position: relative;
}

.kontakt-flow__card[hidden] {
  display: none;
}

.kontakt-flow__card-title {
  margin: 0;
  font-size: 20px;
  color: var(--sauber-primary-indigo);
}

.kontakt-flow__back {
  position: absolute;
  top: 5px;
  left: 5px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sauber-primary-indigo);
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  padding: 6px 12px;
  box-shadow: 0 8px 16px rgba(83, 111, 212, 0.2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.kontakt-flow__back:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 12px 24px rgba(83, 111, 212, 0.3);
  transform: translateY(-2px);
}

.kontakt-flow__back:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.kontakt-flow__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.kontakt-flow__options--grid {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.kontakt-flow__option {
  border: none;
  background: var(--sauber-focus);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  gap: 10px;
  text-align: center;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(83, 111, 212, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  font-family: inherit;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.kontakt-flow__option:hover,
.kontakt-flow__option:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(83, 111, 212, 0.18);
  outline: none;
}

.kontakt-flow__option-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(83, 111, 212, 0.08);
  display: grid;
  place-items: center;
}

.kontakt-flow__option-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kontakt-flow__option-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(83, 111, 212, 0.2);
}

.kontakt-flow__option-label {
  font-weight: 600;
  color: var(--sauber-text);
  font-size: 14px;
}

.kontakt-flow__field {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--sauber-text);
}

.kontakt-flow__field input {
  border-radius: 12px;
  border: 1px solid rgba(83, 111, 212, 0.3);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
}

.kontakt-flow__button {
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  background: var(--sauber-primary-indigo);
  color: var(--sauber-off-white);
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
}

@media (max-width: 1000px) {
}

@media (max-width: 720px) {
  .sauber-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10%;
    max-width: 100%;
    padding: 10px;
    height: 100%;
    margin-top: 30%;
  }
}

.image-slider {
  position: relative;
  width: 100%;
}

.image-slider__carousel {
  position: relative;
  width: 100%;
  height: clamp(520px, 90vh, 980px);
  overflow: visible;
}

.image-slider__list {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-slider__item {
  position: absolute;
  inset: 0;
}

.image-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.image-slider__content {
  position: absolute;
  left: clamp(24px, 6vw, 80px);
  bottom: clamp(24px, 10vh, 100px);
  max-width: min(520px, 80%);
  padding: 20px 24px;
  background: rgba(232, 243, 248, 0.8);
  border-radius: 12px;
  color: #0b1a21;
}

.image-slider__content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--sauber-primary-indigo);
  font-weight: 700;
  margin: 0 0 12px;
}

.image-slider__content p {
  margin: 0;
}

.image-slider__content p + p {
  margin-top: 8px;
}

.image-slider__cta {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 6vh, 80px);
  transform: translateX(-50%);
  z-index: 3;
}

.image-slider__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  background: var(--accent, #3a5bf2);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

.image-slider__thumbnails {
  position: absolute;
  bottom: clamp(-40px, -8vh, -80px);
  right: clamp(24px, 6vw, 400px);
  display: flex;
  gap: 16px;
  z-index: 2;
}

.image-slider:not(.image-slider--bereiche) {
  --image-slider-cta-safe-half: clamp(110px, 14vw, 170px);
  --image-slider-thumb-width: 150px;
  --image-slider-thumb-height: 170px;
  --image-slider-thumb-shift: var(--image-slider-thumb-width);
  --image-slider-thumb-anchor-x: calc(
    50% + var(--image-slider-cta-safe-half) + 20px
  );
  --image-slider-thumb-anchor-y: clamp(-40px, -8vh, -80px);
}

.image-slider--start-fullscreen {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.image-slider--start-fullscreen .image-slider__carousel {
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
}

.image-slider--start-fullscreen .image-slider__item img {
  object-fit: cover;
  object-position: center;
}

.image-slider--start-fullscreen .image-slider__cta {
  transform: translate(-50%, -100px);
}

.image-slider:not(.image-slider--bereiche) .image-slider__thumbnails {
  left: var(--image-slider-thumb-anchor-x);
  right: auto;
  width: max-content;
  overflow: visible;
}

.image-slider__thumb {
  width: 150px;
  height: 170px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.image-slider__thumb.is-hidden {
  display: none;
}

.image-slider__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-slider__arrows {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 3;
  pointer-events: none;
}

.image-slider__arrow {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(232, 243, 248, 0.5);
  color: var(--sauber-hero-aqua);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.image-slider--bereiche .image-slider__carousel {
  height: clamp(320px, 60vh, 520px);
  overflow: visible;
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.image-slider--bereiche {
  --bereiche-button-safe-width: clamp(170px, 24vw, 260px);
  --bereiche-thumb-width: 120px;
  --bereiche-thumb-height: 140px;
  --bereiche-thumb-anchor-x: calc(
    24px + var(--bereiche-button-safe-width) + 20px
  );
  --bereiche-thumb-anchor-y: -120px;
  --image-slider-thumb-width: var(--bereiche-thumb-width);
  --image-slider-thumb-shift: var(--bereiche-thumb-width);
}

.image-slider--bereiche .image-slider__item {
  position: absolute;
  inset: 0;
}

.image-slider--bereiche .image-slider__item img {
  border-radius: var(--radius-sm);
}

.image-slider--leistungen-bereiche-cover .image-slider__item img {
  object-fit: cover;
}

.image-slider--bereiche .image-slider__thumbnails {
  bottom: var(--bereiche-thumb-anchor-y);
  left: var(--bereiche-thumb-anchor-x);
  right: auto;
  width: max-content;
  overflow: visible;
  gap: 12px;
  z-index: 2;
}

.image-slider--bereiche .image-slider__thumb {
  width: var(--bereiche-thumb-width);
  height: var(--bereiche-thumb-height);
}

.image-slider--bereiche
  .image-slider__item:not(:first-child)
  .image-slider__overlay {
  opacity: 0;
  pointer-events: none;
}

.image-slider--bereiche.is-next .image-slider__item:nth-child(1) img {
  width: var(--bereiche-thumb-width);
  height: var(--bereiche-thumb-height);
  position: absolute;
  left: var(--bereiche-thumb-anchor-x);
  bottom: var(--bereiche-thumb-anchor-y);
  border-radius: var(--radius-sm);
  transform-origin: left bottom;
  animation: imageSliderBereicheShowImage 0.6s cubic-bezier(0.2, 0.7, 0.2, 1)
    forwards;
}

.image-slider--bereiche.is-prev .image-slider__item:nth-child(2) img {
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: var(--radius-sm);
  transform-origin: left bottom;
  animation: imageSliderBereicheOutImage 0.6s cubic-bezier(0.4, 0, 0.6, 1)
    forwards;
}

@keyframes imageSliderBereicheShowImage {
  from {
    opacity: 0.88;
    transform: translateY(30px) scale(0.95);
    filter: blur(1px) saturate(0.94);
    clip-path: inset(34% 0 0 0);
  }
  65% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) saturate(1);
    clip-path: inset(0 0 0 0);
  }
  to {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    border-radius: var(--radius-sm);
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes imageSliderBereicheOutImage {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
  }
  to {
    width: var(--bereiche-thumb-width);
    height: var(--bereiche-thumb-height);
    left: var(--bereiche-thumb-anchor-x);
    bottom: var(--bereiche-thumb-anchor-y);
    border-radius: var(--radius-sm);
    opacity: 0.9;
    transform: translateY(24px) scale(0.96);
    filter: blur(1px) saturate(0.94);
  }
}

.image-slider__overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 5;
}

.image-slider__overlay-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  background: var(--sauber-primary-indigo);
  color: var(--sauber-white);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(19, 36, 90, 0.25);
}

.image-slider--bereiche .image-slider__arrow--right {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 4;
  background: var(--sauber-primary-indigo);
}

.sauber-bereiche__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
  gap: 48px;
  align-items: center;
}

.sauber-bereiche__content {
  display: grid;
  gap: 16px;
}

/* .sauber-bereiche__image {
  max-height: 500px;
} */

.sauber-bereiche__slider {
  width: 100%;
}

.sauber-bereiche__image img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
}

.u-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.u-slider__content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 110%;
}

.u-slider__carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: auto;
  padding: 12px 20px;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x;
  width: 100%;
}

.u-slider__carousel::-webkit-scrollbar {
  display: none;
}

.u-slider__carousel.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.u-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--text-main) 12%, transparent);
  color: var(--text-main);
  cursor: pointer;
  flex-shrink: 0;
}

.u-slider__arrow--left {
  left: -50px;
}

.u-slider__arrow--right {
  right: -50px;
}

.u-slider__arrow[hidden] {
  display: none !important;
}

.u-slider__arrow svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.u-slider__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.u-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
}

.u-slider__dot.is-active {
  opacity: 1;
}

.u-slider__empty {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--default-bg);
  color: var(--text-soft);
  font-family: "Inter", system-ui, sans-serif;
}

/* About */

.team-overview__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.team-overview__breadcrumb {
  align-self: flex-start;
}

.team-overview__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.team-overview__title {
  margin: 0;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  color: var(--sauber-text);
}

.team-overview__title em {
  color: var(--sauber-primary-indigo);
}

.team-overview__subtitle {
  margin: 0;
  color: var(--sauber-muted);
  max-width: 620px;
  line-height: 1.6;
}

.team-overview__slider .u-slider__carousel {
  padding: 16px 10px 24px;
  gap: 28px;
}

.team-card {
  width: min(320px, 80vw);
  height: 380px;
  flex: 0 0 auto;
  perspective: 1000px;
}

.team-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.team-card.is-flipped .team-card__inner {
  transform: rotateY(180deg);
}

.team-card__face {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 7px 7px 3px rgba(15, 23, 42, 0.12);
}

.team-card__front img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  display: block;
}

.team-card__back {
  transform: rotateY(180deg);
  background: linear-gradient(180deg, #45c7d6 0%, #f0fbff 100%);
  color: #0f172a;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.team-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.team-card__role {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sauber-primary-indigo);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.team-card__content h3 {
  margin: 0;
  font-size: 1.2rem;
}

.team-card__description {
  margin: 0;
  color: var(--sauber-text);
  line-height: 1.5;
}

.team-card__flip {
  position: absolute;
  inset: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.team-card__flip--back {
  inset: auto;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.specials {
  background: #f3f5ff;
}

.specials__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
  max-width: 1400px;
}

.specials__header h2 {
  margin: 0 0 8px;
  color: var(--sauber-primary-indigo);
}

.specials__header p {
  margin: 0;
  color: var(--sauber-muted);
}

.specials__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.special-card {
  width: 300px;
  height: fit-content;
  padding: 24px;
  border-bottom: 5px solid var(--sauber-primary-indigo);
  background: var(--sauber-white);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.special-card__icon {
  width: 42px;
  height: 42px;
  color: var(--sauber-primary-indigo);
}

.special-card__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.special-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--sauber-text);
}

.special-card p {
  margin: 0;
  color: var(--sauber-muted);
  line-height: 1.6;
}

/* Leistungen */
.leistungen-unterseiten__inner {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 24px;
}

.leistungen-unterseiten__title {
  margin: 0;
  color: var(--sauber-primary-indigo);
}

.leistungen-unterseiten__text {
  margin: 0;
  color: var(--sauber-muted);
  line-height: 1.6;
}

.leistungen-card__title h3 em {
  color: white !important;
}

.leistungen-card {
  width: min(350px, 100%);
  flex: 0 0 auto;
  height: 450px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sauber-white);
  box-shadow: 2px 3px 10px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.leistungen-card__media {
  height: 100%;
  width: 100%;
}

.leistungen-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leistungen-card__title {
  position: absolute;
  background: var(--sauber-primary-indigo);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  width: 80%;
  top: 10%;
}

.leistungen-card__title h3 {
  margin: 0;
  color: var(--sauber-white);
  font-size: 18px;
}

.leistungen-card__body {
  padding: 16px;
  display: grid;
  gap: 12px;
  position: absolute;
  bottom: 10px;
  justify-content: center;
  justify-items: center;
}

.leistungen-card__body p {
  margin: 0;
  color: var(--sauber-text);
  font-weight: 500;
  box-shadow: 3px 3px 12px 0px #536fd470;
  width: 90%;
  border-radius: var(--radius-sm);
  line-height: 1.5;
  background: #ffffffe3;
}

.leistungen-card__button {
  align-self: flex-start;
  background: var(--sauber-primary-aqua);
  color: var(--sauber-white);
  text-decoration: none;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  width: 50%;
}

.sauber-bereiche__title {
  margin: 0;
  color: var(--sauber-primary-indigo);
}

.sauber-bereiche__text {
  margin: 0;
  color: var(--sauber-muted);
  line-height: 1.7;
}

/* Shooting Gallery */
.shooting-gallery__title {
  margin: 0;
  color: var(--sauber-primary-indigo);
}

.shooting-gallery__description {
  margin: 16px 0 0;
  color: var(--sauber-muted);
  line-height: 1.7;
}

.shooting-gallery__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  grid-auto-flow: row dense;
  grid-auto-rows: 8px;
  gap: 16px;
  align-items: start;
}

.shooting-gallery__item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shooting-gallery__trigger {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: zoom-in;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
}

.shooting-gallery__trigger img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  transition: transform 0.22s ease;
}

.shooting-gallery__trigger:hover img {
  transform: scale(1.02);
}

.shooting-gallery__caption {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--sauber-primary-indigo);
}

.shooting-gallery__empty {
  margin-top: 20px;
  color: var(--sauber-muted);
}

.shooting-gallery__lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.shooting-gallery__lightbox.is-active {
  opacity: 1;
  pointer-events: auto;
}

.shooting-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 17, 30, 0.86);
  display: grid;
  place-items: center;
  padding: 24px;
}

.shooting-gallery__dialog {
  position: relative;
  width: min(1200px, 92vw);
  max-height: 90vh;
  display: grid;
  place-items: center;
}

.shooting-gallery__media {
  display: grid;
  place-items: center;
  max-width: 100%;
  max-height: 86vh;
}

.shooting-gallery__media img {
  max-width: 100%;
  max-height: 86vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.36);
}

.shooting-gallery__close,
.shooting-gallery__arrow {
  border: none;
  background: rgba(255, 255, 255, 0.94);
  color: #111827;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.shooting-gallery__close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.shooting-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.shooting-gallery__arrow--left {
  left: -72px;
}

.shooting-gallery__arrow--right {
  right: -72px;
}

@media (hover: hover) and (pointer: fine) {
  .shooting-gallery__close:hover,
  .shooting-gallery__close:focus-visible {
    transform: none;
    filter: none;
  }

  .shooting-gallery__arrow:hover,
  .shooting-gallery__arrow:focus-visible {
    transform: translateY(-50%);
    filter: none;
  }
}

body.is-shooting-gallery-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .shooting-gallery__overlay {
    padding: 16px;
  }

  .shooting-gallery__dialog {
    width: 100%;
  }

  .shooting-gallery__close,
  .shooting-gallery__arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .shooting-gallery__close {
    top: 24px;
    right: 12px;
  }

  .shooting-gallery__arrow--left {
    left: 8px;
  }

  .shooting-gallery__arrow--right {
    right: 8px;
  }
}

.faq {
  background: #f6f8fb;
}

.faq__inner {
  display: grid;
  gap: 32px;
}

.faq__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.faq__intro {
  max-width: 620px;
}

.faq__intro h2 {
  margin: 0 0 12px;
  color: var(--sauber-primary-indigo);
}

.faq__intro p {
  margin: 0;
  color: var(--sauber-muted);
}

.faq__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  background: var(--sauber-primary-indigo);
  color: var(--sauber-white);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.faq__list {
  display: grid;
  gap: 12px;
  cursor: pointer;
}

.faq__item {
  background: var(--sauber-white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.faq__item summary {
  color: var(--sauber-primary-indigo);
}

.prose {
  padding: 20px 0 0 20px;
}

.image-slider__item:nth-child(1) {
  z-index: 2;
}

.image-slider__item:nth-child(1) .image-slider__content {
  animation: imageSliderContentEnter 0.6s ease forwards;
}

.image-slider__content.is-entering {
  z-index: 2;
  animation: imageSliderContentEnter 0.6s ease forwards;
}

.image-slider__content.is-leaving {
  z-index: 1;
  animation: imageSliderContentLeave 0.6s ease forwards;
}

@keyframes imageSliderContentEnter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageSliderContentLeave {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-80px);
  }
}

.image-slider:not(.image-slider--bereiche).is-next
  .image-slider__item:nth-child(1)
  img {
  width: var(--image-slider-thumb-width);
  height: var(--image-slider-thumb-height);
  position: absolute;
  left: var(--image-slider-thumb-anchor-x);
  bottom: var(--image-slider-thumb-anchor-y);
  border-radius: var(--radius-sm);
  transform-origin: left bottom;
  animation: imageSliderShowImage 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes imageSliderShowImage {
  from {
    opacity: 0.88;
    transform: translateY(32px) scale(0.94);
    filter: blur(1px) saturate(0.94);
    clip-path: inset(38% 0 0 0);
  }
  65% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) saturate(1);
    clip-path: inset(0 0 0 0);
  }
  to {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0;
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
    clip-path: inset(0 0 0 0);
  }
}

.image-slider.is-next
  .image-slider__thumbnails
  .image-slider__thumb:nth-child(1)
  img {
  width: 0;
  animation: imageSliderShowThumb 0.5s linear forwards;
}

@keyframes imageSliderShowThumb {
  to {
    width: var(--image-slider-thumb-width, 150px);
  }
}

.image-slider.is-next .image-slider__thumbnails {
  transform: translateX(var(--image-slider-thumb-shift, 150px));
  animation: imageSliderThumbShift 0.5s linear forwards;
}

@keyframes imageSliderThumbShift {
  to {
    transform: translateX(0);
  }
}

.image-slider.is-prev .image-slider__item:nth-child(2) {
  z-index: 3;
}

.image-slider:not(.image-slider--bereiche).is-prev
  .image-slider__item:nth-child(2)
  img {
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: left bottom;
  animation: imageSliderOutImage 0.6s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

@keyframes imageSliderOutImage {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
  }
  to {
    width: var(--image-slider-thumb-width);
    height: var(--image-slider-thumb-height);
    left: var(--image-slider-thumb-anchor-x);
    bottom: var(--image-slider-thumb-anchor-y);
    border-radius: var(--radius-sm);
    opacity: 0.9;
    transform: translateY(28px) scale(0.96);
    filter: blur(1px) saturate(0.94);
  }
}

.image-slider.is-prev
  .image-slider__thumbnails
  .image-slider__thumb:nth-child(1) {
  width: 0;
  overflow: hidden;
  animation: imageSliderShowThumb 0.5s linear forwards;
}

.image-slider.is-prev .image-slider__arrow,
.image-slider.is-next .image-slider__arrow {
  pointer-events: none;
}

@media (max-width: 900px) {
  .sauber-hero:not(.sauber-hero--leistungen) .sauber-hero__media {
    background-image:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 3%,
        rgba(255, 255, 255, 0.1) 80%,
        rgba(255, 255, 255, 0.4) 100%
      ),
      var(--hero-image-mobile);
  }

  .image-slider:not(.image-slider--bereiche) {
    --image-slider-thumb-width: 110px;
    --image-slider-thumb-height: 160px;
  }

  .image-slider--bereiche {
    --bereiche-thumb-width: 110px;
    --bereiche-thumb-height: 130px;
    --bereiche-button-safe-width: clamp(150px, 28vw, 220px);
    --bereiche-thumb-anchor-y: -100px;
  }

  .image-slider__content {
    max-width: min(260px, 86%);
  }

  .image-slider__thumb {
    width: 110px;
    height: 160px;
  }

  .image-slider:not(.image-slider--bereiche).is-next
    .image-slider__item:nth-child(1)
    img,
  .image-slider:not(.image-slider--bereiche).is-prev
    .image-slider__item:nth-child(2)
    img {
    width: 110px;
    height: 160px;
  }

  .image-slider:not(.image-slider--bereiche).is-next
    .image-slider__thumbnails
    .image-slider__thumb:nth-child(1)
    img,
  .image-slider:not(.image-slider--bereiche).is-prev
    .image-slider__thumbnails
    .image-slider__thumb:nth-child(1) {
    animation: none;
  }

  .sauber-hero--leistungen {
    padding: clamp(70px, 12vh, 120px) 0;
  }

  .sauber-hero--leistungen .sauber-hero__body {
    grid-template-columns: 1fr;
  }

  .sauber-hero--leistungen .sauber-hero__visual {
    order: 2;
  }
  .sauber-hero--leistungen .sauber-hero__actions {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .sauber-hero__header {
    justify-content: center;
  }
  .sauber-hero--leistungen .sauber-hero__subtitle,
  .sauber-hero--leistungen .sauber-hero__title {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .social-rail.is-hidden-by-slider {
    opacity: 0;
    filter: blur(10px);
    transform: translate(-50%, 16px);
    pointer-events: none;
  }

  .image-slider--bereiche {
    --bereiche-thumb-width: 90px;
    --bereiche-thumb-height: 110px;
    --bereiche-thumb-anchor-y: -90px;
    --bereiche-button-safe-width: clamp(145px, 38vw, 200px);
  }

  .image-slider__item img {
    object-fit: cover;
  }

  .kontakt-flow__card {
    padding: 40px 20px 20px 20px;
  }

  .kontakt-flow__options {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .kontakt-flow__options > .kontakt-flow__option:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(140px, 100%);
  }
  .image-slider__thumbnails {
    display: none;
  }

  .image-slider__cta {
    bottom: 24px;
  }

  .image-slider--start-fullscreen .image-slider__cta {
    transform: translate(-50%, 0px);
  }

  .image-slider__content {
    bottom: 90px;
  }

  .image-slider--bereiche .image-slider__thumbnails {
    display: flex;
    bottom: var(--bereiche-thumb-anchor-y);
    left: var(--bereiche-thumb-anchor-x);
    right: auto;
    width: max-content;
  }

  .image-slider--bereiche .image-slider__thumb {
    width: 90px;
    height: 110px;
  }
  .sauber-nav__logo img {
    width: 80px;
  }
}

@media (max-width: 860px) {
  .sauber-kontakt__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    justify-items: stretch;
    padding: 0 24px;
    box-sizing: border-box;
  }
  .sauber-kontakt__content {
    order: 1;
    width: 100%;
  }

  .sauber-kontakt__card-wrap {
    order: 2;
    width: 100%;
    max-width: 480px;
    justify-self: center;
  }

  .sauber-kontakt__card-wrap::before {
    left: -12px;
    top: 12px;
  }

  .sauber-kontakt__card {
    width: 100%;
    box-sizing: border-box;
  }

  .sauber-kontakt__field {
    width: 100%;
  }

  .sauber-kontakt__items {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sauber-kontakt__inner--services {
    gap: 32px;
  }

  .sauber-kontakt__inner--services .sauber-kontakt__aside {
    order: 1;
    width: 100%;
  }

  .sauber-kontakt__inner--services .sauber-kontakt__card-wrap {
    order: 2;
  }

  .sauber-bereiche__inner {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .sauber-bereiche__content {
    padding: 0 20px;
  }

  .sauber-bereiche__slider {
    order: 2;
  }

  .carousel .list .item .content {
    padding-right: 0;
  }
  .carousel .list .item .content h2 {
    font-size: 30px;
  }
}

@media (max-width: 700px) {
  .image-slider--bereiche .image-slider__carousel {
    height: clamp(260px, 55vh, 420px);
  }

  .faq__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .sauber-kontakt__inner {
    max-width: 100%;
    padding: 0 16px;
  }

  .sauber-kontakt__card-wrap {
    max-width: 100%;
  }

  .sauber-kontakt__field select,
  .sauber-kontakt__field input {
    height: 44px;
  }

  .sauber-kontakt__intro {
    max-width: 100%;
  }

  .sauber-kontakt__item-text {
    word-break: break-word;
  }

  .sauber-kontakt__card {
    padding: 18px;
  }
  .image-slider__content {
    left: 50%;
  }
  @keyframes imageSliderContentEnter {
    from {
      opacity: 0;
      transform: translateY(24px) translateX(-40%);
    }
    to {
      opacity: 1;
      transform: translateY(0) translateX(-50%);
    }
  }
}

/* === Sauber Mehr Angebote === */
.sauber-offers__header {
  text-align: center;
  margin-bottom: 48px;
}

.sauber-offers__title {
  margin: 0 0 16px;
  color: var(--sauber-primary-indigo);
}

.sauber-offers__description {
  max-width: 720px;
  margin: 0 auto;
  color: var(--sauber-muted);
}

.sauber-offers__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
}

.sauber-offers__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.sauber-offers__media {
  position: absolute;
  inset: 0;
}

.sauber-offers__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sauber-offers__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.sauber-offers__content {
  position: relative;
  padding: 24px;
  text-align: center;
  color: var(--sauber-white);
  z-index: 1;
  width: 100%;
}

.sauber-offers__card-title {
  margin: 0 0 8px;
  color: var(--sauber-hero-aqua);
  text-align: right;
}

.sauber-offers__card-text {
  margin: 0;
  color: var(--sauber-white);
  text-align: right;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .sauber-offers__header {
    text-align: left;
  }
  .kontakt-flow__inner {
    grid-template-columns: 1fr;
    gap: 64px;
    justify-items: center;
  }

  .kontakt-flow__form-wrapper {
    justify-content: center;
  }
  .kontakt-flow__content {
    justify-items: center;
    text-align: center;
  }
  .kontakt-flow__cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .sauber-offers__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 600px) {
  .sauber-offers__grid {
    grid-template-columns: 1fr;
  }

  .page .richtext {
    padding: 110px 20px 48px;
  }

  .sauber-offers__card {
    min-height: 220px;
  }
  .u-slider__carousel {
    scroll-snap-type: x mandatory;
  }

  .leistungen-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 768px) {
  .u-slider__arrow {
    width: 34px;
    height: 34px;
  }
}

/* === Admin Panel === */
.admin-body {
  background: #fdf4f4;
  min-height: 100vh;
}

.blass {
  color: var(--border-strong);
}

.admin-main {
  padding: 20px;
}

.admin-shell {
  display: flex;
  gap: 20px;
  min-height: calc(100vh - 40px);
}

.admin-sidebar {
  flex: 0 0 280px;
  background: #f8e1e1;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-body h1,
.admin-body h2,
.admin-body h3,
.admin-body h4,
.admin-body p {
  color: #1b2230;
}

.admin-sidebar__header h1 {
  margin: 0;
  font-size: 28px;
  color: #1f2937;
}

.admin-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #d7b6b6;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #1f2937;
}

.admin-profile__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #1f2937;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-nav__item {
  border: none;
  background: transparent;
  text-align: left;
  padding: 12px 14px;
  font-weight: 600;
  border-bottom: 1px solid #d6bcbc;
  color: #1f1f1f;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}

.admin-nav__item.is-active {
  background: #d13e3e;
  color: #fff;
  border-radius: 10px;
  border-bottom: none;
}

.admin-nav__chevron {
  font-size: 18px;
}

.admin-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.admin-content__section.is-hidden {
  display: none;
}

.admin-content__header h2 {
  margin-bottom: 4px;
  color: #1f2937;
}

.admin-content__header p {
  margin: 0;
  color: #6b7280;
}

.admin-tabs {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.admin-tabs--sub {
  margin-top: 0;
}

.admin-tab {
  border: none;
  background: #d8dbe8;
  color: #111827;
  padding: 6px 12px;
  border-radius: 10px 10px 0 0;
  font-weight: 600;
  cursor: pointer;
}

.admin-tab.is-active {
  background: #cfd2e2;
}

.admin-panel {
  background: #cfd2e2;
  border-radius: 0px 0px 20px 20px;
  margin-bottom: 30px;
  padding: 0px 28px 28px 28px;
}

.admin-panel.is-hidden {
  display: none;
}

.admin-panel__section {
  padding: 16px 0;
  border-bottom: 2px solid #2d3748;
}

.admin-panel__section:last-of-type {
  border-bottom: none;
}

.admin-panel__title {
  font-size: 18px;
  margin-bottom: 12px;
}

.admin-panel__hint {
  color: #4a5568;
  margin-bottom: 12px;
}

.admin-content-editor {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-content-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-content-block {
  background: #f7f9ff;
  border: 1px solid #d3d7ea;
  border-radius: 16px;
  padding: 16px;
}

.admin-content-block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.admin-content-block__title {
  margin: 0;
  font-size: 16px;
}

.admin-content-block__meta {
  margin: 4px 0 0;
  font-size: 13px;
  color: #4a5568;
}

.admin-content-add {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}

.admin-content-sort__list {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-content-sort__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px dashed #a0aec0;
  border-radius: 12px;
  background: #edf2f7;
  cursor: grab;
}

.admin-content-sort__item.is-dragging {
  opacity: 0.6;
}

.admin-content-sort__handle {
  font-size: 18px;
  line-height: 1;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 14px;
}

.admin-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.admin-grid--steps {
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  position: relative;
}
‚ .admin-grid[hidden] {
  display: none;
}

.admin-grid--steps [data-dynamic-rows-items] {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  position: relative;
}

.admin-grid--steps [data-dynamic-rows-items] > .admin-step-card {
  flex: 1 1 260px;
  max-width: 300px;
}

[data-kontakt-layout-group][hidden] {
  display: none;
}

[data-hero-layout-group][hidden],
[data-bereiche-layout-group][hidden] {
  display: none;
}

.admin-grid.admin-media-picker__alt {
  display: flex;
}

.admin-step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-step-card__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 1px solid #d0d0d0;
  background: #fff;
  color: #1f1f1f;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
}

.admin-step-card__handle {
  position: absolute;
  top: 8px;
  left: 8px;
  border: 1px solid #d0d0d0;
  background: #fff;
  color: #1f1f1f;
  border-radius: 999px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  font-weight: 700;
  line-height: 1;
}

.admin-step-card.is-dragging {
  opacity: 0.65;
}

[data-dynamic-sortable] [data-dynamic-row] {
  cursor: grab;
}

.admin-dynamic-actions {
  position: absolute;
  right: 50px;
  top: -50px;
  transform: translateX(50px);
}

.admin-media-picker__alt[hidden] {
  display: none;
}

.admin-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: #1f1f1f;
}

.admin-subpages__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.admin-field-gallery-category {
  flex-direction: row;
  padding-left: 140px;
}

.admin-field input {
  border: none;
  border-radius: 8px;
  width: 90%;
  padding: 8px 10px;
  color: var(--text-muted);
  background: #fff;
  box-shadow: inset 0 0 0 1px #d3d6e6;
}

.admin-field textarea {
  border: none;
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--text-muted);
  background: #fff;
  box-shadow: inset 0 0 0 1px #d3d6e6;
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.admin-field--error input,
.admin-field--error textarea,
.admin-field--error select {
  background: rgba(237, 79, 79, 0.12);
  box-shadow: inset 0 0 0 1px rgba(167, 55, 55, 0.45);
}

.admin-field--checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.admin-field--checkbox input {
  width: auto;
  padding: 0;
  box-shadow: none;
}

.admin-field small {
  font-weight: 400;
  color: var(--text-muted);
}

.admin-link-helper {
  position: absolute;
  z-index: 40;
  width: 220px;
  padding: 10px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #111827;
  font-size: 12px;
}

.admin-link-helper.is-hidden {
  display: none;
}

.admin-link-helper__header {
  font-weight: 700;
  font-size: 13px;
}

.admin-link-helper .is-hidden {
  display: none;
}

.admin-link-helper__menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.admin-link-helper__option {
  border: none;
  border-radius: 8px;
  padding: 6px 8px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  background: #eef2ff;
  color: #1f3dbd;
}

.admin-link-helper__option:hover,
.admin-link-helper__option:focus-visible {
  background: #dfe7ff;
}

.admin-link-helper__subheader {
  font-weight: 600;
}

.admin-link-helper__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
  color: #1f1f1f;
}

.admin-link-helper__field span {
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
}

.admin-link-helper__field input {
  border: none;
  border-radius: 8px;
  padding: 6px 8px;
  color: var(--text-muted);
  background: #f9fafb;
  box-shadow: inset 0 0 0 1px #d3d6e6;
  font-size: 12px;
}
.admin-link-helper__actions {
  display: flex;
  gap: 8px;
}

.admin-link-helper__back,
.admin-link-helper__button {
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  cursor: pointer;
  font-size: 12px;
}

.admin-link-helper__back {
  background: #e5e7eb;
  color: #374151;
}

.admin-link-helper__button {
  background: #2d5bff;
  color: #ffffff;
}

.admin-link-helper__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.admin-panel__actions {
  display: flex;
  justify-content: center;
  padding-top: 18px;
}

.admin-panel__actions--inline {
  justify-content: flex-end;
  gap: 12px;
  padding-top: 12px;
}

.admin-panel__alert {
  margin: 0 0 20px;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
}

.admin-panel__alert--error {
  background: rgba(237, 79, 79, 0.12);
  color: #a73737;
  border: 1px solid rgba(167, 55, 55, 0.35);
}

.admin-panel__alert--success {
  background: rgba(45, 166, 104, 0.12);
  color: #1f7a4f;
  border: 1px solid rgba(31, 122, 79, 0.3);
}

.admin-newsletter-table__wrapper {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.admin-newsletter-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 640px;
}

.admin-newsletter-table th,
.admin-newsletter-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  color: #123;
}

.admin-newsletter-table th {
  background: #eef0f8;
  font-weight: 700;
  color: #111827;
}

.admin-newsletter-table tbody tr:nth-child(even) {
  background: #f9fafb;
}

.admin-table {
  display: grid;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  overflow-x: auto;
}

.admin-table__row {
  display: grid;
  grid-template-columns:
    minmax(160px, 1.2fr) minmax(180px, 1.4fr) minmax(110px, 0.7fr)
    minmax(150px, 0.9fr) minmax(190px, 1.3fr) minmax(120px, 0.8fr) minmax(
      120px,
      0.6fr
    );
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  color: #111827;
}

.admin-table__row--header {
  background: #eef0f8;
  font-weight: 700;
}

.admin-table__row:last-child {
  border-bottom: none;
}

.admin-table__row small {
  display: block;
  color: #6b7280;
}

.admin-table__row.is-hidden {
  display: none;
}

.admin-table--ticket-orders .admin-table__row {
  grid-template-columns:
    minmax(110px, 0.7fr)
    minmax(140px, 1fr)
    minmax(170px, 1.2fr)
    minmax(110px, 0.6fr)
    minmax(200px, 1.4fr)
    minmax(150px, 1fr)
    minmax(130px, 0.8fr)
    minmax(130px, 0.8fr);
}

.admin-table--donations .admin-table__row {
  grid-template-columns:
    minmax(120px, 0.8fr)
    minmax(120px, 0.8fr)
    minmax(160px, 1fr)
    minmax(200px, 1.2fr)
    minmax(220px, 1.6fr)
    minmax(80px, 0.5fr)
    minmax(120px, 0.7fr)
    minmax(200px, 1fr);
}

.admin-receipt-frame {
  width: 100%;
  min-height: 80vh;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
}

.admin-ticket-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.admin-ticket-filter {
  border: none;
  background: rgba(15, 23, 42, 0.1);
  color: #111827;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.admin-ticket-filter.is-active {
  background: #111827;
  color: #fff;
}

.admin-gallery-panel.is-hidden {
  display: none;
}

.admin-tab.is-hidden {
  display: none;
}

.admin-media-picker__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.admin-media-picker__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 4px;
}

.admin-media-picker__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(30, 30, 30, 0.08);
  font-size: 13px;
}

.admin-media-picker__pill a {
  color: inherit;
  text-decoration: none;
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-media-picker__pill a:hover,
.admin-media-picker__pill a:focus {
  text-decoration: underline;
}

.admin-media-picker__preview-link {
  color: inherit;
  text-decoration: none;
  max-width: 100%;
  display: inline-block;
}

.admin-media-picker__preview-link:hover,
.admin-media-picker__preview-link:focus {
  text-decoration: underline;
}

.admin-media-picker__thumb {
  width: 84px;
  height: 84px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: rgba(15, 23, 42, 0.06);
  margin: 6px 0 4px;
}

.admin-media-picker__thumb[hidden] {
  display: none;
}

.admin-media-picker__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-media-picker__pill button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.admin-media-picker__preview {
  position: absolute;
  z-index: 2000;
  padding: 8px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}

.admin-media-picker__preview.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.admin-media-picker__preview img {
  display: none;
  max-width: 240px;
  max-height: 240px;
  border-radius: 6px;
}

.admin-media-picker__preview video {
  display: none;
  max-width: 240px;
  max-height: 240px;
  border-radius: 6px;
}

.admin-media-picker__preview img.is-visible,
.admin-media-picker__preview video.is-visible {
  display: block;
}

.admin-media-picker small {
  display: block;
  color: #6f6f6f;
}

.admin-panel {
  color: var(--primary);
}

.admin-article-select select {
  border: none;
  border-radius: 8px;
  padding: 8px 10px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #d3d6e6;
  color: var(--text-muted);
}

.admin-article-grid {
  display: flex;
  gap: 18px;
  padding-bottom: 24px;
  flex-wrap: wrap;
  flex-direction: row;
}

.admin-article-card {
  position: relative;
  width: 320px;
}

.admin-article-card__actions {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.admin-article-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  pointer-events: auto;
  color: #1b2230;
}

.admin-article-card__delete {
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  cursor: pointer;
  pointer-events: auto;
  color: #1b2230;
}

.admin-article-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.admin-article-modal.is-hidden {
  display: none;
}

.admin-article-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.admin-article-modal__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  width: min(520px, 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.admin-article-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.admin-article-modal__close {
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.admin-article-modal__options {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.admin-film-select select {
  border: none;
  border-radius: 8px;
  padding: 8px 10px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #d3d6e6;
  color: var(--text-muted);
}

.admin-ticket-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
}

.admin-ticket-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  width: 300px;
  background: beige;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  color: inherit;
  text-decoration: none;
  position: relative;
}

.admin-ticket-card.is-hidden {
  display: none;
}

.admin-ticket-card__title {
  font-weight: 700;
  color: #1f2937;
}

.admin-ticket-card__meta {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-ticket-card__description {
  font-size: 14px;
  color: #4b5563;
}

.admin-ticket-card__price {
  font-weight: 600;
  color: #111827;
}

.admin-badge-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-badge-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
}

.admin-badge-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.admin-badge-option__preview {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--badge-color, #e5e7eb);
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.admin-badge-option__letter {
  font-size: 9px;
  font-weight: 700;
  color: var(--badge-text-color, #111827);
}

.admin-badge-option input:checked + .admin-badge-option__preview {
  box-shadow:
    0 0 0 2px rgba(17, 24, 39, 0.2),
    inset 0 0 0 2px rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}

.admin-ticket-card__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.admin-ticket-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  color: #1b2230;
}

.admin-ticket-card__delete {
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  cursor: pointer;
  color: #1b2230;
}

.admin-ticket-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-ticket-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.admin-ticket-modal.is-hidden {
  display: none;
}

.admin-ticket-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
}

.admin-ticket-modal__dialog {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  width: min(520px, 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.admin-ticket-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.admin-ticket-modal__close {
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.admin-ticket-modal__options {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.admin-film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  padding-bottom: 24px;
}

.admin-film-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.admin-film-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.admin-film-card__thumb {
  width: 100%;
  padding-top: 56%;
  border-radius: 12px;
  background-color: #f2f2f2;
  background-size: cover;
  background-position: center;
}

.admin-film-card__title {
  font-weight: 700;
  color: #1f2937;
}

.admin-film-card__actions {
  position: absolute;
  inset: 12px 12px auto 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.admin-film-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  pointer-events: auto;
  color: #1b2230;
}

.admin-film-card__delete {
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  cursor: pointer;
  pointer-events: auto;
  color: #1b2230;
}

.admin-film-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.admin-film-modal.is-hidden {
  display: none;
}

.admin-film-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.admin-film-modal__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  width: min(520px, 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.admin-film-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.admin-film-modal__close {
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.admin-film-modal__options {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.admin-gallery-selector {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.admin-gallery-selector.is-hidden {
  display: none;
}

.admin-gallery-selector__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.admin-gallery-selector__modal {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px;
  width: min(960px, 100%);
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.admin-gallery-selector__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e7e7e7;
}

.admin-gallery-selector__close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #1b2230;
}

.admin-gallery-selector__tabs {
  display: flex;
  gap: 12px;
  padding: 12px 20px 0;
}

.admin-gallery-selector__panel {
  padding: 20px;
  overflow-y: auto;
}

.admin-gallery-selector__panel.is-hidden {
  display: none;
}

.admin-gallery-selector__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.admin-gallery-selector__item {
  border: 1px solid #e4e4e4;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.admin-gallery-selector__item img,
.admin-gallery-selector__item video {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.admin-gallery-selector__item span {
  font-size: 12px;
  color: #333;
  word-break: break-word;
}

.admin-gallery-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-gallery-grid {
  columns: 3;
  column-gap: 20px;
}

.admin-gallery-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  break-inside: avoid;
  margin-bottom: 20px;
}

.admin-gallery-card.is-dragging {
  opacity: 0.6;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.16);
}

.admin-gallery-card__handle {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 1;
  border: none;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.8);
  color: #fff;
  font-size: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.admin-gallery-card__handle:active {
  cursor: grabbing;
}

.admin-gallery-card img,
.admin-gallery-card video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  background: #111;
}

.admin-gallery-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #1f2937;
}

.admin-gallery-meta p {
  margin: 0;
}

.admin-gallery-visibility {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-gallery-visibility label {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(17, 24, 39, 0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
}

.admin-gallery-visibility input[type="checkbox"] {
  accent-color: #d13e3e;
}

.admin-gallery-delete {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
}

.admin-gallery-delete button {
  border: none;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.admin-empty {
  margin: 0;
  color: #1f2937;
}

.admin-button {
  background: #d13e3e;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.admin-upload-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.78);
  padding: 20px;
}

.admin-upload-overlay.is-hidden {
  display: none;
}

.admin-upload-overlay__dialog {
  background: rgba(15, 23, 42, 0.92);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: #fff;
  min-width: min(360px, 90vw);
}

.admin-upload-overlay__title {
  font-weight: 700;
  text-align: center;
}

.admin-upload-overlay__spinner {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  animation: adminUploadSpin 1s linear infinite;
}

.admin-upload-overlay__progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.admin-upload-overlay__percent {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.admin-upload-overlay__status {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.admin-upload-overlay__bar {
  width: 100%;
  max-width: 320px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.admin-upload-overlay__bar-fill {
  height: 100%;
  width: 0%;
  background: #fff;
  transition: width 0.2s ease;
}

.admin-downloads {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-downloads__row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(200px, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.admin-downloads__row input[type="text"],
.admin-downloads__row input[type="file"] {
  width: 100%;
}

.admin-downloads__preview {
  font-size: 12px;
  color: var(--text-soft);
  text-decoration: underline;
}

@keyframes adminUploadSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 960px) {
  .admin-gallery-grid {
    columns: 2;
  }
}

@media (max-width: 640px) {
  .admin-gallery-grid {
    columns: 1;
  }

  .festival-nav__cta {
    font-size: 10px;
  }
}

/* === Cookie Banner (moved from /cookie_banner/css/cookie-banner.css) === */
/* Cookie banner visibility (verhindert Konflikte mit .cookie-modal) */
#cookie-banner.hidden,
.cookie-modal.hidden {
  display: none !important;
}

#cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 1000;
  background: #fff;
  color: #141414;
  border-top: 1px solid #ddd;
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.12);
}

.cookie-banner__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
}

.cookie-banner__close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #333;
}

.cookie-banner__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.cookie-banner__text {
  margin: 0;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.cookie-banner__button {
  border: none;
  border-radius: 10px;
  padding: 0.55rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner__button--accept {
  background: #0f9f5a;
  color: #fff;
}

.cookie-banner__button--necessary {
  background: #ececec;
  color: #111;
}

.cookie-banner__button--settings {
  background: #1c1c1c;
  color: #fff;
}

.cookie-banner__legal-links {
  margin: 0.8rem 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.92rem;
}

.cookie-banner__legal-links a {
  color: #8c1f00;
  text-decoration: underline;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal__panel {
  width: min(900px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  color: #111;
  border-radius: 16px;
  padding: 1rem;
  position: relative;
}

.cookie-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal__description {
  margin-bottom: 1rem;
}

.cookie-modal__categories {
  display: grid;
  gap: 0.8rem;
}

.cookie-category {
  border: 1px solid #dfdfdf;
  border-radius: 12px;
  padding: 0.8rem;
}

.cookie-category__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.cookie-category__head h3 {
  margin: 0;
  font-size: 1rem;
}

.cookie-category__badge {
  background: #efefef;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.78rem;
}

.cookie-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cookie-modal__services-title {
  margin: 1.2rem 0 0.6rem;
}

.cookie-modal__services details {
  border: 1px solid #dfdfdf;
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.5rem;
}

.cookie-modal__services summary {
  cursor: pointer;
  font-weight: 600;
}

.cookie-modal__services p {
  margin: 0.4rem 0;
}

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.cookie-modal__feedback {
  min-height: 1.2rem;
  margin: 0.75rem 0 0;
  color: #0d7e46;
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .cookie-banner__inner {
    padding: 0.8rem;
  }

  .cookie-modal__panel {
    padding: 0.9rem;
  }

  .cookie-banner__button {
    width: 100%;
  }
}
