:root {
  --petrol: #055f67;
  --orange: #fab52d;
  --turquoise: #79a3a4;
  --black: #1f1f1f;
  --night: #071f22;
  --night-2: #092b2f;
  --fog: #f2f2f2;
  --muted: #b9c9c9;
  --line: rgba(242, 242, 242, 0.14);
  --max: 1180px;
  --plus-pattern: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2379a3a4' opacity='.22'%3E%3Cpath d='M270.77 512.22l.16-183.97c2.29-81.88-22.36-90.34-83.82-90.47L0 238.61l.18 41.15 180.78-.8c44.86-.01 48.09 8.9 48.28 48.15l-.14 185.1'/%3E%3Cpath d='M242.7.22l-1.13 149.43c-2.82 81.87 21.77 90.49 83.22 91.01l187.12.4.09-41.15-180.78-.39c-44.8-.28-48.02-9.19-47.96-48.31L284.38.25'/%3E%3C/g%3E%3C/svg%3E");
}

@font-face {
  font-family: "Dazzle Unicase";
  src: url("assets/dazzle-unicase-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Dazzle Unicase";
  src: url("assets/dazzle-unicase-bold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zekton";
  src: url("assets/zekton-rg.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

section,
#booking {
  scroll-margin-top: 96px;
}

#datenschutz,
#bildnachweise,
#impressum {
  scroll-margin-top: 112px;
}

#fragen {
  scroll-margin-top: 140px;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--fog);
  background: var(--night);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

@media (pointer: fine) {
  html,
  body,
  a,
  button,
  summary,
  label,
  input[type="button"],
  input[type="submit"],
  input[type="checkbox"],
  input[type="radio"],
  input[type="file"],
  [role="button"] {
    cursor: url("assets/cursor-plus.svg") 16 16, auto;
  }

  input,
  textarea,
  select {
    cursor: auto;
  }
}

.tap-plus {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 34px;
  height: 34px;
  pointer-events: none;
  background: url("assets/cursor-plus.svg") center / contain no-repeat;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.34));
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.68) rotate(-10deg);
  animation: tap-plus-pop 520ms ease-out forwards;
}

@keyframes tap-plus-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.58) rotate(-14deg);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.25) rotate(12deg);
  }
}

body.nav-open {
  overflow: hidden;
}

body.consent-open {
  overflow: hidden;
}

body.consent-open .sticky-actions,
body.consent-open .mobile-bar,
body.consent-open .chatbot-panel {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

body.modal-open {
  overflow: hidden;
}

body.jobs-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(340px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(242, 242, 242, 0.09);
  background: rgba(7, 31, 34, 0.72);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 31, 34, 0.94);
  border-color: rgba(250, 181, 45, 0.24);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand img {
  width: 128px;
  height: 58px;
  object-fit: contain;
}

.brand strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.brand small {
  display: block;
  max-width: 410px;
  margin-top: 5px;
  color: var(--muted);
  font-family: "Zekton", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #d9e3e3;
  font-size: 14px;
}

.site-nav a {
  opacity: 0.82;
}

.site-nav a:hover {
  color: var(--orange);
  opacity: 1;
}

.header-cta,
.button,
.sticky-action,
.mobile-bar a,
.mobile-bar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 4px;
  font-family: inherit;
  font-weight: 760;
}

.header-cta {
  border: 0;
  padding: 0 18px;
  color: #152222;
  background: var(--orange);
  cursor: pointer;
}

.header-button {
  font-size: 14px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  color: var(--fog);
  background: rgba(255, 255, 255, 0.04);
  width: 46px;
  height: 42px;
  border-radius: 4px;
  padding: 0;
  place-items: center;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span + span {
  margin-top: 0;
}

.nav-toggle span:nth-child(2) {
  transform: rotate(90deg);
}

.nav-toggle span:nth-child(3) {
  display: none;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 1;
  transform: rotate(135deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 68px) 62px;
}

.parallax-layer {
  position: absolute;
  inset: -26% 0;
  background-position: center;
  background-size: cover;
  will-change: transform;
}

.hero-media {
  background-color: #071f22;
  filter: saturate(0.92) contrast(1.08) brightness(0.64);
}

.hero-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 950ms ease, transform 4200ms ease;
}

.hero-gallery img.is-active {
  opacity: 1;
  transform: scale(1.12);
}

.hero-gallery img[src*="hero-spectacle-01"],
.hero-gallery img[src*="hero-spectacle-02"],
.hero-gallery img[src*="hero-spectacle-03"],
.hero-gallery img[src*="hero-spectacle-04"],
.hero-gallery img[src*="hero-spectacle-05"],
.hero-gallery img[src*="hero-spectacle-09"],
.hero-gallery img[src*="hero-spectacle-11"] {
  object-position: center center;
}

.hero-gallery img[src*="hero-spectacle-06"] {
  object-position: center 38%;
}

.hero-gallery img[src*="hero-spectacle-08"] {
  object-position: center 48%;
}

.hero-gallery img[src*="hero-spectacle-10"] {
  object-position: center 46%;
}

.hero-gallery img[src*="hero-neu-le-20230713"] {
  object-position: center 52%;
}

.hero-gallery img[src*="hero-spectacle-14"] {
  object-position: center 78%;
}

.hero-gallery img[src*="hero-spectacle-14"].is-active {
  transform: scale(1.06);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 31, 34, 0.98) 0%, rgba(7, 31, 34, 0.76) 42%, rgba(7, 31, 34, 0.25) 100%),
    linear-gradient(0deg, rgba(7, 31, 34, 0.95) 0%, rgba(7, 31, 34, 0.18) 52%, rgba(7, 31, 34, 0.74) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-family: "Zekton", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-family: "Dazzle Unicase", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5.8vw, 74px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: #d6e0df;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.hero-actions,
.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-header > *,
.split > *,
.why-layout > *,
.team-head > *,
.references-head > *,
.faq-head > *,
.currently-inner > *,
.contact-panel > *,
.service-grid > *,
.partner-groups > *,
.footer > * {
  min-width: 0;
}

.button {
  appearance: none;
  padding: 0 20px;
  border: 1px solid transparent;
  color: inherit;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.icon-link {
  gap: 9px;
}

.icon-link > span[aria-hidden="true"] {
  display: block;
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: currentColor;
  font-weight: 400;
}

.icon-whatsapp > span[aria-hidden="true"] {
  background: url("assets/icon-whatsapp.svg") center / contain no-repeat;
}

.icon-whatsapp > span[aria-hidden="true"]::before {
  content: none;
}

.icon-whatsapp > span[aria-hidden="true"]::after {
  content: none;
}

.icon-calendar > span[aria-hidden="true"] {
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon-calendar > span[aria-hidden="true"]::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 6px;
  height: 2px;
  background: currentColor;
}

.icon-calendar > span[aria-hidden="true"]::after {
  content: "";
  position: absolute;
  left: 5px;
  top: -4px;
  width: 8px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.icon-chatbot > span[aria-hidden="true"] {
  border: 2px solid currentColor;
  border-radius: 8px;
}

.icon-chatbot > span[aria-hidden="true"]::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 7px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.icon-chatbot > span[aria-hidden="true"]::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: -6px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: transparent;
  transform: rotate(45deg);
}

.icon-mail > span[aria-hidden="true"] {
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7h24a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2Zm1.8 3.2v1.1L16 17.5l10.2-6.2v-1.1H5.8Zm20.4 4.3-9.1 5.5a2.1 2.1 0 0 1-2.2 0l-9.1-5.5v7.1h20.4v-7.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7h24a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2Zm1.8 3.2v1.1L16 17.5l10.2-6.2v-1.1H5.8Zm20.4 4.3-9.1 5.5a2.1 2.1 0 0 1-2.2 0l-9.1-5.5v7.1h20.4v-7.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon-mail > span[aria-hidden="true"]::before {
  content: none;
}

.icon-mail > span[aria-hidden="true"]::after {
  content: none;
}

.icon-linkedin > span[aria-hidden="true"],
.icon-instagram > span[aria-hidden="true"] {
  background: currentColor;
}

.icon-linkedin > span[aria-hidden="true"] {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.45 20.45h-3.56v-5.57c0-1.33-.02-3.04-1.85-3.04-1.86 0-2.14 1.45-2.14 2.95v5.66H9.35V8.99h3.41v1.56h.05c.47-.9 1.64-1.85 3.37-1.85 3.61 0 4.27 2.38 4.27 5.46v6.29ZM5.34 7.42a2.06 2.06 0 1 1 0-4.12 2.06 2.06 0 0 1 0 4.12Zm1.78 13.03H3.56V8.99h3.56v11.46ZM22.23 0H1.76C.79 0 0 .77 0 1.72v20.56C0 23.23.79 24 1.76 24h20.47c.97 0 1.77-.77 1.77-1.72V1.72C24 .77 23.2 0 22.23 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.45 20.45h-3.56v-5.57c0-1.33-.02-3.04-1.85-3.04-1.86 0-2.14 1.45-2.14 2.95v5.66H9.35V8.99h3.41v1.56h.05c.47-.9 1.64-1.85 3.37-1.85 3.61 0 4.27 2.38 4.27 5.46v6.29ZM5.34 7.42a2.06 2.06 0 1 1 0-4.12 2.06 2.06 0 0 1 0 4.12Zm1.78 13.03H3.56V8.99h3.56v11.46ZM22.23 0H1.76C.79 0 0 .77 0 1.72v20.56C0 23.23.79 24 1.76 24h20.47c.97 0 1.77-.77 1.77-1.72V1.72C24 .77 23.2 0 22.23 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon-instagram > span[aria-hidden="true"] {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm8.95 1.5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5ZM12 7.25A4.75 4.75 0 1 1 12 16.75 4.75 4.75 0 0 1 12 7.25Zm0 2A2.75 2.75 0 1 0 12 14.75 2.75 2.75 0 0 0 12 9.25Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm8.95 1.5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5ZM12 7.25A4.75 4.75 0 1 1 12 16.75 4.75 4.75 0 0 1 12 7.25Zm0 2A2.75 2.75 0 1 0 12 14.75 2.75 2.75 0 0 0 12 9.25Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon-linkedin > span[aria-hidden="true"]::before,
.icon-linkedin > span[aria-hidden="true"]::after,
.icon-instagram > span[aria-hidden="true"]::before,
.icon-instagram > span[aria-hidden="true"]::after {
  content: none;
}

.button.primary {
  color: #13201f;
  background: var(--orange);
}

.button.ghost {
  color: var(--fog);
  border-color: rgba(242, 242, 242, 0.28);
  background: rgba(242, 242, 242, 0.06);
}

.hero-status {
  position: absolute;
  right: clamp(18px, 5vw, 68px);
  bottom: 48px;
  z-index: 1;
  width: min(310px, calc(100% - 36px));
  padding: 18px;
  border-left: 3px solid var(--orange);
  background: rgba(5, 95, 103, 0.72);
  backdrop-filter: blur(14px);
}

.hero-status span {
  display: block;
  margin-bottom: 8px;
  color: var(--turquoise);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-status ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.hero-status li {
  color: #dce7e6;
  font-size: 14px;
}

.hero-status li::before {
  content: "+";
  margin-right: 7px;
  color: var(--orange);
  font-weight: 900;
}

.hero-status a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 16px;
  padding: 0 12px;
  border: 1px solid rgba(250, 181, 45, 0.42);
  border-radius: 4px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 130px) clamp(18px, 5vw, 68px);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern);
  background-repeat: no-repeat;
  background-size: 34px 34px, 58px 58px, 24px 24px, 46px 46px, 28px 28px, 64px 64px, 38px 38px, 20px 20px;
  background-position: 9% 20%, 26% 72%, 42% 30%, 58% 80%, 70% 24%, 84% 68%, 92% 18%, 96% 48%;
  opacity: 0.38;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  animation: icon-field-drift 20s ease-in-out infinite alternate;
}

.section > * {
  position: relative;
  z-index: 1;
}

.intro,
.references {
  background:
    radial-gradient(circle at 12% 0%, rgba(121, 163, 164, 0.16), transparent 34%),
    var(--night);
}

.intro::before,
.references::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern);
  background-repeat: no-repeat;
  background-size: 38px 38px, 28px 28px, 64px 64px, 36px 36px, 22px 22px, 52px 52px, 30px 30px, 46px 46px;
  background-position: 8% 18%, 20% 62%, 35% 76%, 49% 32%, 62% 88%, 73% 22%, 86% 66%, 94% 38%;
  opacity: 0.38;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  animation: icon-field-drift 18s ease-in-out infinite alternate;
}

.split,
.why-layout,
.references-head,
.contact-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.split,
.why-layout,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

h2 {
  font-family: "Dazzle Unicase", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(27px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

.intro-copy,
.why p,
.references-head p,
.contact-panel p,
.booking-box p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.references-head .reference-note {
  margin-top: 18px;
  padding-left: 16px;
  border-left: 4px solid var(--orange);
  color: rgba(242, 242, 242, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 16px;
  width: min(var(--max), 100%);
  margin: 42px auto 0;
}

.service-grid:has(.portfolio-details[open]) {
  align-items: start;
}

.service-card,
.booking-box {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(242, 242, 242, 0.045);
}

.service-card {
  min-height: 448px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-toggle {
  position: absolute;
  right: 20px;
  top: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  color: rgba(250, 181, 45, 0.42);
  background: transparent;
  font-size: 0;
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
  animation: service-plus-pulse 5.8s ease-in-out infinite;
}

.service-card:nth-child(2) .service-toggle {
  animation-duration: 6.7s;
  animation-delay: -1.8s;
}

.service-card:nth-child(3) .service-toggle {
  animation-duration: 6.2s;
  animation-delay: -3.4s;
}

.service-toggle-icon::before,
.service-toggle-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 18px rgba(250, 181, 45, 0.16);
  transform: translate(-50%, -50%);
  animation: service-plus-scale 5.8s ease-in-out infinite;
}

.service-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  animation: none;
}

.service-card:nth-child(2) .service-toggle-icon::before {
  animation-duration: 6.7s;
  animation-delay: -1.8s;
}

.service-card:nth-child(3) .service-toggle-icon::before {
  animation-duration: 6.2s;
  animation-delay: -3.4s;
}

.service-toggle:hover,
.service-toggle:focus-visible {
  color: rgba(250, 181, 45, 0.9);
}

.service-card:has(.portfolio-details[open]) .service-toggle {
  color: var(--orange);
  animation-play-state: paused;
}

.service-card:has(.portfolio-details[open]) .service-toggle-icon::before {
  animation-play-state: paused;
}

.service-card:has(.portfolio-details[open]) .service-toggle {
  transform: rotate(45deg) scale(0.96);
}

@keyframes service-plus-pulse {
  0%,
  100% {
    color: rgba(250, 181, 45, 0.44);
    opacity: 0.78;
  }

  42% {
    color: rgba(250, 181, 45, 0.96);
    opacity: 1;
  }

  66% {
    color: rgba(250, 181, 45, 0.62);
    opacity: 0.88;
  }
}

@keyframes service-plus-scale {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.86);
  }

  42% {
    transform: translate(-50%, -50%) scale(1.2);
  }

  66% {
    transform: translate(-50%, -50%) scale(0.98);
  }
}

@keyframes icon-field-drift {
  from {
    transform: translate3d(-4px, 0, 0);
    opacity: 0.15;
  }

  to {
    transform: translate3d(5px, -8px, 0);
    opacity: 0.24;
  }
}

@keyframes icon-panel-drift {
  from {
    background-position: center, 14% 22%, 39% 74%, 62% 18%, 84% 70%, 94% 34%;
  }

  to {
    background-position: center, 13% 25%, 41% 71%, 60% 20%, 86% 67%, 93% 37%;
  }
}

.service-card span,
.reference-grid span,
.booking-box span {
  color: var(--orange);
  font-weight: 800;
}

.booking-box .icon-link > span[aria-hidden="true"] {
  color: currentColor;
  font-weight: 400;
}

.service-card h3 {
  margin: 24px 0 12px;
  font-size: 26px;
}

.service-card p {
  color: #c9d6d6;
  line-height: 1.55;
}

.service-card > p {
  min-height: 170px;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  align-items: start;
  justify-items: start;
}

.service-card li {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(121, 163, 164, 0.24);
  border-radius: 4px;
  color: #d5e1e1;
  background: rgba(5, 95, 103, 0.22);
  font-size: 13px;
}

.service-card li::before {
  content: "+";
  margin-right: 6px;
  color: var(--orange);
  font-weight: 900;
}

.portfolio-details {
  margin-top: 24px;
  border-top: 1px solid rgba(242, 242, 242, 0.1);
  padding-top: 18px;
}

.portfolio-details summary {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(250, 181, 45, 0.34);
  border-radius: 4px;
  color: var(--orange);
  background: rgba(5, 95, 103, 0.18);
  font-weight: 760;
  list-style: none;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.portfolio-details summary::-webkit-details-marker {
  display: none;
}

.portfolio-details summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border: 1px solid rgba(250, 181, 45, 0.38);
  border-radius: 4px;
  color: var(--orange);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  font-size: 15px;
  line-height: 20px;
  animation: detail-plus-pulse 5.4s ease-in-out infinite;
}

.portfolio-details[open] summary::before {
  content: "-";
  animation-play-state: paused;
}

@keyframes detail-plus-pulse {
  0%,
  100% {
    border-color: rgba(250, 181, 45, 0.36);
    box-shadow: 0 0 0 rgba(250, 181, 45, 0);
    color: rgba(250, 181, 45, 0.78);
    transform: scale(0.94);
  }

  44% {
    border-color: rgba(250, 181, 45, 0.86);
    box-shadow: 0 0 16px rgba(250, 181, 45, 0.18);
    color: var(--orange);
    transform: scale(1.1);
  }
}

.portfolio-details summary:hover,
.portfolio-details summary:focus-visible {
  border-color: var(--orange);
  background: rgba(5, 95, 103, 0.28);
}

.portfolio-details div {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.portfolio-details strong {
  color: var(--fog);
  font-size: 13px;
}

.portfolio-details p {
  margin: 0 0 8px;
  color: rgba(242, 242, 242, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.image-break {
  position: relative;
  min-height: clamp(560px, 72svh, 760px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(70px, 8vw, 120px) clamp(18px, 5vw, 68px);
}

.image-break::before,
.field-carousel::before,
.reference-carousel::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 4H44V39' fill='none' stroke='%23fab52d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") top right / 44px 44px no-repeat,
    url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9V44H39' fill='none' stroke='%23fab52d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") bottom left / 44px 44px no-repeat;
}

.field-carousel::before {
  inset: 22px;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 4H44V39' fill='none' stroke='%23fab52d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") top right / 40px 40px no-repeat,
    url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9V44H39' fill='none' stroke='%23fab52d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") bottom left / 40px 40px no-repeat;
}

.control-media {
  background-image: url("assets/control-center-new.jpg");
  background-position: center center;
  filter: saturate(0.76) contrast(1.08) brightness(0.5);
}

.image-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 31, 34, 0.92), rgba(7, 31, 34, 0.22) 58%, rgba(5, 95, 103, 0.52));
}

.image-break-content {
  position: relative;
  z-index: 3;
  width: min(900px, 100%);
  margin-top: clamp(20px, 5vw, 70px);
}

.image-break-content p {
  margin-bottom: 16px;
  font-family: "Dazzle Unicase", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 6.2vw, 86px);
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
}

.image-break-content span {
  display: block;
  color: var(--turquoise);
  font-size: clamp(18px, 2vw, 25px);
}

.image-break-cta {
  margin-top: 28px;
}

.why {
  background: #071719;
}

.why .section-kicker {
  color: var(--orange);
}

.why-layout {
  align-items: center;
}

.field-carousel {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #0a272b;
}

.field-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  filter: saturate(0.72) contrast(1.02) brightness(0.76);
  transition: opacity 850ms ease, transform 4300ms ease;
}

.field-carousel img.is-active {
  opacity: 1;
  transform: scale(1.075);
}

.field-carousel img.field-rotate-ccw {
  transform: rotate(-90deg) scale(1.34);
}

.field-carousel img.field-rotate-ccw.is-active {
  transform: rotate(-90deg) scale(1.42);
}

.field-carousel img[src*="mud-smiles"] {
  object-fit: cover;
  object-position: center 22%;
  background: #041214;
  transform: none;
}

.field-carousel img[src*="mud-smiles"].is-active {
  transform: none;
}

.field-carousel img[src*="crew-break"],
.field-carousel img[data-src*="crew-break"] {
  object-position: center 42%;
}

.field-carousel img[src*="crew-break-neu-le"],
.field-carousel img[data-src*="crew-break-neu-le"] {
  object-position: center 52%;
}

.field-carousel img[src*="terrain-quad"],
.field-carousel img[data-src*="terrain-quad"] {
  object-position: center 46%;
}

.field-carousel img[src*="pluseins_Team_1"],
.field-carousel img[data-src*="pluseins_Team_1"] {
  object-position: center 42%;
}

.field-carousel img[src*="field-operations"],
.field-carousel img[data-src*="field-operations"] {
  object-position: center 14%;
}

.field-carousel img[src*="pluseins_Team_5"],
.field-carousel img[data-src*="pluseins_Team_5"] {
  object-position: center 34%;
}

.field-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 31, 34, 0.08), rgba(7, 31, 34, 0.52));
}

.field-stamp {
  position: absolute;
  left: 66px;
  bottom: 48px;
  z-index: 3;
  display: grid;
  gap: 6px;
  width: min(420px, calc(100% - 158px));
  padding: 16px 18px;
  background: rgba(4, 18, 20, 0.74);
  backdrop-filter: blur(12px);
}

.field-stamp.is-top {
  top: 48px;
  bottom: auto;
}

.field-stamp strong {
  font-family: "Dazzle Unicase", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(26px, 3.1vw, 42px);
  line-height: 1;
  color: var(--orange);
}

.field-stamp span {
  color: #dbe5e4;
  line-height: 1.35;
}

.field-dots {
  position: absolute;
  right: 66px;
  bottom: 52px;
  z-index: 4;
  display: flex;
  gap: 7px;
}

.field-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(242, 242, 242, 0.62);
  border-radius: 999px;
  background: rgba(242, 242, 242, 0.12);
  cursor: pointer;
}

.field-dots button.is-active {
  width: 24px;
  border-color: var(--orange);
  background: var(--orange);
}

.metric-row {
  margin-top: 28px;
}

.metric-row a {
  min-width: 126px;
  padding: 18px;
  border-top: 2px solid var(--orange);
  background: rgba(5, 95, 103, 0.28);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.metric-row a:hover,
.metric-row a:focus-visible {
  border-color: var(--fog);
  background: rgba(5, 95, 103, 0.46);
  transform: translateY(-2px);
}

.metric-row a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.metric-row strong {
  display: block;
  font-size: 30px;
}

.metric-row span {
  color: var(--turquoise);
}

.backstage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.backstage-actions .button {
  color: #13201f;
  border-color: var(--orange);
  background: var(--orange);
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 34px);
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 20, 0.76);
  backdrop-filter: blur(14px);
}

.gallery-panel {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  max-height: min(88svh, 840px);
  overflow: auto;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(121, 163, 164, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 31, 34, 0.98), rgba(6, 35, 38, 0.98)),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern);
  background-repeat: no-repeat;
  background-size: auto, 34px 34px, 52px 52px, 24px 24px;
  background-position: center, 88% 10%, 7% 82%, 42% 18%;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.gallery-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.gallery-head h2 {
  margin-bottom: 10px;
}

.gallery-head p:not(.section-kicker) {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.55;
}

.gallery-close {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(250, 181, 45, 0.42);
  border-radius: 6px;
  color: var(--orange);
  background: rgba(242, 242, 242, 0.04);
  font-size: 34px;
  line-height: 1;
  transform: rotate(45deg);
  cursor: pointer;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(46px, 5.4vw, 76px);
  align-items: stretch;
  gap: clamp(10px, 1.2vw, 16px);
}

.gallery-grid figure {
  position: relative;
  grid-column: span 3;
  grid-row: span 3;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #0a272b;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition: filter 180ms ease;
  cursor: zoom-in;
}

.gallery-grid figure:hover,
.gallery-grid figure:focus-visible {
  filter: brightness(1.08);
}

.gallery-grid figure:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.gallery-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02) brightness(0.86);
}

.gallery-grid figure:nth-child(1) {
  grid-column: 1 / span 5;
  grid-row: span 4;
}

.gallery-grid figure:nth-child(2) {
  grid-column: 6 / span 4;
  grid-row: span 3;
}

.gallery-grid figure:nth-child(3) {
  grid-column: 10 / span 3;
  grid-row: span 5;
}

.gallery-grid figure:nth-child(4) {
  grid-column: 1 / span 3;
  grid-row: span 3;
}

.gallery-grid figure:nth-child(5) {
  grid-column: 4 / span 6;
  grid-row: span 3;
}

.gallery-grid figure:nth-child(6) {
  grid-column: 10 / span 3;
  grid-row: span 3;
}

.gallery-grid figure:nth-child(7) {
  grid-column: 1 / span 4;
  grid-row: span 4;
}

.gallery-grid figure:nth-child(8) {
  grid-column: 5 / span 3;
  grid-row: span 4;
}

.gallery-grid figure:nth-child(9) {
  grid-column: 8 / span 5;
  grid-row: span 4;
}

.gallery-grid figure:nth-child(10) {
  grid-column: 1 / span 5;
  grid-row: span 3;
}

.gallery-grid figure:nth-child(11) {
  grid-column: 6 / span 7;
  grid-row: span 3;
}

.gallery-grid figcaption {
  display: none;
}

.gallery-grid img[src*="Tobias_und_Gina"],
.gallery-grid img[data-src*="Tobias_und_Gina"] {
  object-position: center 42%;
}

.gallery-grid img[src*="Heiner_und_Laura_3"],
.gallery-grid img[data-src*="Heiner_und_Laura_3"] {
  object-position: center 42%;
}

.gallery-grid img[src*="Gina_und_Lisa.jpg"],
.gallery-grid img[data-src*="Gina_und_Lisa.jpg"] {
  object-position: center 28%;
}

.gallery-grid img[src*="Gina_und_Laura"],
.gallery-grid img[data-src*="Gina_und_Laura"] {
  object-position: center 32%;
}

.gallery-grid img[src*="Heiner_und_Tobias"],
.gallery-grid img[data-src*="Heiner_und_Tobias"] {
  object-position: center 44%;
}

.gallery-grid img[src*="Tobias_und_Yorrick"],
.gallery-grid img[data-src*="Tobias_und_Yorrick"] {
  object-position: center 30%;
}

.gallery-grid img[src*="Gina_und_Lisa_2"],
.gallery-grid img[data-src*="Gina_und_Lisa_2"] {
  object-position: center 44%;
}

.gallery-grid img[src*="Heiner_und_Gina"],
.gallery-grid img[data-src*="Heiner_und_Gina"] {
  object-position: center 42%;
}

.gallery-grid img[src*="Heiner_und_Fritz"],
.gallery-grid img[data-src*="Heiner_und_Fritz"] {
  object-position: center 18%;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 52px);
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 18, 20, 0.86);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.gallery-lightbox-frame {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(1120px, 100%);
  max-height: min(86svh, 820px);
}

.gallery-lightbox-frame img {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  max-width: 100%;
  max-height: min(76svh, 720px);
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
}

.gallery-lightbox-frame p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(250, 181, 45, 0.42);
  border-radius: 6px;
  color: var(--orange);
  background: rgba(7, 31, 34, 0.82);
  cursor: pointer;
}

.gallery-lightbox-close {
  position: absolute;
  top: -10px;
  right: 0;
  width: 46px;
  height: 46px;
  font-size: 34px;
  line-height: 1;
  transform: rotate(45deg);
}

.gallery-lightbox-nav {
  width: 54px;
  height: 72px;
  font-size: 28px;
}

.gallery-lightbox-prev {
  grid-column: 1;
  grid-row: 1;
}

.gallery-lightbox-next {
  grid-column: 3;
  grid-row: 1;
}

.team {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #06191b, #08282c);
}

.team::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern);
  background-repeat: no-repeat;
  background-size: 30px 30px, 56px 56px, 24px 24px, 44px 44px, 34px 34px, 64px 64px, 28px 28px, 48px 48px;
  background-position: 8% 16%, 19% 74%, 36% 28%, 54% 90%, 71% 36%, 84% 70%, 94% 18%, 93% 48%;
  opacity: 0.36;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  animation: icon-field-drift 20s ease-in-out infinite alternate-reverse;
}

.team > * {
  position: relative;
  z-index: 1;
}

.team-head {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.team-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(250, 181, 45, 0.4);
  border-radius: 4px;
  color: var(--orange);
  background: rgba(4, 18, 20, 0.36);
  font-weight: 800;
}

.team-grid {
  width: min(var(--max), 100%);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.team-card {
  position: relative;
  min-height: 390px;
  border: 1px solid rgba(121, 163, 164, 0.22);
  border-radius: 6px;
  background: rgba(242, 242, 242, 0.04);
  overflow: hidden;
  cursor: pointer;
  perspective: 1000px;
}

.team-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #041214;
}

.team-photo::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 3H33V28' fill='none' stroke='%23fab52d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") top right / 32px 32px no-repeat,
    url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8V33H28' fill='none' stroke='%23fab52d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") bottom left / 32px 32px no-repeat;
}

.team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.03) brightness(0.78);
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 320ms ease, transform 650ms ease;
  backface-visibility: hidden;
}

.team-character[src*="Heiner_Schiemann_3"],
.team-character[data-src*="Heiner_Schiemann_3"] {
  object-position: 70% center;
}

.team-character[src*="Laura_Ermini_3"] {
  object-position: center 36%;
}

.team-card:not(.is-flipped) .team-normal,
.team-card.is-flipped .team-character {
  opacity: 1;
  transform: scale(1.06) rotateY(0deg);
}

.team-card.is-flipped .team-normal {
  transform: scale(1.03) rotateY(-10deg);
}

.team-card:not(.is-flipped) .team-character {
  transform: scale(1.03) rotateY(10deg);
}

.team-flip {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(250, 181, 45, 0.58);
  border-radius: 4px;
  color: var(--orange);
  background: rgba(4, 18, 20, 0.78);
  font-size: 0;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  animation: team-plus-pulse 6.4s ease-in-out infinite;
}

.team-flip::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.team-flip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 24px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.team-flip:hover {
  border-color: var(--orange);
  transform: scale(1.04);
  animation-play-state: paused;
}

.team-card.is-flipped .team-flip {
  color: var(--orange);
  background: rgba(4, 18, 20, 0.78);
  animation: none;
}

.team-card.is-flipped .team-flip::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.team-card.is-flipped .team-flip::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

@keyframes team-plus-pulse {
  0%,
  100% {
    border-color: rgba(250, 181, 45, 0.38);
    color: rgba(250, 181, 45, 0.78);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    transform: scale(0.98);
  }

  46% {
    border-color: rgba(250, 181, 45, 0.86);
    color: var(--orange);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22), 0 0 20px rgba(250, 181, 45, 0.16);
    transform: scale(1.06);
  }
}

.team-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 16px;
  background: linear-gradient(180deg, rgba(4, 18, 20, 0.02), rgba(4, 18, 20, 0.82) 32%, rgba(4, 18, 20, 0.94));
}

.team-copy > span {
  color: var(--orange);
  font-weight: 800;
}

.team-copy h3 {
  margin: 10px 0 0;
  font-size: 25px;
  line-height: 1;
}

.team-copy h3 small {
  display: inline-block;
  margin-left: 4px;
  color: rgba(242, 242, 242, 0.74);
  font-family: "Zekton", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.58em;
  font-weight: 400;
}

.team-copy p {
  display: none;
  color: #c9d6d6;
  font-size: 13px;
  line-height: 1.45;
}

.team-claim {
  color: #f0ddaa !important;
  font-weight: 800;
}

.team-card:not(.is-flipped) .team-claim {
  display: block;
  max-width: 88%;
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.25;
  text-transform: uppercase;
}

.team-card.is-flipped .team-copy {
  background: linear-gradient(180deg, rgba(4, 18, 20, 0), rgba(4, 18, 20, 0.72) 34%, rgba(4, 18, 20, 0.93));
}

.team-card.is-flipped .team-copy > span {
  display: none;
}

.team-card.is-flipped .team-copy h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--orange);
}

.team-card.is-flipped .team-copy p {
  display: block;
  margin-bottom: 8px;
}

.team-card.is-flipped .team-copy .team-claim {
  display: none;
}

.team-card.is-flipped .team-bio {
  display: none;
}

.team-card.is-flipped .team-bio[hidden] {
  display: none !important;
}

.team-card.is-flipped.is-expanded .team-bio {
  display: block;
}

.team-character-note {
  color: #f0ddaa !important;
  font-weight: 800;
}

.team-card:not(.is-flipped) .team-character-note {
  display: none;
}

.team-card.is-flipped:not(.is-expanded) .team-character-note {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.team-more {
  display: none;
  min-height: 30px;
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  color: var(--orange);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.team-card.is-flipped .team-more {
  display: flex;
  align-items: center;
  width: max-content;
}

.team-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.team-actions a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border: 1px solid rgba(121, 163, 164, 0.25);
  border-radius: 4px;
  color: #d5e1e1;
  background: rgba(5, 95, 103, 0.18);
  font-size: 0;
}

.team-actions a.icon-link {
  gap: 0;
}

.team-actions a > span[aria-hidden="true"] {
  width: 19px;
  height: 19px;
}

.team-actions a.icon-mail > span[aria-hidden="true"] {
  width: 23px;
  height: 23px;
}

.team-actions a:first-child {
  color: #13201f;
  border-color: var(--orange);
  background: var(--orange);
}

.team-card-ghost {
  background:
    linear-gradient(180deg, rgba(5, 95, 103, 0.18), rgba(242, 242, 242, 0.035));
}

.references-head {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 44px;
}

.reference-carousel {
  position: relative;
  width: min(var(--max), 100%);
  min-height: 520px;
  margin: 42px auto 0;
  overflow: hidden;
  border: 1px solid rgba(121, 163, 164, 0.22);
  border-radius: 6px;
  background: #06191b;
}

.reference-slide {
  position: absolute;
  inset: 0;
  min-height: 520px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.reference-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.reference-slide img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08) brightness(0.62);
}

.reference-image-pv {
  object-position: center center;
}

.reference-image-no {
  object-position: center center;
}

.reference-image-sh {
  object-position: center 28%;
}

.reference-image-wcd {
  object-position: center 76%;
  transform: scale(1.18);
  transform-origin: center 76%;
}

.reference-image-wug {
  object-position: center 56%;
}

.reference-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 31, 34, 0.04), rgba(7, 31, 34, 0.46) 52%, rgba(7, 31, 34, 0.84)),
    linear-gradient(0deg, rgba(7, 31, 34, 0.84), rgba(7, 31, 34, 0.06) 46%);
}

.reference-mark {
  position: absolute;
  left: 24px;
  top: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(360px, calc(100% - 48px));
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(250, 181, 45, 0.62);
  color: var(--orange);
  background: rgba(4, 18, 20, 0.7);
  font-family: "Dazzle Unicase", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 800;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.reference-logo {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: min(300px, calc(100% - 48px));
  min-height: 64px;
  padding: 11px 15px 10px;
  border-color: rgba(242, 242, 242, 0.36);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(4, 18, 20, 0.84), rgba(5, 95, 103, 0.62)),
    radial-gradient(circle at 100% 0%, rgba(250, 181, 45, 0.22), transparent 44%);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
}

.reference-logo span {
  letter-spacing: 0;
  text-transform: uppercase;
}

.reference-logo small {
  max-width: 100%;
  color: rgba(250, 181, 45, 0.88);
  font-family: "Zekton", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.reference-logo-pv span,
.reference-logo-sh span {
  font-size: clamp(20px, 2.3vw, 34px);
}

.reference-logo-no {
  color: #f5f8f8;
  background:
    linear-gradient(135deg, rgba(4, 18, 20, 0.86), rgba(7, 31, 34, 0.74)),
    linear-gradient(90deg, transparent, rgba(250, 181, 45, 0.18), transparent);
}

.reference-logo-wcd span {
  max-width: 220px;
  font-size: clamp(18px, 2vw, 30px);
}

.reference-logo-wug {
  border-color: rgba(121, 163, 164, 0.48);
}

.reference-credit {
  position: absolute;
  left: 26px;
  bottom: 78px;
  z-index: 3;
  color: rgba(242, 242, 242, 0.48);
  font-size: 10px;
  line-height: 1;
  text-decoration: none;
  background: rgba(4, 18, 20, 0.38);
  padding: 6px 7px;
  border-radius: 3px;
}

a.reference-credit:hover {
  color: rgba(242, 242, 242, 0.82);
}

.reference-copy {
  position: absolute;
  right: 26px;
  bottom: 92px;
  z-index: 3;
  width: min(560px, calc(100% - 52px));
  padding: 24px;
  background: rgba(4, 18, 20, 0.72);
  backdrop-filter: blur(14px);
}

.reference-copy span {
  color: var(--orange);
  font-weight: 800;
}

.reference-copy h3 {
  margin: 14px 0 12px;
  font-family: "Dazzle Unicase", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
}

.reference-copy p {
  max-width: 560px;
  color: #d6e0df;
  font-size: 17px;
  line-height: 1.62;
}

.reference-more {
  min-height: 38px;
  margin-top: 10px;
  padding: 0 14px;
  border: 1px solid rgba(250, 181, 45, 0.54);
  border-radius: 4px;
  color: var(--orange);
  background: rgba(4, 18, 20, 0.42);
  font-weight: 800;
  cursor: pointer;
}

.reference-detail {
  display: grid;
  grid-template-rows: 0fr;
  max-width: 620px;
  transition: grid-template-rows 260ms ease, margin-top 260ms ease;
}

.reference-detail p {
  overflow: hidden;
  margin: 0;
  color: rgba(242, 242, 242, 0.78);
  font-size: 15px;
  line-height: 1.55;
  border-left: 2px solid rgba(250, 181, 45, 0.54);
  padding-left: 14px;
}

.reference-slide.is-expanded .reference-detail {
  grid-template-rows: 1fr;
  margin-top: 14px;
}

.reference-slide.is-expanded .reference-more {
  color: #13201f;
  background: var(--orange);
}

.reference-controls {
  position: absolute;
  left: 118px;
  right: 26px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reference-controls button {
  min-width: 52px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(242, 242, 242, 0.26);
  border-radius: 4px;
  color: #d9e3e3;
  background: rgba(4, 18, 20, 0.62);
  font-family: "Zekton", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.reference-controls button.is-active {
  color: #13201f;
  border-color: var(--orange);
  background: var(--orange);
}

.reference-more-line {
  width: min(var(--max), 100%);
  margin: 22px auto 0;
}

.reference-more-line p {
  margin: 0 0 10px;
  color: rgba(242, 242, 242, 0.54);
  font-family: "Zekton", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
}

.reference-more-line div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.reference-more-line span {
  display: inline-flex;
  align-items: center;
  color: rgba(213, 225, 225, 0.76);
  font-size: 14px;
}

.reference-more-line span::before {
  content: "+";
  margin-right: 7px;
  color: var(--orange);
  font-weight: 900;
}

.currently {
  background:
    linear-gradient(135deg, rgba(7, 31, 34, 0.96), rgba(5, 95, 103, 0.78)),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern);
  background-repeat: no-repeat;
  background-size: auto, 38px 38px, 24px 24px, 52px 52px;
  background-position: center, 9% 24%, 63% 78%, 91% 18%;
}

.currently-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.currently p {
  max-width: 650px;
  color: #d6e0df;
  font-size: 18px;
  line-height: 1.6;
}

.currently .section-kicker,
.network-panel > div:first-child .section-kicker,
.contact-panel .section-kicker {
  color: var(--orange);
}

.currently-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-button {
  display: grid;
  grid-template-columns: var(--social-logo-width, 44px) 1fr;
  gap: 4px 12px;
  align-items: center;
  min-width: 210px;
  min-height: 64px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(242, 242, 242, 0.18);
  border-radius: 6px;
  background: rgba(4, 18, 20, 0.34);
}

.social-button span {
  position: relative;
  grid-row: span 2;
  display: block;
  width: var(--social-logo-width, 44px);
  height: var(--social-logo-height, 44px);
  border-radius: 6px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.social-button strong,
.social-button small {
  display: block;
}

.social-button strong {
  color: var(--fog);
  font-size: 18px;
  line-height: 1;
}

.social-button small {
  color: rgba(242, 242, 242, 0.62);
  font-size: 12px;
  line-height: 1;
}

.social-instagram span {
  background: currentColor;
  -webkit-mask: url("assets/icon-instagram.svg") center / contain no-repeat;
  mask: url("assets/icon-instagram.svg") center / contain no-repeat;
}

.social-instagram span::before {
  content: none;
}

.social-linkedin span {
  background: currentColor;
  -webkit-mask: url("assets/icon-linkedin.svg") center / contain no-repeat;
  mask: url("assets/icon-linkedin.svg") center / contain no-repeat;
}

.social-linkedin span::before {
  content: none;
}

.faq {
  position: relative;
  overflow: hidden;
  content-visibility: visible;
  contain-intrinsic-size: auto;
  padding-top: clamp(110px, 10vw, 150px);
  background:
    radial-gradient(circle at 84% 10%, rgba(250, 181, 45, 0.16), transparent 30%),
    linear-gradient(180deg, #071f22 0%, #092b2f 100%);
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern);
  background-repeat: no-repeat;
  background-size: 54px 54px, 28px 28px, 42px 42px, 22px 22px, 62px 62px, 34px 34px, 46px 46px, 26px 26px;
  background-position: 7% 18%, 18% 78%, 35% 28%, 52% 86%, 66% 18%, 78% 74%, 91% 24%, 96% 56%;
  opacity: 0.36;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  animation: icon-field-drift 21s ease-in-out infinite alternate;
}

.faq-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.faq-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.faq-head .section-kicker {
  color: var(--orange);
}

.faq-head p {
  margin: 0;
  color: #d6e0df;
  font-size: 18px;
  line-height: 1.6;
}

.faq-shell {
  border: 1px solid rgba(242, 242, 242, 0.16);
  border-radius: 8px;
  background: rgba(4, 18, 20, 0.46);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.faq-topline {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  padding: clamp(18px, 2.4vw, 28px);
  border-bottom: 1px solid rgba(242, 242, 242, 0.14);
}

.faq-topline strong {
  color: var(--orange);
  font-family: "Dazzle Unicase", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.05;
}

.faq-topline span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.faq-clusters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(242, 242, 242, 0.12);
  border-bottom: 1px solid rgba(242, 242, 242, 0.14);
}

.faq-cluster {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 7px;
  min-height: 146px;
  padding: 18px;
  border: 0;
  color: var(--fog);
  text-align: left;
  background: rgba(7, 31, 34, 0.94);
  cursor: pointer;
}

.faq-cluster::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 14px;
  color: rgba(250, 181, 45, 0.7);
  font-family: "Zekton", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.faq-cluster span {
  color: rgba(250, 181, 45, 0.72);
  font-family: "Zekton", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.faq-cluster strong {
  max-width: calc(100% - 24px);
  font-family: "Dazzle Unicase", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.08;
}

.faq-cluster small {
  align-self: end;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
}

.faq-cluster:hover,
.faq-cluster:focus-visible,
.faq-cluster.is-active {
  color: #13201f;
  outline: 0;
  background: var(--orange);
}

.faq-cluster:hover span,
.faq-cluster:focus-visible span,
.faq-cluster.is-active span,
.faq-cluster:hover small,
.faq-cluster:focus-visible small,
.faq-cluster.is-active small,
.faq-cluster:hover::after,
.faq-cluster:focus-visible::after,
.faq-cluster.is-active::after {
  color: rgba(19, 32, 31, 0.74);
}

.faq-panels {
  padding: clamp(18px, 2.4vw, 30px);
}

.faq-panel {
  display: grid;
  gap: 10px;
}

.faq-panel[hidden] {
  display: none;
}

.faq-panel h3 {
  margin: 0 0 10px;
  color: var(--orange);
  font-family: "Dazzle Unicase", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
}

.faq-panel details {
  border: 1px solid rgba(242, 242, 242, 0.14);
  border-radius: 6px;
  background: rgba(242, 242, 242, 0.045);
}

.faq-panel details[open] {
  border-color: rgba(250, 181, 45, 0.38);
  background: rgba(250, 181, 45, 0.07);
}

.faq-panel summary {
  position: relative;
  min-height: 58px;
  padding: 18px 54px 18px 18px;
  color: var(--fog);
  font-weight: 850;
  line-height: 1.32;
  list-style: none;
  cursor: pointer;
}

.faq-panel summary::-webkit-details-marker {
  display: none;
}

.faq-panel summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--orange);
  font-family: "Zekton", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 25px;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-panel details[open] summary::after {
  content: "-";
}

.faq-panel summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.faq-panel p {
  max-width: 920px;
  margin: 0;
  padding: 0 54px 20px 18px;
  color: #d6e0df;
  font-size: 16px;
  line-height: 1.62;
}

.network {
  padding-top: clamp(42px, 5vw, 70px);
  padding-bottom: clamp(42px, 5vw, 70px);
  background:
    radial-gradient(circle at 80% 12%, rgba(121, 163, 164, 0.12), transparent 32%),
    #062326;
}

.network-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(121, 163, 164, 0.22);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(4, 18, 20, 0.58), rgba(5, 95, 103, 0.16)),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern);
  background-repeat: no-repeat;
  background-size: auto, 28px 28px, 42px 42px, 22px 22px, 52px 52px, 34px 34px;
  background-position: center, 14% 22%, 39% 74%, 62% 18%, 84% 70%, 94% 34%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  animation: icon-panel-drift 22s ease-in-out infinite alternate;
}

.network-intro {
  max-width: 820px;
}

.network-intro .section-kicker {
  margin-bottom: 10px;
}

.network h2 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(27px, 3.1vw, 44px);
}

.network-panel > div:first-child p,
.network-cta p {
  color: var(--muted);
  line-height: 1.5;
}

.network-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(250, 181, 45, 0.28);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  background: rgba(5, 95, 103, 0.18);
}

.network-cta strong {
  display: block;
  margin: 0;
  color: var(--fog);
  font-size: 15px;
  line-height: 1.15;
}

.network-cta p {
  flex: 1 1 280px;
  margin: 0;
  font-size: 13px;
}

.network-cta .button {
  min-height: 34px;
  margin-top: 0;
  padding: 0 12px;
  font-size: 13px;
}

.partner-groups {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 0;
}

.partner-groups article {
  padding: 12px;
  border: 1px solid rgba(121, 163, 164, 0.2);
  border-radius: 6px;
  background: rgba(4, 18, 20, 0.34);
}

.partner-groups h3 {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 14px;
  line-height: 1.2;
}

.partner-groups p {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.partner-groups a,
.partner-groups span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 7px;
  border: 1px solid rgba(242, 242, 242, 0.14);
  border-radius: 4px;
  color: #d5e1e1;
  background: rgba(5, 95, 103, 0.2);
  font-size: 11px;
  line-height: 1.1;
}

.partner-groups a {
  border-color: rgba(250, 181, 45, 0.34);
  color: var(--fog);
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 110px) clamp(18px, 5vw, 68px);
  background: var(--petrol);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern);
  background-repeat: no-repeat;
  background-size: 42px 42px, 24px 24px, 56px 56px, 30px 30px, 48px 48px, 22px 22px;
  background-position: 8% 26%, 24% 72%, 45% 18%, 62% 82%, 82% 34%, 94% 70%;
  opacity: 0.34;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  animation: icon-field-drift 19s ease-in-out infinite alternate-reverse;
}

.contact-panel {
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.booking-box {
  padding: 28px;
  background: rgba(7, 31, 34, 0.42);
  position: relative;
  overflow: hidden;
}

.booking-box::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--orange);
}

.booking-box h3 {
  margin: 18px 0 10px;
  font-size: 28px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.booking-actions .button {
  min-width: 145px;
}

.booking-note {
  margin: 14px 0 0;
  color: rgba(242, 242, 242, 0.62) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.jobs-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(320px, 420px);
  gap: clamp(32px, 7vw, 120px);
  justify-content: space-between;
  align-items: end;
  min-height: 82svh;
  overflow: hidden;
  padding: 118px clamp(18px, 5vw, 68px) 52px;
}

.jobs-hero-media,
.jobs-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.jobs-hero-media {
  background: #041214;
}

.jobs-hero-media img {
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.92) contrast(1.06) brightness(0.7);
}

.jobs-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 31, 34, 0.98) 0%, rgba(7, 31, 34, 0.74) 44%, rgba(7, 31, 34, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 31, 34, 0.96) 0%, rgba(7, 31, 34, 0.12) 56%, rgba(7, 31, 34, 0.62) 100%);
}

.jobs-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.jobs-hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 1;
}

.jobs-hero .hero-copy {
  max-width: 650px;
}

.jobs-hero-note {
  position: relative;
  z-index: 1;
  align-self: end;
  width: 100%;
  padding: 18px;
  border-left: 4px solid var(--orange);
  background: rgba(4, 18, 20, 0.72);
  backdrop-filter: blur(14px);
}

.jobs-hero-note span,
.job-card span,
.jobs-path-grid span {
  color: var(--orange);
  font-weight: 800;
}

.jobs-hero-note p {
  margin: 10px 0 0;
  color: rgba(242, 242, 242, 0.74);
  font-size: 14px;
  line-height: 1.5;
}

.jobs-hero-note a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 14px;
  padding: 0 11px;
  border: 1px solid rgba(250, 181, 45, 0.42);
  border-radius: 4px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.jobs-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin-top: 22px;
}

.jobs-hero-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(121, 163, 164, 0.28);
  border-radius: 4px;
  color: #dce7e6;
  background: rgba(4, 18, 20, 0.4);
  font-size: 13px;
  font-weight: 760;
}

.jobs-hero-facts span::before {
  content: "+";
  margin-right: 7px;
  color: var(--orange);
  font-weight: 900;
}

@media (max-width: 1280px) {
  .jobs-hero {
    align-items: end;
    grid-template-columns: 1fr;
  }

  .jobs-hero-content {
    width: min(820px, 100%);
  }

  .jobs-hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(620px, 100%);
    margin-top: 28px;
  }
}

.jobs-intro,
.jobs-paths,
.jobs-fit {
  background:
    radial-gradient(circle at 84% 12%, rgba(250, 181, 45, 0.1), transparent 28%),
    var(--night);
}

.festival-jobs {
  background:
    radial-gradient(circle at 12% 0%, rgba(121, 163, 164, 0.14), transparent 35%),
    #041214;
}

.jobs-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--max), 100%);
  margin: 42px auto 0;
}

.job-card {
  min-width: 0;
  border: 1px solid rgba(242, 242, 242, 0.12);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(242, 242, 242, 0.045);
}

.job-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03) brightness(0.86);
}

.job-card > div {
  padding: 24px;
}

.job-card h3,
.jobs-path-grid h3 {
  margin: 12px 0 10px;
  font-size: 28px;
}

.job-card p,
.jobs-path-grid p,
.jobs-checks p {
  color: rgba(242, 242, 242, 0.72);
  line-height: 1.58;
}

.job-card ul,
.jobs-checks ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.job-card li,
.jobs-checks li {
  color: rgba(242, 242, 242, 0.78);
  line-height: 1.45;
}

.job-card li::before,
.jobs-checks li::before {
  content: "+";
  margin-right: 7px;
  color: var(--orange);
  font-weight: 900;
}

.job-card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.job-icon-link {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(242, 242, 242, 0.22);
  border-radius: 4px;
  color: var(--fog);
  background: rgba(242, 242, 242, 0.055);
}

.job-icon-link span {
  display: block;
  width: 22px;
  height: 22px;
  background: currentColor;
}

.job-icon-link:hover,
.job-icon-link:focus-visible {
  color: var(--orange);
  border-color: rgba(250, 181, 45, 0.46);
}

.job-icon-web span {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 2a14 14 0 1 0 0 28A14 14 0 0 0 16 2Zm9.8 9h-4.4a20.9 20.9 0 0 0-2-5.1A12.1 12.1 0 0 1 25.8 11ZM16 4.4c1.1 1.5 2.2 3.8 2.9 6.6h-5.8c.7-2.8 1.8-5.1 2.9-6.6ZM4.3 18a11.9 11.9 0 0 1 0-4h5.1a21.1 21.1 0 0 0 0 4H4.3Zm1.9 3h4.4a20.9 20.9 0 0 0 2 5.1A12.1 12.1 0 0 1 6.2 21Zm4.4-10H6.2a12.1 12.1 0 0 1 6.4-5.1 20.9 20.9 0 0 0-2 5.1ZM16 27.6c-1.1-1.5-2.2-3.8-2.9-6.6h5.8c-.7 2.8-1.8 5.1-2.9 6.6ZM19.4 18h-6.8a17.5 17.5 0 0 1 0-4h6.8a17.5 17.5 0 0 1 0 4Zm0 8.1a20.9 20.9 0 0 0 2-5.1h4.4a12.1 12.1 0 0 1-6.4 5.1ZM22.6 18a21.1 21.1 0 0 0 0-4h5.1a11.9 11.9 0 0 1 0 4h-5.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 2a14 14 0 1 0 0 28A14 14 0 0 0 16 2Zm9.8 9h-4.4a20.9 20.9 0 0 0-2-5.1A12.1 12.1 0 0 1 25.8 11ZM16 4.4c1.1 1.5 2.2 3.8 2.9 6.6h-5.8c.7-2.8 1.8-5.1 2.9-6.6ZM4.3 18a11.9 11.9 0 0 1 0-4h5.1a21.1 21.1 0 0 0 0 4H4.3Zm1.9 3h4.4a20.9 20.9 0 0 0 2 5.1A12.1 12.1 0 0 1 6.2 21Zm4.4-10H6.2a12.1 12.1 0 0 1 6.4-5.1 20.9 20.9 0 0 0-2 5.1ZM16 27.6c-1.1-1.5-2.2-3.8-2.9-6.6h5.8c-.7 2.8-1.8 5.1-2.9 6.6ZM19.4 18h-6.8a17.5 17.5 0 0 1 0-4h6.8a17.5 17.5 0 0 1 0 4Zm0 8.1a20.9 20.9 0 0 0 2-5.1h4.4a12.1 12.1 0 0 1-6.4 5.1ZM22.6 18a21.1 21.1 0 0 0 0-4h5.1a11.9 11.9 0 0 1 0 4h-5.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.job-icon-instagram span {
  -webkit-mask: url("assets/icon-instagram.svg") center / contain no-repeat;
  mask: url("assets/icon-instagram.svg") center / contain no-repeat;
}

.jobs-panel,
.jobs-apply-teaser {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.jobs-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
}

.jobs-panel > p,
.jobs-panel > div > p,
.jobs-apply-teaser p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.jobs-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.jobs-path-grid article {
  padding: 20px;
  border: 1px solid rgba(121, 163, 164, 0.18);
  border-radius: 6px;
  background: rgba(4, 18, 20, 0.28);
}

.jobs-path-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.jobs-path-actions .button {
  min-width: 168px;
}

.jobs-checks {
  display: grid;
  gap: 18px;
}

.jobs-apply-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(42px, 6vw, 70px) clamp(18px, 5vw, 68px);
}

.jobs-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 32px);
}

.jobs-modal[hidden] {
  display: none;
}

.jobs-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 20, 0.78);
  backdrop-filter: blur(12px);
}

.jobs-modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(20px, 4vw, 42px);
  width: min(1080px, 100%);
  max-height: min(88svh, 920px);
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(250, 181, 45, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 31, 34, 0.98), rgba(4, 18, 20, 0.98)),
    var(--plus-pattern);
  background-size: auto, 52px 52px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
}

.jobs-modal-close {
  position: sticky;
  top: 0;
  grid-column: 1 / -1;
  justify-self: end;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: -10px -10px -8px 0;
  border: 1px solid rgba(250, 181, 45, 0.34);
  border-radius: 4px;
  color: var(--orange);
  background: rgba(4, 18, 20, 0.82);
  font-size: 34px;
  line-height: 1;
  transform: rotate(45deg);
  cursor: pointer;
}

.jobs-apply-copy p {
  color: rgba(242, 242, 242, 0.72);
  line-height: 1.6;
}

.jobs-legal-note {
  padding: 16px;
  border-left: 4px solid var(--orange);
  background: rgba(250, 181, 45, 0.08);
}

.jobs-form {
  display: grid;
  gap: 16px;
}

.jobs-form-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(121, 163, 164, 0.2);
  border-radius: 8px;
  background: rgba(242, 242, 242, 0.05);
}

.jobs-form-tabs button {
  min-height: 44px;
  border: 0;
  border-radius: 5px;
  padding: 10px 12px;
  color: rgba(242, 242, 242, 0.76);
  background: transparent;
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.jobs-form-tabs button.is-active {
  color: var(--deep);
  background: var(--orange);
}

.jobs-form-panel {
  display: grid;
  gap: 16px;
}

.jobs-form-panel[hidden] {
  display: none;
}

.form-hidden {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.jobs-form label,
.jobs-form fieldset {
  min-width: 0;
}

.jobs-form label {
  display: grid;
  gap: 7px;
  color: rgba(242, 242, 242, 0.72);
  font-size: 14px;
  line-height: 1.35;
}

.jobs-form label > span,
.jobs-form legend {
  color: var(--fog);
  font-weight: 760;
}

.jobs-form input[type="text"],
.jobs-form input[type="email"],
.jobs-form input[type="tel"],
.jobs-form input[type="date"],
.jobs-form input[type="file"],
.jobs-form select,
.jobs-form textarea {
  width: 100%;
  border: 1px solid rgba(242, 242, 242, 0.18);
  border-radius: 4px;
  padding: 12px 13px;
  color: var(--fog);
  background: rgba(242, 242, 242, 0.06);
  font: inherit;
}

.jobs-form select {
  color-scheme: dark;
}

.jobs-form input[type="file"] {
  cursor: pointer;
}

.application-attachments {
  border: 1px dashed rgba(250, 181, 45, 0.34);
  border-radius: 8px;
  padding: 14px;
  background: rgba(250, 181, 45, 0.045);
  cursor: pointer;
}

.application-attachments strong {
  color: var(--fog);
  font-size: 14px;
  line-height: 1.25;
}

.application-attachments input[type="file"] {
  background: rgba(4, 18, 20, 0.38);
}

.application-attachments.is-dragging {
  border-color: var(--orange);
  background: rgba(250, 181, 45, 0.13);
}

.attachment-list {
  display: grid;
  gap: 7px;
}

.attachment-list:empty {
  display: none;
}

.attachment-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 8px;
  align-items: center;
  min-height: 36px;
  padding: 6px 6px 6px 10px;
  border: 1px solid rgba(242, 242, 242, 0.14);
  border-radius: 5px;
  background: rgba(4, 18, 20, 0.34);
}

.attachment-item span {
  overflow: hidden;
  color: rgba(242, 242, 242, 0.78);
  font-size: 13px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.attachment-item button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 28px;
  border: 1px solid rgba(242, 242, 242, 0.18);
  border-radius: 4px;
  color: var(--orange);
  background: rgba(242, 242, 242, 0.04);
  font: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.jobs-form small {
  color: rgba(242, 242, 242, 0.58);
  font-size: 12px;
  line-height: 1.35;
}

.jobs-form small.is-error {
  color: #ffb4a8;
}

.jobs-form input[readonly] {
  color: rgba(242, 242, 242, 0.72);
  background: rgba(121, 163, 164, 0.12);
}

.jobs-form textarea {
  resize: vertical;
}

.jobs-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(121, 163, 164, 0.2);
  border-radius: 6px;
}

.jobs-form legend {
  padding: 0 8px;
}

.jobs-form fieldset label,
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.privacy-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  line-height: 1.45;
}

.jobs-form .privacy-check > span {
  color: rgba(242, 242, 242, 0.78);
  font-weight: 400;
}

.jobs-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--orange);
  flex: 0 0 auto;
}

.privacy-check input[type="checkbox"] {
  margin-top: 3px;
}

.submit-choice {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.submit-choice .button {
  width: 100%;
}

.jobs-form-status {
  min-height: 20px;
  margin: 0;
  color: rgba(242, 242, 242, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.jobs-form-status.is-success {
  color: var(--orange);
}

.jobs-form-status.is-error {
  color: #ffb4a8;
}

.jobs-thanks {
  min-height: 70svh;
}

.legal-hero {
  padding: 150px clamp(18px, 5vw, 68px) 52px;
  background:
    linear-gradient(135deg, rgba(5, 95, 103, 0.72), rgba(4, 18, 20, 0.96)),
    var(--plus-pattern),
    var(--plus-pattern),
    var(--plus-pattern);
  background-repeat: no-repeat;
  background-size: auto, 40px 40px, 24px 24px, 56px 56px;
  background-position: center, 11% 34%, 44% 18%, 83% 72%;
  border-bottom: 1px solid rgba(242, 242, 242, 0.08);
}

.legal-hero h1,
.legal-hero p {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.legal-hero h1 {
  margin-top: 10px;
  margin-bottom: 12px;
  color: var(--fog);
  font-family: "Dazzle Unicase", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(38px, 7vw, 82px);
  line-height: 0.95;
  text-transform: uppercase;
}

.legal-hero > p:not(.section-kicker) {
  color: rgba(242, 242, 242, 0.72);
  font-size: 18px;
  line-height: 1.5;
}

.stance-hero {
  position: relative;
  min-height: clamp(520px, 68svh, 720px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: end;
  padding-bottom: clamp(54px, 7vw, 88px);
}

.stance-hero-media {
  position: absolute;
  inset: 0;
  background-color: #0b3437;
  filter: saturate(0.9) contrast(1.02) brightness(0.92);
}

.stance-hero-media img[src*="haltung-team-lustig"] {
  object-position: center 8%;
}

.stance-hero-media img[src*="haltung-yorrick-herz"] {
  object-position: 72% 42%;
}

.stance-hero-media img[src*="haltung-yorrick-tobias"],
.stance-hero-media img[data-src*="haltung-yorrick-tobias"] {
  object-position: center 46%;
}

.stance-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 31, 34, 0.9) 0%, rgba(7, 31, 34, 0.7) 40%, rgba(7, 31, 34, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 31, 34, 0.78) 0%, rgba(7, 31, 34, 0.08) 54%, rgba(7, 31, 34, 0.42) 100%);
}

.stance-hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
}

.stance-hero h1 {
  width: auto;
}

.stance-page .imprint-label {
  color: var(--orange);
}

.legal,
.imprint {
  padding: 24px clamp(18px, 5vw, 68px);
  background: #041214;
  border-top: 1px solid rgba(242, 242, 242, 0.08);
}

.legal {
  padding-top: 64px;
  padding-bottom: 68px;
  background:
    linear-gradient(180deg, rgba(6, 35, 38, 0.98), rgba(4, 18, 20, 1));
}

.imprint-inner,
.legal-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.imprint-label {
  margin: 0;
  color: rgba(242, 242, 242, 0.42);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.imprint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.legal-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.imprint-grid article {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  max-width: 860px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(242, 242, 242, 0.1);
  border-radius: 8px;
  background: rgba(242, 242, 242, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.legal-grid article {
  min-height: 0;
  padding: 0 0 24px;
  border: 0;
  border-bottom: 1px solid rgba(242, 242, 242, 0.1);
  background: transparent;
}

.legal-grid article + article {
  padding-top: 24px;
}

.legal-grid article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.imprint-grid h3,
.legal-grid h3 {
  margin-bottom: 6px;
  color: rgba(242, 242, 242, 0.62);
  font-size: 13px;
}

.imprint-grid p,
.legal-grid p {
  margin: 0;
  color: rgba(242, 242, 242, 0.42);
  font-size: 12px;
  line-height: 1.45;
}

.legal-grid p {
  max-width: 76ch;
  color: rgba(242, 242, 242, 0.76);
  font-size: 15px;
  line-height: 1.72;
}

.legal-grid p + p {
  margin-top: 12px;
}

.legal-grid a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal .imprint-label {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 10px;
  color: var(--orange);
  font-size: 13px;
  line-height: 1.35;
}

.legal .imprint-label::after {
  content: "Hosting, Cookies, Analyse, Medien, Kontakt, Bewerbungen und Rechte.";
  max-width: 20ch;
  color: rgba(242, 242, 242, 0.48);
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
}

.imprint-contact {
  display: grid;
  gap: 4px;
}

.imprint-contact p {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
}

.contact-label,
.contact-tel {
  white-space: nowrap;
}

.contact-tel {
  display: inline-block;
}

.contact-mail {
  min-width: 0;
  overflow-wrap: anywhere;
}

.stance-copy h2,
.stance-values h2,
.conduct-section h2,
.stance-report h2 {
  margin-bottom: 12px;
}

.stance-copy > p,
.stance-placeholder p,
.stance-value-grid p,
.conduct-anchor p,
.conduct-card p {
  color: rgba(242, 242, 242, 0.68);
  line-height: 1.6;
}

.stance-placeholder,
.conduct-anchor {
  padding: 20px;
  border: 1px solid rgba(250, 181, 45, 0.28);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  background: rgba(4, 18, 20, 0.28);
}

.stance-copy .conduct-anchor {
  margin-top: 22px;
}

.stance-placeholder strong,
.conduct-anchor strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
}

.conduct-anchor h2 {
  color: var(--orange);
}

.conduct-anchor a,
.conduct-card a {
  color: var(--orange);
  font-weight: 800;
}

main > .conduct-section:last-of-type {
  background: #041719;
}

.conduct-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.conduct-card {
  border: 1px solid rgba(121, 163, 164, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(4, 18, 20, 0.74), rgba(6, 35, 38, 0.92)),
    var(--plus-pattern);
  background-repeat: no-repeat;
  background-size: auto, 38px 38px;
  background-position: center, calc(100% - 22px) 22px;
}

.conduct-card[open] {
  border-color: rgba(250, 181, 45, 0.34);
  background:
    linear-gradient(145deg, rgba(5, 95, 103, 0.36), rgba(4, 18, 20, 0.94)),
    var(--plus-pattern);
  background-repeat: no-repeat;
  background-size: auto, 44px 44px;
  background-position: center, calc(100% - 22px) 22px;
}

.conduct-card summary {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 42px;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 18px clamp(18px, 2.2vw, 26px);
  cursor: pointer;
  list-style: none;
}

.conduct-card summary::-webkit-details-marker {
  display: none;
}

.conduct-card summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(250, 181, 45, 0.42);
  border-radius: 4px;
  color: var(--orange);
  font-size: 30px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.conduct-card[open] summary::after {
  background: rgba(250, 181, 45, 0.12);
  transform: rotate(45deg);
}

.conduct-card summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.conduct-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(250, 181, 45, 0.38);
  border-radius: 4px;
  color: var(--orange);
  font-family: "Zekton", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
}

.conduct-card h3 {
  max-width: 760px;
  margin: 0;
  color: var(--fog);
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.05;
}

.conduct-card p {
  max-width: 820px;
  margin: 0;
  padding: 0 clamp(18px, 2.2vw, 26px) 22px calc(clamp(18px, 2.2vw, 26px) + 64px);
}

.stance-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.stance-value-grid article {
  overflow: hidden;
  border: 1px solid rgba(121, 163, 164, 0.18);
  border-radius: 6px;
  background: rgba(4, 18, 20, 0.22);
}

.stance-value-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.02) brightness(0.82);
}

.stance-value-grid div {
  padding: 18px;
}

.stance-value-grid h3 {
  margin-bottom: 8px;
  color: var(--fog);
  font-size: 19px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 14px;
  padding: 0 10px;
  border: 1px solid rgba(250, 181, 45, 0.42);
  border-radius: 4px;
  color: var(--orange);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.not-found {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  min-height: 100svh;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 68px) 62px;
  background: var(--night);
}

.not-found-media {
  position: absolute;
  inset: 0;
  background: #071f22;
}

.not-found-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 55%;
  filter: saturate(0.82) contrast(1.06) brightness(0.72);
}

.not-found-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 31, 34, 0.98) 0%, rgba(7, 31, 34, 0.74) 38%, rgba(7, 31, 34, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 31, 34, 0.95) 0%, rgba(7, 31, 34, 0.18) 54%, rgba(7, 31, 34, 0.68) 100%);
}

.not-found-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  min-width: 0;
}

.not-found-content h1 {
  margin-bottom: 18px;
}

.not-found-content .hero-actions {
  margin-top: 28px;
}

.not-found-status {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 18px;
  border-left: 3px solid var(--orange);
  background: rgba(5, 95, 103, 0.74);
  backdrop-filter: blur(14px);
}

.not-found-status span {
  display: block;
  margin-bottom: 8px;
  color: var(--turquoise);
  font-size: 12px;
  text-transform: uppercase;
}

.not-found-status strong {
  display: block;
}

.not-found-status ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.not-found-status li {
  color: #dce7e6;
  font-size: 14px;
}

.not-found-status li::before {
  content: "+";
  margin-right: 7px;
  color: var(--orange);
  font-weight: 900;
}

.sticky-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: auto;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.sticky-actions,
.mobile-bar {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.floating-contact-ready .sticky-actions,
.floating-contact-ready .mobile-bar {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-context .sticky-actions,
.contact-context .mobile-bar {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.sticky-action {
  width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  border: 1px solid rgba(250, 181, 45, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  cursor: pointer;
  font: inherit;
}

.sticky-action.icon-link {
  gap: 0;
}

.sticky-action > span[aria-hidden="true"] {
  width: 34px;
  height: 34px;
}

.sticky-action.primary {
  color: var(--orange);
  background: rgba(4, 18, 20, 0.82);
}

.sticky-action.dark {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.45);
  background: rgba(4, 18, 20, 0.82);
}

.sticky-action.assistant {
  color: var(--turquoise);
  border-color: rgba(121, 163, 164, 0.58);
  background: rgba(4, 18, 20, 0.86);
}

.chatbot-panel {
  position: fixed;
  right: 96px;
  bottom: 24px;
  z-index: 45;
  width: min(430px, calc(100vw - 44px));
  color: var(--fog);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.chatbot-panel[hidden] {
  display: none;
}

.chatbot-card {
  overflow: hidden;
  border: 1px solid rgba(121, 163, 164, 0.42);
  border-radius: 22px;
  background: rgba(4, 18, 20, 0.96);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px);
}

.chatbot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(242, 242, 242, 0.1);
}

.chatbot-avatar {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(250, 181, 45, 0.38);
  border-radius: 24px;
  background:
    radial-gradient(circle at 34% 24%, rgba(250, 181, 45, 0.34), transparent 26px),
    linear-gradient(145deg, rgba(121, 163, 164, 0.42), rgba(5, 95, 103, 0.22));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 16px 32px rgba(0, 0, 0, 0.24);
}

.chatbot-avatar-face {
  position: relative;
  overflow: hidden;
  width: 46px;
  height: 46px;
  border-radius: 19px 19px 21px 21px;
  background: #c98962;
  box-shadow: 0 0 0 4px rgba(7, 31, 34, 0.34);
}

.chatbot-avatar-face::before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: 0;
  height: 18px;
  border-radius: 18px 18px 12px 12px;
  background: var(--night);
  box-shadow:
    7px 9px 0 -5px var(--night),
    17px 11px 0 -6px var(--night),
    29px 10px 0 -6px var(--night),
    40px 8px 0 -6px var(--night);
}

.chatbot-avatar-face::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 6px;
  height: 9px;
  border-radius: 999px;
  background: rgba(7, 31, 34, 0.32);
}

.chatbot-avatar-eye {
  position: absolute;
  top: 19px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--night);
}

.chatbot-avatar-eye:first-child {
  left: 12px;
}

.chatbot-avatar-eye + .chatbot-avatar-eye {
  right: 12px;
}

.chatbot-avatar-mouth {
  position: absolute;
  left: 16px;
  bottom: 9px;
  width: 14px;
  height: 6px;
  border-bottom: 3px solid #f2f2f2;
  border-radius: 0 0 999px 999px;
}

.chatbot-head h2 {
  margin: 4px 0 0;
  font-family: "Dazzle Unicase", Inter, sans-serif;
  font-size: 24px;
  line-height: 1.05;
}

.chatbot-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(242, 242, 242, 0.18);
  border-radius: 14px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.05);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transform: rotate(45deg);
}

.chatbot-messages {
  display: grid;
  gap: 12px;
  max-height: 340px;
  overflow-y: auto;
  padding: 20px 22px 16px;
}

.chatbot-message {
  width: fit-content;
  max-width: 92%;
  margin: 0;
  padding: 13px 15px;
  border-radius: 18px;
  color: #dfeaea;
  font-size: 15px;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.07);
}

.chatbot-message.user {
  justify-self: end;
  border-bottom-right-radius: 6px;
  color: #13201f;
  background: var(--orange);
}

.chatbot-message.bot {
  border: 1px solid rgba(121, 163, 164, 0.22);
  border-bottom-left-radius: 6px;
}

.chatbot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 22px 16px;
}

.chatbot-suggestions button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(121, 163, 164, 0.34);
  border-radius: 999px;
  color: var(--fog);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.chatbot-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 0 22px 18px;
}

.chatbot-form input {
  min-width: 0;
  min-height: 52px;
  border: 1px solid rgba(242, 242, 242, 0.16);
  border-radius: 16px;
  padding: 0 16px;
  color: var(--fog);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
}

.chatbot-form input::placeholder {
  color: rgba(242, 242, 242, 0.56);
}

.chatbot-form input:disabled {
  cursor: wait;
  opacity: 0.68;
}

.chatbot-form button {
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  padding: 0 18px;
  color: #13201f;
  background: var(--orange);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.chatbot-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.chatbot-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 22px 22px;
}

.chatbot-actions .button {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  font-size: 15px;
}

.chatbot-note {
  margin: -10px 22px 20px;
  color: rgba(242, 242, 242, 0.58);
  font-size: 12px;
  line-height: 1.4;
}

.consent-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: end center;
  padding: 20px;
  overflow-y: auto;
  background: rgba(4, 18, 20, 0.6);
  backdrop-filter: blur(8px);
}

.consent-panel[hidden] {
  display: none;
}

.consent-card {
  width: min(760px, 100%);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  padding: 24px;
  border: 1px solid rgba(250, 181, 45, 0.28);
  border-radius: 6px;
  background: rgba(7, 31, 34, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
}

.consent-card h2 {
  margin: 10px 0;
  font-size: 28px;
}

.consent-card p {
  margin: 0 0 16px;
  color: rgba(242, 242, 242, 0.72);
  line-height: 1.55;
}

.consent-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(121, 163, 164, 0.22);
  border-radius: 4px;
  background: rgba(4, 18, 20, 0.38);
}

.consent-option input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.consent-option strong,
.consent-option small {
  display: block;
}

.consent-option strong {
  color: var(--fog);
}

.consent-option small {
  margin-top: 4px;
  color: rgba(242, 242, 242, 0.6);
  line-height: 1.4;
}

.consent-option.is-fixed {
  opacity: 0.82;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
}

.consent-actions button {
  border: 0;
  cursor: pointer;
}

.footer {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 5vw, 68px);
  color: var(--muted);
  background: #041214;
}

.footer img {
  width: 132px;
  height: 76px;
  object-fit: contain;
}

.footer p {
  max-width: 42ch;
  margin: 0;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 18px;
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(242, 242, 242, 0.035);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-social span {
  position: relative;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  color: currentColor;
}

.footer-linkedin span {
  color: currentColor;
}

.footer-linkedin span::before,
.footer-instagram span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
}

.footer-linkedin span::before {
  -webkit-mask: url("assets/icon-linkedin.svg") center / contain no-repeat;
  mask: url("assets/icon-linkedin.svg") center / contain no-repeat;
}

.footer-instagram span::before {
  -webkit-mask: url("assets/icon-instagram.svg") center / contain no-repeat;
  mask: url("assets/icon-instagram.svg") center / contain no-repeat;
}

.footer-linkedin span::after,
.footer-instagram span::after {
  content: none;
}

.muted-link {
  color: rgba(242, 242, 242, 0.48);
}

.footer-button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.muted-link:hover,
.muted-link:focus-visible {
  color: var(--orange);
}

.mobile-bar {
  display: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: rgba(7, 31, 34, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 900px) {

  .split,
  .why-layout,
  .team-head,
  .references-head,
  .faq-head,
  .currently-inner,
  .contact-panel,
  .network-panel,
  .jobs-panel,
  .jobs-card-grid,
  .jobs-modal-card,
  .jobs-apply-teaser,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .jobs-hero {
    min-height: 86svh;
    padding-top: 124px;
  }

  .jobs-hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

  .jobs-path-grid,
  .form-row,
  .jobs-form-tabs,
  .jobs-form fieldset {
    grid-template-columns: 1fr;
  }

  .submit-choice {
    grid-template-columns: 1fr;
  }

  .jobs-modal {
    align-items: end;
    padding: 0;
  }

  .jobs-modal-card {
    width: 100%;
    max-height: 92svh;
    border-radius: 8px 8px 0 0;
  }

  .jobs-apply-teaser {
    padding-inline: 18px;
  }

  .faq-topline {
    grid-template-columns: 1fr;
  }

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

  .partner-groups {
    grid-template-columns: 1fr;
  }

  .reference-carousel,
  .reference-slide,
  .reference-slide img {
    min-height: 720px;
  }

  .reference-image-pv {
    object-position: 36% center;
  }

  .reference-image-no {
    object-position: 52% 44%;
  }

  .reference-image-sh {
    object-position: 52% 32%;
  }

  .reference-image-wcd {
    object-position: center 68%;
    transform: scale(1.12);
    transform-origin: center 68%;
  }

  .reference-image-wug {
    object-position: 52% 58%;
  }

  .reference-slide::after {
    background:
      linear-gradient(0deg, rgba(7, 31, 34, 0.97), rgba(7, 31, 34, 0.22) 66%, rgba(7, 31, 34, 0.64));
  }

  .reference-copy {
    left: 22px;
    right: 22px;
    bottom: 92px;
    width: auto;
    padding: 20px;
  }

  .reference-controls {
    left: 84px;
    right: 22px;
    bottom: 20px;
  }

  .reference-credit {
    left: 22px;
    bottom: 74px;
  }

  .hero {
    min-height: 92svh;
    padding-top: 124px;
  }

  .hero-status {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

  .not-found {
    grid-template-columns: 1fr;
    display: block;
    min-height: 0;
    padding: 76px 0 0;
    background: #041214;
  }

  .not-found-media {
    position: relative;
    overflow: hidden;
    height: 60svh;
    min-height: 430px;
    max-height: 620px;
  }

  .not-found-media img {
    object-position: 50% 58%;
    filter: saturate(0.9) contrast(1.04) brightness(0.82);
    transform: scale(1.28);
    transform-origin: 50% 58%;
  }

  .not-found-shade {
    top: 76px;
    bottom: auto;
    height: 60svh;
    min-height: 430px;
    max-height: 620px;
    background:
      linear-gradient(180deg, rgba(7, 31, 34, 0.16), rgba(7, 31, 34, 0.26) 62%, rgba(7, 31, 34, 0.88));
  }

  .not-found-content,
  .not-found-status {
    position: relative;
    z-index: 2;
    width: auto;
    margin: 0 clamp(20px, 5vw, 42px);
  }

  .not-found-content {
    padding: 30px 0 0;
  }

  .not-found-status {
    margin-top: 28px;
  }

  .parallax-layer {
    transform: none !important;
  }

  .control-media {
    background-position: 34% center;
  }

  .field-carousel {
    aspect-ratio: 4 / 3;
  }

  .field-stamp {
    left: 52px;
    right: 52px;
    bottom: 48px;
    width: auto;
  }

  .field-stamp strong {
    font-size: clamp(23px, 7vw, 32px);
  }

  .field-dots {
    right: 52px;
    bottom: 18px;
  }

  .sticky-actions {
    display: none;
  }

  .mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px));
    background: #041214;
    backdrop-filter: blur(16px);
    box-shadow: 0 -16px 34px rgba(0, 0, 0, 0.36);
  }

  .mobile-bar a,
  .mobile-bar button {
    min-height: 56px;
    border: 0;
    color: #13201f;
    background: var(--orange);
  }

  .mobile-bar button {
    padding: 0;
    font: inherit;
    cursor: pointer;
  }

  .chatbot-panel {
    right: 10px;
    bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    left: 10px;
    width: auto;
  }

  .chatbot-messages {
    max-height: min(300px, 44vh);
  }

  .booking-actions .button {
    flex: 1 1 150px;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: clamp(54px, 12vw, 86px);
  }

  .gallery-grid figure {
    margin-top: 0;
    transform: none;
  }

  .gallery-grid figure:hover,
  .gallery-grid figure:focus-visible {
    filter: brightness(1.08);
  }

  .gallery-grid figure:nth-child(1) {
    grid-column: 1 / span 4;
    grid-row: span 3;
  }

  .gallery-grid figure:nth-child(2) {
    grid-column: 5 / span 2;
    grid-row: span 3;
  }

  .gallery-grid figure:nth-child(3) {
    grid-column: 1 / span 2;
    grid-row: span 5;
  }

  .gallery-grid figure:nth-child(4) {
    grid-column: 3 / span 4;
    grid-row: span 2;
  }

  .gallery-grid figure:nth-child(5) {
    grid-column: 1 / span 6;
    grid-row: span 3;
  }

  .gallery-grid figure:nth-child(6),
  .gallery-grid figure:nth-child(7),
  .gallery-grid figure:nth-child(8) {
    grid-column: span 3;
    grid-row: span 3;
  }

  .gallery-grid figure:nth-child(10) {
    grid-column: span 4;
    grid-row: span 3;
  }

  .gallery-grid figure:nth-child(9),
  .gallery-grid figure:nth-child(11) {
    grid-column: span 6;
    grid-row: span 3;
  }

  .gallery-lightbox-frame {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 10px;
  }

  .gallery-lightbox-nav {
    width: 46px;
    height: 62px;
  }

  .footer {
    padding-bottom: calc(118px + env(safe-area-inset-bottom, 0px));
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer nav {
    justify-content: flex-start;
  }

  .imprint-inner,
  .legal-inner,
  .imprint-grid,
  .stance-hero,
  .stance-value-grid {
    grid-template-columns: 1fr;
  }

  .imprint-inner,
  .legal-inner {
    align-items: stretch;
    gap: 18px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 22px;
  }

  .legal-grid article {
    min-width: 0;
    height: auto;
    min-height: 0;
    padding: 0 0 22px;
    overflow: visible;
  }

  .legal-grid article + article {
    padding-top: 22px;
  }

  .legal-grid article:last-child {
    padding-bottom: 0;
  }

  .legal .imprint-label {
    position: static;
  }

  .legal .imprint-label::after {
    max-width: none;
  }

  .legal-grid p,
  .imprint-grid p {
    overflow-wrap: anywhere;
  }

  .imprint {
    padding-bottom: 24px;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .brand img {
    width: 108px;
    height: 52px;
  }

  h1 {
    font-size: 36px;
  }

  .legal,
  .imprint {
    padding-inline: 18px;
  }

  .legal-hero {
    padding-top: 128px;
  }

  .legal-grid p {
    font-size: 14px;
    line-height: 1.68;
  }

  .imprint-grid p {
    font-size: 13px;
    line-height: 1.55;
  }

  .legal-grid h3,
  .imprint-grid h3 {
    font-size: 13px;
    line-height: 1.3;
  }

  .legal-grid .text-button {
    width: 100%;
    white-space: normal;
  }

  .conduct-card {
    background-size: auto, 34px 34px;
  }

  .conduct-card summary {
    grid-template-columns: auto minmax(0, 1fr) 36px;
    gap: 12px;
    min-height: 68px;
    padding: 14px;
  }

  .conduct-card summary::after {
    width: 36px;
    height: 36px;
    font-size: 26px;
  }

  .conduct-card h3 {
    font-size: 21px;
    line-height: 1.12;
  }

  .conduct-card p,
  .conduct-anchor p {
    font-size: 14px;
  }

  .conduct-card p {
    padding: 0 14px 18px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card > p {
    min-height: 0;
  }

  .booking-actions {
    gap: 8px;
  }

  .booking-actions .button {
    min-width: 0;
    padding-inline: 10px;
    font-size: clamp(12.5px, 3.2vw, 15px);
    line-height: 1.05;
    white-space: nowrap;
  }

  .booking-actions .icon-link {
    gap: 7px;
  }

  .booking-actions .icon-link > span[aria-hidden="true"] {
    width: 20px;
    height: 20px;
  }

  .faq-clusters {
    grid-template-columns: 1fr;
  }

  .faq-cluster {
    min-height: 112px;
    padding: 16px;
  }

  .faq-panels {
    padding: 14px;
  }

  .faq-panel summary {
    padding: 16px 46px 16px 14px;
  }

  .faq-panel p {
    padding: 0 14px 18px;
    font-size: 15px;
  }

  .metric-row {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .metric-row a {
    width: 100%;
  }

  .gallery-modal {
    padding: 10px;
  }

  .gallery-panel {
    max-height: 88svh;
  }

  .gallery-head {
    grid-template-columns: 1fr;
  }

  .gallery-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    padding: 0;
  }

  .gallery-grid figure {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 0;
  }

  .gallery-grid img {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .gallery-lightbox {
    padding: 12px;
  }

  .gallery-lightbox-frame {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto auto;
    gap: 10px;
  }

  .gallery-lightbox-frame img {
    grid-column: 1 / -1;
    max-height: 70svh;
  }

  .gallery-lightbox-frame p {
    grid-column: 1 / -1;
  }

  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    grid-row: 3;
    width: 100%;
    height: 48px;
  }

  .gallery-lightbox-prev {
    grid-column: 1;
  }

  .gallery-lightbox-next {
    grid-column: 2;
  }

  .gallery-lightbox-close {
    top: 8px;
    right: 8px;
  }

  .reference-controls {
    left: 72px;
  }

  .field-carousel::before {
    inset: 16px;
  }

  .field-stamp {
    left: 28px;
    right: 28px;
    bottom: 54px;
    width: auto;
    padding: 14px;
  }

  .field-stamp strong {
    font-size: clamp(22px, 7vw, 28px);
  }

  .field-dots {
    right: 28px;
    bottom: 20px;
  }

  .not-found {
    display: block;
    min-height: 0;
    padding: 76px 0 0;
    background: #041214;
  }

  .not-found-media {
    position: relative;
    overflow: hidden;
    height: 58svh;
    min-height: 420px;
    max-height: 560px;
  }

  .not-found-media img {
    object-position: 50% 58%;
    filter: saturate(0.9) contrast(1.04) brightness(0.82);
    transform: scale(1.45);
    transform-origin: 50% 58%;
  }

  .not-found-shade {
    top: 76px;
    bottom: auto;
    height: 58svh;
    min-height: 420px;
    max-height: 560px;
    background:
      linear-gradient(180deg, rgba(7, 31, 34, 0.18), rgba(7, 31, 34, 0.3) 62%, rgba(7, 31, 34, 0.9));
  }

  .not-found-content,
  .not-found-status {
    position: relative;
    z-index: 2;
    width: auto;
    margin: 0 20px;
  }

  .not-found-content {
    padding: 28px 0 0;
  }

  .not-found-content .hero-actions {
    display: grid;
  }

  .not-found-status {
    margin-top: 28px;
    margin-bottom: 36px;
  }

  .consent-panel {
    align-items: stretch;
    justify-items: stretch;
    padding: 12px;
  }

  .consent-card {
    width: 100%;
    max-height: calc(100dvh - 24px);
    padding: 18px;
  }

  .consent-card h2 {
    font-size: 24px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .consent-option {
    grid-template-columns: 24px minmax(0, 1fr);
    padding: 12px;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .consent-actions button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .parallax-layer {
    transform: none !important;
  }

  .service-toggle,
  .service-toggle-icon::before,
  .portfolio-details summary::before,
  .team-flip {
    animation: none !important;
  }
}
