/* ── Fonts ─────────────────────────────────────────── */
@font-face {
  font-family: 'Halyard Display';
  src: url('fonts/fonnts.com-Halyard_Display_Book.woff') format('woff');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Halyard Display';
  src: url('fonts/fonnts.com-Halyard_Display_Medium.woff') format('woff');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Halyard Display';
  src: url('fonts/Halyard Display SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

/* ── Tokens ─────────────────────────────────────────── */
:root {
  --o1: #FFA620;
  --o2: #FF7324;
  --t1: #25ABC3;
  --t2: #4F7ABE;

  --g-orange: linear-gradient(135deg, var(--o1), var(--o2));
  --g-teal:   linear-gradient(135deg, var(--t1), var(--t2));

  --ink:    #0E0E0E;
  --white:  #ffffff;
  --off:    #F5F4F1;
  --muted:  #767676;
  --border: #E0DED9;

  --f: 'Halyard Display', system-ui, sans-serif;
  --r: 4px;
  --nav: 96px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ── Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f);
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
input, select, textarea, button { font-family: inherit; }

/* ── Layout ─────────────────────────────────────────────── */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}
.wrap--narrow {
  max-width: 760px;
}
.section { padding: 120px 0; }
.konzept-page__hero + .section { padding-top: 72px; }
.section--off   { background: var(--off); }
.section--white { background: var(--white); }

/* ── Type ─────────────────────────────────────────────── */
h1 {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: 0;
}
h2 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: .98;
  letter-spacing: 0;
}
h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0;
}
p { line-height: 1.65; }

.label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.label--light { color: rgba(255,255,255,.35); }

.label--badge {
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  align-items: center;
  padding: 6px 14px;
  background: var(--g-teal);
  color: var(--white);
  border-radius: 0;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.grad-text {
  background: var(--g-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 15px 32px;
  background: #FFA620;
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: color .3s ease, transform .2s ease;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.btn-primary span {
  position: relative;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover::after { transform: translateX(0); }
  .btn-primary:hover { color: #FF7324; transform: translateY(-1px); }
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 15px 32px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 0;
  cursor: pointer;
  transition: border-color .3s, color .3s, transform .2s;
  margin-top: 56px;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn-outline-light::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-orange);
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.btn-outline-light span { position: relative; z-index: 1; }
.btn-outline-light:hover::after { transform: translateX(0); }
.btn-outline-light:hover { border-color: transparent; color: var(--white) !important; transform: translateY(-1px); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  padding: 20px 48px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  margin-top: 56px;
  position: relative;
  overflow: hidden;
  transition: color .35s;
  width: fit-content;
  align-self: flex-start;
}
.btn-outline-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-orange);
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.btn-outline-dark:hover::before { transform: translateX(0); }
.btn-outline-dark span { position: relative; z-index: 1; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--o1);
  transition: gap .2s var(--ease);
}
.link-arrow:hover { gap: 12px; }

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.nav.in-hero {
  background: rgba(14,14,14,var(--bg-alpha, 0));
  backdrop-filter: blur(var(--blur, 0px));
  -webkit-backdrop-filter: blur(var(--blur, 0px));
}
.nav.past-hero {
  background: var(--g-orange);
  box-shadow: 0 4px 24px rgba(255,115,36,.25);
}
.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 220px 0 40px;
  height: var(--nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img {
  height: 80px;
  width: auto;
  padding: 8px 0;
}
.nav__logo img { filter: brightness(0) invert(1); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  position: relative;
  padding-bottom: 3px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  position: fixed;
  top: calc((var(--nav) - 42px) / 2);
  right: max(40px, calc(50vw - 520px));
  z-index: 101;
  display: inline-flex;
  align-items: center;
  padding: 11px 26px;
  font-family: var(--f);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  outline: none;
  overflow: hidden;
  color: #ffffff !important;
  transition: color .3s ease, transform .2s ease;
}
.nav__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #FFA620;
  z-index: 0;
}
.nav__cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.nav__cta span {
  position: relative;
  z-index: 2;
}
.nav__cta:hover::after { transform: translateX(0); }
.nav__cta:hover { color: #FF7324 !important; transform: translateY(-2px); }
.nav__cta:focus, .nav__cta:focus-visible, .nav__cta:active { outline: none; box-shadow: none; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--white);
  transition: transform .3s var(--ease), opacity .2s ease, background .3s;
}
.nav.solid .nav__burger span { background: var(--white); }
.nav__burger.open span:first-child { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:last-child { transform: translateY(-7.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--g-orange);
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 16px 40px 28px;
  gap: 0;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 14px 0;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.nav__mobile a:last-child { border-bottom: none; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav);
  position: relative;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,14,14,.82) 35%, rgba(14,14,14,.35) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px 0;
  margin-top: calc(-2vh - 100px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__pre {
  grid-column: 1 / -1;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 24px;
}
.hero__title {
  color: var(--white);
  min-height: 3.2em;
  padding-bottom: 0;
  overflow: visible;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero__title .cursor {
  display: inline-block;
  width: 4px;
  background: var(--o1);
  margin-left: 4px;
  border-radius: 2px;
  animation: blink .75s step-end infinite;
  vertical-align: baseline;
  height: .85em;
  position: relative;
  top: .05em;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.hero__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 400px;
  margin-top: -8px;
}
.hero__meta p {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255,255,255,.2), transparent);
  animation: grow 2s var(--ease) infinite;
  transform-origin: top;
}
@keyframes grow {
  0%   { transform: scaleY(0); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ── STRIPE ─────────────────────────────────────────────── */
.stripe {
  overflow: hidden;
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}
.stripe__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.stripe__inner span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.stripe__dot {
  width: 5px !important;
  height: 5px !important;
  border-radius: 50%;
  background: var(--o1);
  flex-shrink: 0;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── KONZEPT ─────────────────────────────────────────────── */
.konzept__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: end;
}
.konzept__left {
  display: flex;
  flex-direction: column;
}
.konzept__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.konzept__left h2 { margin-top: 8px; margin-bottom: 0; padding-bottom: 32px; line-height: 1; }
.konzept__lead {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.7;
}
.konzept__facts {
  display: flex;
  gap: 56px;
  padding: 32px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 0;
  margin-bottom: 0;
}
.fact strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -.01em;
  background: var(--g-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
  padding-right: 6px;
}
.fact span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.fact--bar {
  flex: 1;
  min-width: 200px;
}
.fact--hero {
  width: 100%;
}
.fact--hero .fact__bar-top .count-num {
  font-size: 3.4rem;
}
.fact--hero .fact__bar-top span {
  font-size: .85rem;
}
.fact__bar-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.fact__bar-top .count-num { margin-bottom: 0; }
.fact__bar-track {
  width: 100%;
  height: 6px;
  border-radius: 0;
  background: var(--border);
  overflow: hidden;
}
.fact--hero .fact__bar-track { height: 12px; background: var(--off); }
.fact__bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 0;
  background: var(--g-orange);
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
}
.fact--hero .fact__bar-fill {
  position: relative;
  box-shadow: 0 3px 14px rgba(255,115,36,.4);
}
.fact--hero .fact__bar-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,.22) 0px,
    rgba(255,255,255,.22) 2px,
    transparent 2px,
    transparent 10px
  );
}
.konzept__points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.konzept__points li {
  display: flex;
  gap: 16px;
  font-size: .9rem;
  color: var(--muted);
  align-items: baseline;
}
.point-num {
  color: var(--o1);
  font-weight: 600;
  flex-shrink: 0;
}

/* ── LIEFERANTEN ─────────────────────────────────────────── */
.lieferanten { padding: 80px 0; }

.lieferanten__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  gap: 0;
  align-items: stretch;
  background: var(--ink);
}
.lieferanten__hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  padding: 64px;
}
.lieferanten__hero-left h2 {
  color: var(--white);
  margin: 8px 0 20px;
}
.lieferanten__hero-left p {
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 380px;
}
.lieferanten__hero-right {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.lieferanten__hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(14,14,14,1)    0%,
    rgba(14,14,14,.97)  5%,
    rgba(14,14,14,.9)  12%,
    rgba(14,14,14,.75) 22%,
    rgba(14,14,14,.55) 33%,
    rgba(14,14,14,.33) 45%,
    rgba(14,14,14,.15) 57%,
    rgba(14,14,14,.04) 68%,
    rgba(14,14,14,0)   78%
  );
  z-index: 1;
  pointer-events: none;
}
.lieferanten__hero-right .img-slider {
  position: absolute;
  inset: 0;
  margin: 0;
  height: 100%;
}
.lieferanten__hero-right .img-slider__track { height: 100%; }
.lieferanten__hero-right .img-slider__slide {
  aspect-ratio: unset;
  height: 100%;
  flex-shrink: 0;
}


.lieferanten__marquee-wrap {
  padding: 0;
}
.lieferanten__marquee-layout {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--off);
  padding: 40px 48px;
}
.lieferanten__marquee-label h3 {
  color: var(--ink);
  font-size: 2rem;
  margin-top: 14px;
  line-height: 1;
}
.lieferanten__marquee-slider {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.lieferanten__marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: logo-scroll 14s linear infinite;
  will-change: transform;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  white-space: nowrap;
}
.lieferanten__marquee-slider:hover .lieferanten__marquee-track {
  animation-duration: 44s;
}
.lieferanten__marquee-track a {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.lieferanten__logo {
  height: 84px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.lieferanten__logo--lene {
  height: 128px;
}

/* ── CATERING ─────────────────────────────────────────────── */
.catering__head {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
/* ── EVENT HIGHLIGHT ─────────────────────────────────────── */
.event-highlight {
  padding: 100px 0;
  background: var(--ink);
  color: var(--white);
}
.event-highlight__text {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.event-highlight__text h2 { color: var(--white); margin-top: 16px; margin-bottom: 20px; line-height: 1.1; }
.event-highlight__text p { color: rgba(255,255,255,.65); margin-bottom: 36px; }
.event-highlight__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
}
.event-highlight__fact {
  padding: 40px 24px;
  background: var(--ink);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  transition: background .3s;
}
.event-highlight__fact:hover { background: #191919; }
.event-highlight__fact strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 600;
  background: var(--g-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.25;
  margin-bottom: 12px;
}
.event-highlight__fact span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.catering__head h2 { margin-top: 16px; margin-bottom: 0; }
.catering__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--border);
}
.catering__card {
  display: flex;
  flex-direction: column;
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  transition: background .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.catering__card:last-child { border-right: none; }
.catering__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-orange);
  transform: translateY(101%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
@media (hover: hover) and (pointer: fine) {
  .catering__card:hover::after { transform: translateY(0); }
  .catering__card:hover h3,
  .catering__card:hover p,
  .catering__card:hover .catering__card-cta { color: var(--white); }
  .catering__card:hover .catering__tag { background: rgba(255,255,255,.2); color: var(--white); }
  .catering__card:hover .catering__num { color: rgba(255,255,255,.4); }
}
@media (hover: none) {
  .catering__card.in-view::after { transform: translateY(0); }
  .catering__card.in-view h3,
  .catering__card.in-view p,
  .catering__card.in-view .catering__card-cta { color: var(--white); }
  .catering__card.in-view .catering__tag { background: rgba(255,255,255,.2); color: var(--white); }
  .catering__card.in-view .catering__num { color: rgba(255,255,255,.4); }
  .catering__card.in-view .catering__card-cta { gap: 12px; }
}
.catering__card > * { position: relative; z-index: 1; }
.catering__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.catering__num {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--o1);
  text-transform: uppercase;
  transition: color .3s;
}
.catering__card h3 {
  font-size: 1.6rem;
  margin: 0 0 20px;
  line-height: 1.15;
  transition: color .3s;
}
.catering__card p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 36px;
  transition: color .3s;
}
.catering__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--o1);
  transition: color .3s, gap .2s;
}
.catering__card:hover .catering__card-cta { gap: 12px; }
.catering__tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0;
  transition: background .3s, color .3s;
}
.catering__tag--teal { background: rgba(37,171,195,.12); color: var(--t1); }
.catering__tag--orange { background: rgba(255,166,32,.12); color: var(--o2); }

/* ── TEAM ─────────────────────────────────────────────── */
.team { padding-top: 88px; }
.team__head { margin-bottom: 64px; }
.team__head h2 { margin-top: 16px; margin-bottom: 20px; }
.team__head-top { margin-bottom: 0; }
.team__head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.team__head-btn { flex-shrink: 0; margin-bottom: 20px; }
.team__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}
.gallery-strip {
  background: var(--white);
  padding: 96px 0 88px;
}
.gallery-strip__head { margin-bottom: 40px; }
.gallery-strip__head .label--badge { margin-bottom: 16px; }
.gallery-strip__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}
.gallery-strip__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.gallery-strip__viewport:hover .gallery-strip__track { animation-duration: 70s; }
.gallery-strip__slide {
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 4 / 3;
  background: var(--off);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.gallery-strip__slide svg { width: 26%; height: 26%; opacity: .3; }
@media (prefers-reduced-motion: reduce) {
  .gallery-strip__track, .gallery-strip__viewport:hover .gallery-strip__track { animation: none; }
  .gallery-strip__viewport { overflow-x: auto; }
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.team__member {
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .3s;
  position: relative;
  overflow: hidden;
}
.team__member:last-child { border-right: none; }
.team__member::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-orange);
  transform: translateY(101%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.team__member > * { position: relative; z-index: 1; }
@media (hover: hover) and (pointer: fine) {
  .team__member:hover::after { transform: translateY(0); }
  .team__member:hover { border-color: transparent; }
  .team__member:hover .team__info h4,
  .team__member:hover .team__info span,
  .team__member:hover .team__info p { color: rgba(255,255,255,.9); }
  .team__member:hover .avatar-inner { background: rgba(255,255,255,.2); }
}
.avatar-inner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
}
.avatar--orange { background: var(--g-orange); }
.avatar--teal   { background: var(--g-teal); }
.avatar--dark   { background: var(--ink); border: 1px solid var(--border); }
.team__info h4 { margin-bottom: 4px; }
.team__info > span {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.team__info p { font-size: .875rem; color: var(--muted); line-height: 1.6; }
.konzept__lead { font-size: 1rem !important; }

/* ── TEAM (Unterseite) ─────────────────────────────────── */
.team-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-page__member {
  display: flex;
  flex-direction: column;
}
.team-page__photo {
  aspect-ratio: 4 / 5;
  background: var(--off);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--muted);
}
.team-page__photo svg { width: 40%; height: 40%; opacity: .35; }
.team-page__info span {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--o2);
  margin-bottom: 6px;
}
.team-page__info h3 { margin-bottom: 12px; }
.team-page__info p { font-size: .95rem; color: var(--muted); line-height: 1.7; }

/* ── BUCHEN ─────────────────────────────────────────────── */
.buchen__layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 96px;
  align-items: start;
}
.buchen__left h2 { margin: 16px 0 16px; }
.buchen__sub { font-size: 1rem; color: var(--muted); margin-bottom: 40px; line-height: 1.7; }

.buchen__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.buchen__info-item { display: flex; flex-direction: column; gap: 4px; }
.buchen__info-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--o1);
}
.buchen__info-item span:last-child,
.buchen__info-item a { font-size: .9rem; color: var(--ink); text-decoration: none; transition: color .2s; }
.buchen__info-item a:hover { color: var(--o1); }

.buchen__right {
  background: var(--white);
  border-radius: 0;
  padding: 48px;
  box-shadow: 0 2px 40px rgba(0,0,0,.06);
}

.form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }

.form__field label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.req { color: var(--o1); font-weight: 600; letter-spacing: 0; }
.form__field input,
.form__field select,
.form__field textarea {
  border: none;
  border-bottom: 1.5px solid var(--border);
  border-radius: 0;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  outline: none;
  transition: border-color .2s;
  appearance: none;
  font-weight: 300;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus { border-color: var(--o1); }
.form__field input::placeholder,
.form__field textarea::placeholder { color: #C0BDB8; }
.form__field textarea { resize: none; min-height: 100px; }
.custom-select { position: relative; }
.custom-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--border);
  padding: 12px 0;
  font-family: var(--f);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s;
}
.custom-select__trigger svg { color: var(--o1); flex-shrink: 0; transition: transform .25s; }
.custom-select.open .custom-select__trigger { border-color: var(--o1); }
.custom-select.open .custom-select__trigger svg { transform: rotate(180deg); }
#custom-select-value { color: inherit; }
#custom-select-value.placeholder { color: #C0BDB8; }
.custom-select__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  z-index: 200;
  list-style: none;
  padding: 6px 0;
  margin: 0;
  max-height: 240px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.custom-select.open .custom-select__list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.custom-select__list li {
  padding: 12px 16px;
  font-size: .95rem;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.custom-select__list li:hover { background: var(--off); }
.custom-select__list li.selected { color: var(--o1); font-weight: 600; }

.form__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .85rem;
  color: var(--muted);
  cursor: pointer;
  padding-top: 8px;
}
.form__check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--o1);
  cursor: pointer;
}
.form__check a { color: var(--o1); text-decoration: underline; }

.form .btn-primary::after { background: var(--ink); }
.form .btn-primary:hover { color: #ffffff; }

.form__ok {
  padding: 16px 20px;
  background: rgba(37,171,195,.08);
  border: 1px solid rgba(37,171,195,.2);
  color: var(--t1);
  font-size: .9rem;
  font-weight: 500;
  text-align: center;
}

.form__error {
  padding: 16px 20px;
  background: rgba(255,115,36,.08);
  border: 1px solid rgba(255,115,36,.25);
  color: var(--o2);
  font-size: .9rem;
  font-weight: 500;
  text-align: center;
}
.form__error a { color: inherit; text-decoration: underline; }


/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.35);
  padding: 80px 0 40px;
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex-shrink: 0;
}
.footer__logo {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .8;
  transition: filter .3s ease, opacity .3s ease;
}
.footer__logo:hover {
  filter: brightness(0) saturate(100%) invert(55%) sepia(80%) saturate(600%) hue-rotate(355deg) brightness(105%);
  opacity: 1;
}
.footer__gmbh {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: var(--g-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer__cols {
  display: flex;
  gap: 64px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 130px;
}
.footer__col-head {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--g-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.footer__col a {
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  transition: color .2s;
  line-height: 1;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  letter-spacing: .04em;
  padding-top: 32px;
}


/* ── MODALS ─────────────────────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.overlay.active { opacity: 1; pointer-events: all; }

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  z-index: 201;
  width: min(600px, calc(100vw - 40px));
  max-height: 80vh;
  overflow-y: auto;
  background: var(--white);
  padding: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.modal.active { opacity: 1; pointer-events: all; transform: translate(-50%, -50%); }
.modal h3 { font-size: 1.5rem; margin-bottom: 24px; text-transform: uppercase; letter-spacing: -.02em; }
.modal p  { font-size: .9rem; color: var(--muted); margin-bottom: 16px; line-height: 1.7; }
.modal p:last-child { margin-bottom: 0; }
.modal strong { color: var(--ink); font-weight: 600; }

.modal__close {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--off);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  color: var(--ink);
}
.modal__close:hover { background: var(--border); }

/* ── Cookie Banner ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.cookie-banner.active { opacity: 1; pointer-events: all; transform: translateY(0); }

.cookie-banner__box {
  width: min(380px, calc(100vw - 48px));
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  padding: 24px;
}
.cookie-banner__box h4 {
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.cookie-banner__box p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
}
.cookie-banner__box p a { color: var(--ink); text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cookie-banner__actions .btn-primary,
.cookie-banner__actions .btn-outline-dark {
  padding: 11px 18px;
  font-size: .75rem;
  width: 100%;
  margin-top: 0;
  justify-content: center;
  align-self: stretch;
}
.cookie-banner__actions .btn-primary { order: -1; }

.cookie-banner__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  font-size: .75rem;
}

@media (max-width: 640px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner__box { width: 100%; padding: 20px; }
}

/* ── Cookie Settings Modal ───────────────────────────────── */
#cookie-modal.modal {
  width: min(440px, calc(100vw - 40px));
  max-height: 90vh;
  padding: 28px 32px;
}
#cookie-modal h3 { font-size: 1.15rem; margin-bottom: 8px; }
#cookie-modal > .modal__box > p { font-size: .8rem; margin-bottom: 4px; line-height: 1.5; }

.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.cookie-option:first-of-type { margin-top: 8px; }

.cookie-option__body { flex: 1; min-width: 0; }
.cookie-option__title {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: .84rem;
  margin-bottom: 2px;
}
.cookie-option__desc {
  font-size: .74rem;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 21px;
  flex-shrink: 0;
  margin-top: 1px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-switch__track {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.cookie-switch__track::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .2s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.cookie-switch input:checked + .cookie-switch__track { background: var(--o2); }
.cookie-switch input:checked + .cookie-switch__track::before { transform: translateX(16px); }
.cookie-switch input:disabled + .cookie-switch__track { opacity: .5; cursor: not-allowed; }

.cookie-modal__actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.cookie-modal__actions .btn-primary,
.cookie-modal__actions .btn-outline-dark {
  padding: 12px 20px;
  font-size: .72rem;
  margin-top: 0;
  flex: 1;
  justify-content: center;
}

/* ── Floating CTA ────────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  background: var(--ink);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  min-width: 300px;
  opacity: 0;
  transform: translateY(120%);
  transition: transform .55s cubic-bezier(.22,.68,0,1.3), opacity .4s ease, background .25s ease;
  pointer-events: none;
}
.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-cta.visible:hover {
  transform: translateY(-3px);
  background: var(--white);
}
.float-cta.visible:hover .float-cta__text span {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}
.float-cta.visible:hover .float-cta__text span:last-child {
  background: var(--g-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.float-cta.visible:hover .float-cta__logo {
  filter: brightness(0);
  opacity: .75;
}
.float-cta.hidden { opacity: 0; pointer-events: none; transform: translateY(120%); transition: transform .3s ease, opacity .3s ease; }
.float-cta.cta-clash { opacity: 0; pointer-events: none; transform: translateY(12px); transition: transform .3s ease, opacity .3s ease; }

.float-cta__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  flex: 1;
}
.float-cta__text span {
  font-family: var(--f);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0;
}
.float-cta__text span:last-child {
  background: var(--g-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.float-cta__logo {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
  flex-shrink: 0;
  border-left: 2px solid rgba(255,255,255,.25);
  padding-left: 16px;
}

.float-cta__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 0;
  background: transparent;
  border: none;
  color: rgba(255,255,255,.8);
  font-size: .7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s;
}
.float-cta.visible:hover .float-cta__close { color: rgba(14,14,14,.6); }
.float-cta__close:hover { color: var(--ink) !important; }


/* ── Konzept Unterseite ────────────────────────────────── */
.konzept-page__hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav) + 80px) 0 80px;
  background: var(--ink);
  color: var(--white);
}
.konzept-page__hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  z-index: 0;
}
.konzept-page__hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,14,14,.25) 0%, rgba(14,14,14,.75) 60%, var(--ink) 100%);
  z-index: 1;
}
.konzept-page__hero .wrap { position: relative; z-index: 2; }
.konzept-page__hero .label--badge { margin-bottom: 24px; }
.konzept-page__hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 32px;
}
.konzept-page__intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  max-width: 560px;
  line-height: 1.7;
}
.konzept-page__block {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.konzept-page__block:last-of-type { border-bottom: none; }
.konzept-page__block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.konzept-page__block p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}
.konzept-page__block--media {
  display: flex;
  align-items: center;
  gap: 64px;
}
.konzept-page__block--media.konzept-page__block--reverse { flex-direction: row-reverse; }
.konzept-page__block-media {
  flex: 0 0 auto;
  width: 360px;
}
.konzept-page__block-media .img-slider {
  margin: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
}
.konzept-page__block-media .img-slider__track,
.konzept-page__block-media .img-slider__slide { height: 100%; }
.konzept-page__block-media .img-slider__slide { aspect-ratio: unset; }
.konzept-page__block-text { flex: 1; }
.konzept-page__block--media .konzept-page__block-text h2 { margin-bottom: 16px; }
.konzept-page__cta {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 48px 0 0;
  flex-wrap: wrap;
}
.konzept-page__cta--banner {
  position: relative;
  overflow: hidden;
  justify-content: space-between;
  margin-top: 48px;
  padding: 48px 56px;
  background: var(--ink);
  color: var(--white);
}
.konzept-page__cta-logo {
  position: absolute;
  top: 50%;
  right: -60px;
  height: 250px;
  width: auto;
  opacity: .1;
  filter: brightness(0) invert(1);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.konzept-page__cta-text, .konzept-page__cta--banner .btn-primary {
  position: relative;
  z-index: 1;
}
.konzept-page__cta-text h3 { color: var(--white); margin-bottom: 8px; }
.konzept-page__cta-text p { color: rgba(255,255,255,.65); max-width: 440px; }
.konzept-page__cta--banner .btn-primary { flex-shrink: 0; }

/* ── Bild-Slider ───────────────────────────────────────── */
.img-slider {
  position: relative;
  overflow: hidden;
  margin: 0 0 64px;
  border-radius: 0;
}
.img-slider__track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.img-slider__slide {
  min-width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
}
.img-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(14,14,14,.5);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 2;
}
.img-slider__btn:hover { background: rgba(14,14,14,.85); }
.img-slider__btn--prev { left: 16px; }
.img-slider__btn--next { right: 16px; }
.img-slider__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.img-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.img-slider__dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* ── Logo Slider ───────────────────────────────────────── */
.logo-slider {
  overflow: hidden;
  margin: 48px 0 64px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.logo-slider__track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: logo-scroll 18s linear infinite;
}
.logo-slider__track:hover { animation-play-state: paused; }
.logo-slider__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 80px;
  background: var(--white);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.logo-ph {
  font-family: var(--f);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .35;
}
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Scroll animations ─────────────────────────────────── */

/* Fade up */
[data-anim] {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-anim="up"]      { transform: translateY(40px); }
[data-anim="left"]    { transform: translateX(-40px); }
[data-anim="right"]   { transform: translateX(40px); }
[data-anim="scale"]   { transform: scale(.94); }
[data-anim="fade"]    { transform: none; }

[data-anim].anim-in {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }

/* Line wipe for headings */
.anim-line { overflow: hidden; }
.anim-line span {
  display: block;
  transform: translateY(105%);
  transition: transform .75s var(--ease);
}
.anim-line.anim-in span { transform: translateY(0); }

/* Counter number */
.count-num { display: inline-block; }

/* Reveal (legacy) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .wrap { padding: 0 24px; }
  .section { padding: 72px 0; }

  /* Nav */
  .nav__inner { padding: 0 80px 0 24px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  /* Hero */
  .hero__inner { padding: 0 24px 64px; gap: 28px; }
  .hero__meta { max-width: 100%; }
  .hero__scroll-indicator { display: none; }

  /* Konzept */
  .konzept__grid { grid-template-columns: 1fr; gap: 40px; }
  .konzept__facts { gap: 28px; }
  .konzept__left h2 { margin-bottom: 0; padding-bottom: 16px; }

  /* Lieferanten */
  .lieferanten { padding: 56px 0; }
  .lieferanten__hero { grid-template-columns: 1fr; min-height: auto; }
  .lieferanten__hero-left { padding: 48px 40px; }
  .lieferanten__hero-right { min-height: 320px; }
  .lieferanten__hero-right::after {
    background: linear-gradient(to bottom,
      rgba(14,14,14,1)   0%,
      rgba(14,14,14,.9) 15%,
      rgba(14,14,14,.4) 40%,
      rgba(14,14,14,0)  70%
    );
  }
  .lieferanten__marquee-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }
  .lieferanten__marquee-label h3 { font-size: 1.5rem; margin-top: 8px; }

  /* Catering */
  .catering__cards { grid-template-columns: 1fr; }
  .catering__card { border-right: none; border-bottom: 1px solid var(--border); }
  .catering__card:last-child { border-bottom: none; }
  .catering__card { padding: 40px 32px; }

  /* Event Highlight */
  .event-highlight { padding: 64px 0; }
  .event-highlight__text { margin-bottom: 40px; }
  .event-highlight__facts { grid-template-columns: 1fr; }
  .event-highlight__fact { padding: 24px 16px; min-height: 0; }
  .event-highlight__fact strong { font-size: 1.6rem; }

  /* Team */
  .team__grid { grid-template-columns: 1fr; }
  .team__member { border-right: none; border-bottom: 1px solid var(--border); }
  .team__member:last-child { border-bottom: none; }
  .team__head-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .team__head-btn { margin-bottom: 0; }
  .team-page__grid { grid-template-columns: 1fr; gap: 48px; }
  .team__gallery-slide { width: 200px; }

  /* Form */
  .buchen__layout { grid-template-columns: 1fr; gap: 48px; }
  .form__row { grid-template-columns: 1fr; }
  .buchen__right { padding: 32px 24px; }

  /* Footer */
  .footer__top { flex-direction: column; align-items: flex-start; gap: 40px; }
  .footer__cols { gap: 32px; flex-wrap: wrap; }
  .footer__col { min-width: calc(50% - 16px); }
  .footer__bottom { flex-direction: column; gap: 8px; }

  /* Modals */
  .modal { padding: 32px 24px; }

  /* Subpage hero */
  .konzept-page__hero { padding: calc(var(--nav) + 48px) 0 56px; }
  .konzept-page__block { padding: 40px 0; }
  .konzept-page__block--media,
  .konzept-page__block--media.konzept-page__block--reverse { flex-direction: column; gap: 32px; align-items: stretch; }
  .konzept-page__block-media { width: 100%; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .section { padding: 56px 0; }

  /* Nav */
  .nav, .nav.in-hero, .nav.past-hero {
    background: var(--g-orange);
    box-shadow: 0 4px 24px rgba(255,115,36,.25);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav__inner { padding: 0 20px; align-items: flex-start; }
  .nav__logo img { height: 70px; margin-top: 12px; }
  .nav__burger { margin-top: 34px; margin-left: -36px; }
  .nav__burger { height: 22px !important; width: 22px !important; gap: 5px !important; align-items: center; padding: 0 !important; }
  .nav__burger span { height: 2.5px !important; width: 22px !important; flex: 0 0 2.5px !important; }
  .nav__burger.open span:first-child { transform: translateY(7.5px) rotate(45deg); }
  .nav__burger.open span:last-child { transform: translateY(-7.5px) rotate(-45deg); }
  .nav__cta { display: none; }
  .nav__mobile { padding: 12px 20px 24px; }

  /* Hero */
  .hero { min-height: 78vh; min-height: 78svh; }
  .hero__inner { padding: 0 20px 48px; margin-top: 0; }
  .hero__pre { margin-bottom: 12px; font-size: .68rem; }
  .hero__meta { gap: 16px; }
  .hero__meta p { font-size: .9rem; }
  .btn-outline-light { margin-top: 32px; padding: 13px 24px; font-size: .82rem; }
  .konzept-page__hero {
    min-height: 78vh;
    min-height: 78svh;
    display: flex;
    align-items: center;
    padding-top: var(--nav);
    padding-bottom: 0;
  }

  /* Konzept */
  .konzept__facts { flex-direction: column; gap: 20px; border-top: none; border-bottom: none; }
  .fact strong { font-size: 1.8rem; }
  .konzept__lead { font-size: .95rem; margin-bottom: 32px; }

  /* Lieferanten */
  .lieferanten { padding: 40px 0; }
  .lieferanten__hero-left { padding: 36px 20px; }
  .lieferanten__hero-right { min-height: 260px; }
  .lieferanten__marquee-layout { padding: 40px 20px 28px; gap: 20px; }
  .lieferanten__marquee-label h3 { font-size: 1.3rem; }
  .lieferanten__marquee-track { font-size: 1.15rem; gap: 48px; }
  .lieferanten__logo { height: 58px; }
  .lieferanten__logo--lene { height: 88px; }

  /* Catering */
  .catering__head h2 { margin-top: 8px; }
  .catering__cards { margin-top: 24px; }
  .catering__card { padding: 32px 24px; }
  .catering__card-top { margin-bottom: 20px; }
  .catering__card h3 { font-size: 1.35rem; }

  /* Team */
  .team__member { padding: 36px 24px; }
  .team__head { margin-bottom: 40px; }

  /* Buchen */
  .buchen__layout { gap: 36px; }
  .buchen__right { padding: 28px 20px; }
  .buchen__left h2 { font-size: clamp(2rem, 7vw, 3rem); }

  /* Footer */
  .footer { padding: 48px 0 28px; }
  .footer__top { padding-bottom: 32px; gap: 28px; }
  .footer__cols { gap: 28px; }
  .footer__col { min-width: 100%; gap: 10px; }
  .footer__logo { height: 64px; }

  /* Float CTA */
  .float-cta {
    bottom: 16px;
    right: 16px;
    padding: 16px 18px;
    min-width: 0;
    max-width: calc(100vw - 32px);
    gap: 12px;
  }
  .float-cta__text span { font-size: 1.15rem; }
  .float-cta__logo { height: 52px; padding-left: 12px; margin-right: 22px; }
  .float-cta__close { top: 6px; right: 6px; }

  /* Subpage */
  .konzept-page__hero { padding: calc(var(--nav) + 32px) 0 40px; }
  .konzept-page__hero h1 { font-size: clamp(2.4rem, 9vw, 4rem); }
  .konzept-page__intro { font-size: 1rem; }
  .konzept-page__cta { gap: 20px; padding-top: 32px; }
  .konzept-page__cta .btn-primary { width: 100%; justify-content: center; }
  .konzept-page__cta--banner { padding: 32px 24px; }
  .konzept-page__cta-text p { max-width: none; }
  .konzept-page__cta-logo { display: none; }
}

@media (max-width: 400px) {
  .nav__inner { padding: 0 16px; }
  .wrap { padding: 0 16px; }
  .hero__inner { padding: 0 16px 40px; }
  .lieferanten__hero-left { padding: 28px 16px; }
  .catering__card { padding: 28px 20px; }
  .team__member { padding: 28px 20px; }
  .buchen__right { padding: 24px 16px; }
  .konzept__facts { gap: 16px; }
  .fact--bar { min-width: 0; }
}
