:root {
  --black: #05060c;
  --black-2: #080a14;
  --ink: #0c101c;
  --red: #ff2a00;
  --red-deep: #c41000;
  --blue: #4f8cff;
  --blue-hot: #7eb0ff;
  --white: #f6f1e8;
  --muted: rgba(246, 241, 232, 0.68);
  --line: rgba(246, 241, 232, 0.14);
  --display: "Bebas Neue", Impact, sans-serif;
  --graffiti: "Rubik Distressed", "Bangers", cursive;
  --funk: "Bangers", Impact, sans-serif;
  --stamp: "Permanent Marker", "Bangers", cursive;
  --logo-script: "Homemade Apple", "Caveat", cursive;
  --sans: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.section {
  padding: clamp(4.5rem, 10vw, 9rem) clamp(1.25rem, 5vw, 5rem);
  position: relative;
}

.display {
  font-family: var(--display);
  font-size: clamp(3.2rem, 8vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: 0.02em;
  margin: 0.15em 0 0.35em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue-hot);
  margin: 0;
}

.lead {
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 500;
  max-width: 34rem;
}

.body {
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.05rem;
}

.gold {
  color: var(--blue-hot);
}

.neon {
  color: var(--blue-hot);
  text-shadow:
    0 0 8px rgba(79, 140, 255, 0.95),
    0 0 28px rgba(79, 140, 255, 0.55);
}

.neon-blue {
  color: var(--blue-hot);
  text-shadow:
    0 0 10px rgba(79, 140, 255, 0.95),
    0 0 32px rgba(79, 140, 255, 0.55);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.45s steps(4) infinite;
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 79;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.12) 3px,
    transparent 4px
  );
  opacity: 0.06;
  mix-blend-mode: overlay;
}

@keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-2%, 1%);
  }
  50% {
    transform: translate(1%, -2%);
  }
  75% {
    transform: translate(-1%, 2%);
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.78), transparent);
  mix-blend-mode: normal;
}

.intern-bar {
  flex-wrap: nowrap;
  gap: 0.8rem;
  background: rgba(5, 6, 12, 0.96);
}

body.nav-open {
  overflow: hidden;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(79, 140, 255, 0.18));
  transition: filter 0.25s ease, transform 0.25s ease;
}

.nav-logo:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 16px rgba(79, 140, 255, 0.42));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.is-current {
  color: var(--blue-hot);
}

.nav-cta {
  border: 1px solid var(--white);
  padding: 0.55rem 0.95rem;
  color: #000 !important;
  background: var(--white);
  font-family: var(--display);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--blue);
  color: #fff !important;
  border-color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--white);
  transition: 0.25s ease;
}

.nav-toggle span:first-child {
  top: 16px;
}

.nav-toggle span:last-child {
  top: 24px;
}

.nav-toggle.is-open span:first-child {
  top: 20px;
  transform: rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  top: 20px;
  transform: rotate(-45deg);
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.hero-media,
.hero-photo,
.hero-video,
.hero-scrim,
.hero-vignette,
.smoke {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: #05060c;
}

.hero-photo,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 58%;
  opacity: 0;
  transition: opacity 0.65s ease;
  filter: saturate(1.28) contrast(1.12) brightness(0.86);
  z-index: 0;
  background: #07060a;
  pointer-events: none;
}

.hero-photo.is-in,
.hero-video.is-in {
  opacity: 1;
  z-index: 1;
}

.hero-photo.is-in {
  animation: ken 18s ease-in-out infinite alternate;
}

@keyframes ken {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.14) translate(-1.5%, 1%);
  }
}

.hero-scrim {
  background:
    linear-gradient(to top, rgba(7, 6, 10, 0.9) 0%, rgba(7, 6, 10, 0.22) 46%, rgba(20, 12, 4, 0.42) 100%),
    radial-gradient(circle at 50% 40%, transparent 0%, rgba(5, 6, 12, 0.38) 100%);
}

.hero-vignette {
  box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.85);
}

.smoke {
  background:
    radial-gradient(ellipse at 20% 110%, rgba(180, 180, 180, 0.18), transparent 55%),
    radial-gradient(ellipse at 78% 120%, rgba(79, 140, 255, 0.16), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 42, 0, 0.12), transparent 48%);
  animation: smoke 12s ease-in-out infinite alternate;
  filter: blur(18px);
}

@keyframes smoke {
  from {
    transform: translateY(20px) scale(1);
    opacity: 0.65;
  }
  to {
    transform: translateY(-40px) scale(1.12);
    opacity: 1;
  }
}

.flames {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 168px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.9) 18%, transparent 88%);
  mask-image: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.9) 18%, transparent 88%);
}

.flame-reel {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 170%;
  bottom: -22%;
  object-fit: cover;
  object-position: center 78%;
  mix-blend-mode: screen;
  filter: saturate(1.35) contrast(1.18) brightness(1.05) blur(0.3px);
  opacity: 0.92;
}

@media (prefers-reduced-motion: reduce) {
  .flame-reel {
    display: none;
  }

  .hero .hero-tag,
  .gallery-hero .hero-tag {
    animation: none;
  }

  .hero-kicker span {
    animation: none;
    opacity: 1;
  }

  .btn-book,
  .btn-book::before,
  .booking-form.is-hit,
  .ff-robot,
  .ff-robot-eye,
  .ff-robot-hat,
  .ff-robot-pan,
  .ff-say,
  .ff-live,
  .cater-card,
  .cater-card .btn,
  .cater-card .btn::before,
  .page-caterings .hero-actions .btn,
  .page-caterings .hero-actions .btn::before,
  .page-caterings .cater-custom .btn-gold,
  .page-caterings .cater-custom .btn-gold::before,
  .page-caterings .cater-cta .btn-gold,
  .page-caterings .cater-cta .btn-gold::before {
    animation: none;
  }

  .hero-kicker span:nth-child(1) {
    transform: rotate(-9deg);
  }

  .hero-kicker span:nth-child(2) {
    transform: rotate(6deg);
  }

  .hero-kicker span:nth-child(3) {
    transform: rotate(8deg);
  }

  .factory-shot,
  .factory-shot img,
  .factory-shot figcaption {
    transition: none;
    opacity: 1;
    transform: none;
    filter: grayscale(0.05) contrast(1.08) saturate(1.08) brightness(1);
  }

  .food-title-line,
  .food-title-hit,
  .food-marquee,
  .food-card,
  .food-card-img img,
  .food-index {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .food-title-line::after {
    width: 104%;
  }

  .events-title-line,
  .events-title-hit,
  .events-copy,
  .events-collage,
  .events-shot img {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }

  .gallery-title-line,
  .gallery-title-hit,
  #gallery .filters,
  #gallery .masonry-item {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 6rem 1.25rem 4rem;
}

.hero-kicker {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  margin: 0 0 1.2rem;
}

.hero-kicker span {
  display: inline-block;
  font-family: var(--funk);
  font-size: clamp(1.85rem, 4.6vw, 3.3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.9;
  color: #fff;
  background: #000;
  border: 3px solid #fff;
  padding: 0.28rem 0.75rem 0.18rem;
  box-shadow: 5px 5px 0 #000;
  opacity: 0;
}

.hero-kicker span:nth-child(1) {
  animation: kicker-spin-a 0.85s 0.12s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-kicker span:nth-child(2) {
  font-size: clamp(2.5rem, 6.8vw, 4.6rem);
  z-index: 1;
  animation: kicker-spin-b 0.9s 0.26s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-kicker span:nth-child(3) {
  animation: kicker-spin-c 0.85s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes kicker-spin-a {
  0% {
    opacity: 0;
    transform: translateY(-28px) rotate(-28deg) scale(0.5);
  }
  62% {
    opacity: 1;
    transform: translateY(4px) rotate(-4deg) scale(1.12);
  }
  100% {
    opacity: 1;
    transform: rotate(-9deg) scale(1);
  }
}

@keyframes kicker-spin-b {
  0% {
    opacity: 0;
    transform: translateY(-32px) rotate(24deg) scale(0.45);
  }
  62% {
    opacity: 1;
    transform: translateY(6px) rotate(2deg) scale(1.14);
  }
  100% {
    opacity: 1;
    transform: rotate(6deg) scale(1);
  }
}

@keyframes kicker-spin-c {
  0% {
    opacity: 0;
    transform: translateY(-26px) rotate(22deg) scale(0.5);
  }
  62% {
    opacity: 1;
    transform: translateY(3px) rotate(10deg) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: rotate(8deg) scale(1);
  }
}

.hero-title {
  margin: 0.15rem 0 0.2rem;
}

.hero-logo {
  width: min(34rem, 78vw);
  max-height: min(46vh, 420px);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.62));
}

.hero-title span,
.cta-title span {
  display: block;
}

.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.glitch::before {
  color: var(--blue-hot);
  animation: glitch-a 3.4s infinite linear alternate-reverse;
  clip-path: inset(0 0 58% 0);
  transform: translate(-3px, 0);
}

.glitch::after {
  color: var(--blue-hot);
  animation: glitch-b 2.6s infinite linear alternate-reverse;
  clip-path: inset(55% 0 0 0);
  transform: translate(3px, 0);
  mix-blend-mode: screen;
}

@keyframes glitch-a {
  0%,
  86%,
  100% {
    transform: translate(0);
    opacity: 0;
  }
  87% {
    transform: translate(-6px, 1px);
    opacity: 0.8;
  }
  90% {
    transform: translate(5px, -2px);
    opacity: 0.6;
  }
  93% {
    transform: translate(-3px, 2px);
    opacity: 0;
  }
}

@keyframes glitch-b {
  0%,
  80%,
  100% {
    transform: translate(0);
    opacity: 0;
  }
  81% {
    transform: translate(7px, -1px);
    opacity: 0.7;
  }
  85% {
    transform: translate(-4px, 2px);
    opacity: 0.5;
  }
}

.hero-tag {
  font-family: var(--funk);
  font-size: clamp(1.45rem, 3.8vw, 3rem);
  letter-spacing: 0.1em;
  margin: 1.1rem 0 2rem;
  color: #fff;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.75),
    0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero .hero-tag,
.gallery-hero .hero-tag {
  animation: motto-flicker 4.8s ease-in-out infinite;
}

@keyframes motto-flicker {
  0%,
  41%,
  43%,
  45%,
  82%,
  84%,
  100% {
    opacity: 1;
    text-shadow:
      0 1px 1px rgba(0, 0, 0, 0.75),
      0 2px 8px rgba(0, 0, 0, 0.5);
  }
  42%,
  44% {
    opacity: 0.62;
    text-shadow:
      0 1px 1px rgba(0, 0, 0, 0.55),
      0 2px 6px rgba(0, 0, 0, 0.35);
  }
  83% {
    opacity: 0.78;
  }
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.events-copy .hero-actions {
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 1.05rem 1.5rem;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  box-shadow: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--white);
  color: var(--black);
}

.btn-gold {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-fire {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-gold:hover,
.btn-fire:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn-book {
  position: relative;
  overflow: hidden;
  min-width: 280px;
  padding: 1.15rem 2.1rem;
  font-size: 1.85rem;
  letter-spacing: 0.12em;
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow:
    0 0 0 0 rgba(126, 176, 255, 0.55),
    0 10px 28px rgba(0, 0, 0, 0.35);
  animation: book-pulse 2.4s ease-in-out infinite;
}

.btn-book::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.55) 48%, transparent 72%);
  transform: translateX(-120%);
  animation: book-shine 2.8s ease-in-out infinite;
}

.btn-book:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 0 7px rgba(79, 140, 255, 0.18),
    0 14px 32px rgba(79, 140, 255, 0.28);
  animation: none;
}

.btn-book:hover::before {
  animation: none;
}

@keyframes book-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(126, 176, 255, 0.5),
      0 10px 28px rgba(0, 0, 0, 0.35);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(126, 176, 255, 0),
      0 14px 32px rgba(79, 140, 255, 0.22);
    transform: translateY(-2px) scale(1.02);
  }
}

@keyframes book-shine {
  0%,
  55% {
    transform: translateX(-120%);
  }
  80%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes form-hit {
  0% {
    border-color: var(--blue-hot);
    box-shadow: 0 0 0 0 rgba(126, 176, 255, 0.45);
  }
  100% {
    border-color: var(--line);
    box-shadow: 0 0 0 16px rgba(126, 176, 255, 0);
  }
}

.scroll-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-hot);
}

.scroll-hint i {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--blue-hot), transparent);
  animation: drip 1.6s ease-in-out infinite;
}

@keyframes drip {
  0% {
    transform: scaleY(0.3);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black-2);
  padding: 0.85rem 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 1.6rem;
  animation: marquee 28s linear infinite;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  letter-spacing: 0.12em;
  white-space: nowrap;
  color: var(--white);
}

.ticker em {
  color: var(--blue);
  font-style: normal;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

.factory-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.factory-visuals {
  display: grid;
  grid-template-columns: 1.32fr 0.68fr;
  grid-template-rows: minmax(16rem, 1fr) minmax(16rem, 1fr);
  gap: 0.85rem;
  min-height: 38rem;
  position: relative;
  padding: 1.4rem;
  isolation: isolate;
}

.factory-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(79, 140, 255, 0.22), transparent 58%),
    radial-gradient(circle at 80% 90%, rgba(79, 140, 255, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(12, 16, 28, 0.2), rgba(5, 6, 12, 0.55));
  border: 1px solid rgba(126, 176, 255, 0.16);
}

.factory-stage::before {
  content: "NOISE";
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(6rem, 18vw, 12rem);
  letter-spacing: 0.04em;
  line-height: 0.75;
  color: transparent;
  -webkit-text-stroke: 1px rgba(126, 176, 255, 0.28);
  opacity: 0.9;
}

.factory-stage::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(126, 176, 255, 0.12);
  box-shadow:
    0 0 0 42px rgba(79, 140, 255, 0.04),
    0 0 0 84px rgba(79, 140, 255, 0.03);
}

.factory-shot {
  margin: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  min-height: 0;
  opacity: 0;
  transform: rotate(var(--spin, 14deg)) scale(0.84);
  transform-origin: center center;
  will-change: transform, opacity;
  transition:
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms),
    opacity 0.4s ease var(--d, 0ms);
}

.factory-shot.is-in {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.factory-shot-inner {
  height: 100%;
  overflow: hidden;
}

.factory-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  min-height: 0;
  transform: scale(1.08);
  filter: grayscale(0.12) contrast(1.08) saturate(1.05) brightness(0.78);
  transition:
    transform 1.15s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms),
    filter 0.8s ease var(--d, 0ms);
}

.factory-shot.is-in img {
  transform: scale(1);
  filter: grayscale(0.05) contrast(1.08) saturate(1.08) brightness(1);
}

.factory-shot.is-in:hover img {
  transform: scale(1.07);
  filter: grayscale(0) contrast(1.12) saturate(1.15) brightness(1.05);
}

.factory-shot.is-portrait {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.factory-shot.is-portrait img {
  object-position: center 8%;
}

.factory-shot.is-portrait.is-in:hover img {
  transform: scale(1.04);
}

.factory-shot:nth-child(3) img {
  object-position: center 16%;
}

.factory-shot:nth-child(4) img {
  object-position: center 22%;
}

.factory-shot figcaption {
  position: absolute;
  left: 0.8rem;
  bottom: 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-hot);
  text-shadow: 0 2px 10px #000;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: calc(var(--d, 0ms) + 420ms);
}

.factory-shot.is-in figcaption {
  opacity: 1;
  transform: none;
}

.section-head {
  margin-bottom: 3rem;
}

.food {
  background: var(--black);
  overflow: hidden;
}

.food-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(79, 140, 255, 0.16), transparent 34%),
    radial-gradient(circle at 88% 70%, rgba(79, 140, 255, 0.1), transparent 40%);
}

.food-stage::before {
  content: "MANIFEST";
  position: absolute;
  right: -4%;
  top: 4%;
  font-family: var(--display);
  font-size: clamp(5rem, 16vw, 14rem);
  line-height: 0.75;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(126, 176, 255, 0.18);
}

.food-head {
  position: relative;
  z-index: 1;
}

.food-title {
  overflow: visible;
}

.food-title-line,
.food-title-hit {
  display: block;
}

.food-title-line {
  position: relative;
  width: fit-content;
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.food.is-in .food-title-line {
  opacity: 1;
  transform: none;
}

.food-title-line::after {
  content: "";
  position: absolute;
  left: -2%;
  top: 48%;
  height: 0.12em;
  width: 0;
  background: var(--blue);
  transform: rotate(-6deg);
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(79, 140, 255, 0.7);
}

.food.is-in .food-title-line::after {
  animation: menu-strike 0.55s 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes menu-strike {
  to {
    width: 104%;
  }
}

.food-title-hit {
  position: relative;
  opacity: 0;
  transform: scale(0.72) rotate(-3deg);
  transform-origin: left center;
  text-shadow: 0 0 28px rgba(79, 140, 255, 0.35);
}

.food.is-in .food-title-hit {
  animation: manifest-pop 0.85s 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.food-title-hit::before,
.food-title-hit::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0;
}

.food.is-in .food-title-hit::before {
  animation: manifest-glitch 2.8s 1.1s infinite;
  color: var(--blue);
  clip-path: inset(0 0 55% 0);
}

.food.is-in .food-title-hit::after {
  animation: manifest-glitch 2.4s 1.3s infinite reverse;
  color: #fff;
  mix-blend-mode: screen;
  clip-path: inset(50% 0 0 0);
}

@keyframes manifest-pop {
  0% {
    opacity: 0;
    transform: scale(0.72) rotate(-3deg);
    letter-spacing: 0.18em;
  }
  62% {
    opacity: 1;
    transform: scale(1.08) rotate(1.2deg);
    letter-spacing: 0.01em;
  }
  100% {
    opacity: 1;
    transform: none;
    letter-spacing: 0.02em;
  }
}

@keyframes manifest-glitch {
  0%,
  84%,
  100% {
    transform: translate(0);
    opacity: 0;
  }
  86% {
    transform: translate(-8px, 1px);
    opacity: 0.7;
  }
  89% {
    transform: translate(7px, -2px);
    opacity: 0.5;
  }
  92% {
    opacity: 0;
  }
}

.food-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0 0 2.4rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.45s, transform 0.5s ease 0.45s;
}

.food.is-in .food-marquee {
  opacity: 1;
  transform: none;
}

.food-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.2rem;
  animation: marquee 22s linear infinite;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  letter-spacing: 0.12em;
  color: var(--white);
}

.food-marquee em {
  color: var(--blue);
  font-style: normal;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  position: relative;
  z-index: 1;
}

.food-card {
  background: var(--ink);
  border: 1px solid var(--line);
  overflow: hidden;
  opacity: 0;
  transform: rotate(var(--spin, 8deg)) translateY(48px) scale(0.9);
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms),
    opacity 0.4s ease var(--d, 0ms),
    border-color 0.35s ease;
}

.food.is-in .food-card {
  opacity: 1;
  transform: none;
}

.food-card-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.food-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: translateX(-120%);
  pointer-events: none;
}

.food-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.18);
  filter: brightness(0.82);
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms),
    filter 0.6s ease;
}

.food.is-in .food-card-img img {
  transform: scale(1);
  filter: brightness(1);
}

.food-index {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--blue-hot);
  transform: scale(0.4);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  transition-delay: calc(var(--d, 0ms) + 280ms);
}

.food.is-in .food-index {
  transform: none;
  opacity: 1;
}

.food-card-body {
  padding: 1.15rem 1.15rem 1.4rem;
}

.food-card h3 {
  font-family: var(--display);
  font-size: 2.05rem;
  margin: 0;
  letter-spacing: 0.04em;
}

.food-meta {
  color: var(--blue-hot);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin: 0.2rem 0 0.7rem;
}

.food-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.food.is-in .food-card:hover {
  transform: translateY(-14px) rotate(-1.4deg);
  border-color: rgba(126, 176, 255, 0.55);
}

.food.is-in .food-card:nth-child(even):hover {
  transform: translateY(-14px) rotate(1.4deg);
}

.food-card:hover .food-card-img img {
  transform: scale(1.12);
  filter: brightness(1.12) saturate(1.18);
}

.food-card:hover .food-card-img::after {
  animation: food-shine 0.7s ease;
}

.food-card:hover .food-index {
  transform: scale(1.18);
}

@keyframes food-shine {
  to {
    transform: translateX(120%);
  }
}

.events {
  background: var(--black);
  overflow: hidden;
}

.events-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 28%, rgba(79, 140, 255, 0.16), transparent 36%),
    radial-gradient(circle at 12% 80%, rgba(79, 140, 255, 0.08), transparent 32%);
}

.events-glow::before {
  content: "PARTY";
  position: absolute;
  right: -2%;
  bottom: 6%;
  font-family: var(--display);
  font-size: clamp(6rem, 18vw, 16rem);
  line-height: 0.75;
  color: transparent;
  -webkit-text-stroke: 1px rgba(126, 176, 255, 0.16);
}

.events-head {
  position: relative;
  z-index: 1;
  margin-bottom: 2.2rem;
}

.events-title {
  margin: 0.15em 0 0;
}

.events-title-line,
.events-title-hit {
  display: block;
}

.events-title-line {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.events-title-hit {
  opacity: 0;
  transform: scale(0.78) rotate(-2.5deg);
  transform-origin: left center;
}

.events.is-in .events-title-line {
  opacity: 1;
  transform: none;
}

.events.is-in .events-title-hit {
  animation: manifest-pop 0.85s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.events-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.events-copy {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease 0.18s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.18s;
}

.events.is-in .events-copy {
  opacity: 1;
  transform: none;
}

.event-list,
.event-tags {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 2rem;
}

.event-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.12rem;
  font-weight: 600;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.event-tags li {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.85rem;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.event-tags li:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}

.events-collage {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.7rem;
  height: min(620px, 68vh);
  min-height: 420px;
  position: relative;
  opacity: 0;
  transform: rotate(6deg) scale(0.9);
  transform-origin: center center;
  transition: opacity 0.45s ease 0.12s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
}

.events.is-in .events-collage {
  opacity: 1;
  transform: none;
}

.events-shot {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 0;
  background: var(--ink);
}

.events-shot-main {
  grid-row: 1 / -1;
}

.events-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: saturate(1.18) contrast(1.1) brightness(1.03);
  transform: scale(1.12);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.events.is-in .events-shot img {
  transform: scale(1);
}

.events.is-in .events-shot:hover img {
  transform: scale(1.08);
}

.events-shot figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-hot);
  text-shadow: 0 2px 10px #000;
}

.events-badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  font-family: var(--display);
  letter-spacing: 0.16em;
  background: var(--white);
  color: var(--black);
  padding: 0.45rem 0.7rem;
  pointer-events: none;
}

.events-media {
  position: relative;
  overflow: hidden;
  height: min(620px, 68vh);
  min-height: 420px;
  border: 1px solid var(--line);
}

.events-media img,
.events-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.12) contrast(1.06);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.filters button {
  border: 1px solid var(--line);
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(79, 140, 255, 0.06);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.filters button.is-on,
.filters button:hover {
  border-color: rgba(126, 176, 255, 0.42);
  color: var(--blue-hot);
  background: rgba(79, 140, 255, 0.2);
}

.masonry {
  columns: 3;
  column-gap: 0.9rem;
}

.masonry-item {
  width: 100%;
  margin: 0 0 0.9rem;
  padding: 0;
  position: relative;
  overflow: hidden;
  break-inside: avoid;
  display: block;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.masonry-item.is-tall img {
  min-height: 380px;
  object-fit: cover;
}

.masonry-item span {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-hot);
  text-shadow: 0 2px 12px #000;
}

.masonry-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.1) saturate(1.15);
}

.gallery-head {
  position: relative;
  z-index: 1;
}

.gallery-title-line,
.gallery-title-hit {
  display: block;
}

.gallery-title-line {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-title-hit {
  opacity: 0;
  transform: scale(0.78) rotate(-2.5deg);
  transform-origin: left center;
}

#gallery.is-in .gallery-title-line {
  opacity: 1;
  transform: none;
}

#gallery.is-in .gallery-title-hit {
  animation: manifest-pop 0.85s 0.18s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#gallery .filters {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease 0.2s, transform 0.45s ease 0.2s;
}

#gallery.is-in .filters {
  opacity: 1;
  transform: none;
}

#gallery .masonry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem 1.1rem;
  columns: auto;
  column-gap: 0;
  align-items: start;
}

#gallery .masonry-item {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  padding: 0.4rem;
  border: 3px solid #000;
  box-shadow: 5px 5px 0 var(--blue);
  opacity: 0;
  line-height: 0;
  font-size: 0;
}

#gallery.is-in .masonry-item:nth-child(odd) {
  animation: gal-slide-l 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms) both;
}

#gallery.is-in .masonry-item:nth-child(even) {
  animation: gal-slide-r 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms) both;
}

@keyframes gal-slide-l {
  from {
    opacity: 0;
    transform: translateX(-72px) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: rotate(-3deg);
  }
}

@keyframes gal-slide-r {
  from {
    opacity: 0;
    transform: translateX(72px) rotate(10deg);
  }
  to {
    opacity: 1;
    transform: rotate(2.8deg);
  }
}

#gallery .masonry-item img {
  display: block;
  width: 100%;
  height: 250px;
  min-height: 0;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.08) saturate(1.12) brightness(1.04);
}

#gallery .masonry-item:hover img {
  transform: scale(1.07);
  filter: contrast(1.12) saturate(1.18) brightness(1.07);
}

#gallery .masonry-item.is-tall img {
  height: 320px;
  min-height: 0;
}

#gallery .masonry-item span {
  display: none;
}

#gallery.is-in .masonry-item:hover {
  animation: none;
  opacity: 1;
  transform: rotate(0deg) translateY(-8px);
  z-index: 2;
  box-shadow: 8px 8px 0 var(--blue);
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.92);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(255, 42, 0, 0.18);
}

.lightbox p {
  position: absolute;
  bottom: 1.2rem;
  left: 0;
  right: 0;
  text-align: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--blue-hot);
}

.lightbox-count {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--muted);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid var(--white);
  background: #000;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  background: var(--white);
  color: var(--black);
}

.lightbox-nav.is-prev {
  left: clamp(0.6rem, 3vw, 2.4rem);
}

.lightbox-nav.is-next {
  right: clamp(0.6rem, 3vw, 2.4rem);
}

.welcome-overlay[hidden] {
  display: none !important;
}

.welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(5, 6, 12, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.welcome-overlay.is-on {
  opacity: 1;
}

.welcome-open {
  overflow: hidden;
}

.welcome-card {
  position: relative;
  overflow: hidden;
  width: min(34rem, 100%);
  padding: 2rem 1.6rem 1.7rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% -10%, rgba(79, 140, 255, 0.28), transparent 46%),
    rgba(8, 10, 20, 0.96);
  border: 1px solid rgba(79, 140, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(79, 140, 255, 0.18), 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(79, 140, 255, 0.22);
  transform: translateY(18px) scale(0.96);
  animation: welcome-pop 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards, welcome-glow 2.4s ease-in-out 0.55s infinite;
}

.welcome-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), rgba(79, 140, 255, 0.28), transparent);
  transform: skewX(-22deg);
  pointer-events: none;
  animation: welcome-shine 3.2s ease-in-out 0.4s infinite;
}

.welcome-logo-wrap {
  width: 7.2rem;
  height: 7.2rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  animation: welcome-logo 3.6s ease-in-out infinite;
}

.welcome-logo-wrap img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(79, 140, 255, 0.55));
}

.welcome-card h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  letter-spacing: 0.05em;
  line-height: 0.95;
  margin: 0.35rem 0 0.9rem;
}

.welcome-card p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.welcome-card a {
  color: var(--blue-hot);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.welcome-close {
  margin-top: 0.55rem;
  min-width: 12rem;
}

@keyframes welcome-pop {
  to {
    transform: none;
  }
}

@keyframes welcome-glow {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(79, 140, 255, 0.18), 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 28px rgba(79, 140, 255, 0.16);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(126, 176, 255, 0.4), 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 48px rgba(79, 140, 255, 0.38);
  }
}

@keyframes welcome-shine {
  0%,
  58% {
    left: -130%;
  }
  82%,
  100% {
    left: 145%;
  }
}

@keyframes welcome-logo {
  0%,
  100% {
    transform: rotate(-4deg) scale(1);
    filter: drop-shadow(0 0 10px rgba(79, 140, 255, 0.3));
  }
  50% {
    transform: rotate(4deg) scale(1.06);
    filter: drop-shadow(0 0 22px rgba(79, 140, 255, 0.7));
  }
}

@media (prefers-reduced-motion: reduce) {
  .welcome-overlay,
  .welcome-card,
  .welcome-card::before,
  .welcome-logo-wrap {
    animation: none;
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.gallery-more {
  display: flex;
  margin: 2.4rem auto 0;
  width: fit-content;
}

.gallery-hero {
  position: relative;
  min-height: 58vh;
  min-height: 58dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.gallery-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(1.18) contrast(1.08) brightness(0.62);
}

.page-booking .gallery-hero > img {
  object-position: center 22%;
  filter: saturate(1.2) contrast(1.1) brightness(0.68);
}

.gallery-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 12, 0.55) 0%, rgba(5, 6, 12, 0.18) 40%, rgba(5, 6, 12, 0.88) 100%),
    radial-gradient(circle at 50% 80%, rgba(255, 42, 0, 0.18), transparent 46%);
}

.gallery-hero-copy {
  position: relative;
  z-index: 2;
  padding: 7rem 1.25rem 3rem;
}

.gallery-hero .display {
  font-size: clamp(5.2rem, 16vw, 14rem);
}

.gallery-intro {
  max-width: 42rem;
  margin-bottom: 2.4rem;
}

.gallery-page-grid {
  columns: 4;
}

.page-gallery .gallery-main {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.team-main {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.team-main .body {
  max-width: 42rem;
  color: var(--muted);
  margin: 1rem 0 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
}

.team-grid-service {
  margin-top: 1.1rem;
}

.team-card {
  background: var(--ink);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 176, 255, 0.35);
}

.team-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.team-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.08);
}

.team-card-chris img {
  object-position: 52% 14%;
  filter: contrast(1.06) hue-rotate(-12deg) saturate(0.95);
}

.team-card-chris:hover img {
  filter: contrast(1.12) hue-rotate(-12deg) saturate(1.05);
}

.team-card-thomas img {
  object-position: 72% 10%;
  filter: contrast(1.04);
}

.team-card-thomas:hover img {
  filter: contrast(1.1);
}

.team-card-claudia img {
  object-position: 52% 12%;
  filter: contrast(1.04);
}

.team-card-claudia:hover img {
  filter: contrast(1.1);
}

.team-card-service img {
  object-position: 50% 42%;
  filter: contrast(1.06) saturate(0.95);
}

.team-card-service:hover img {
  filter: contrast(1.12) saturate(1.02);
}

.team-card-body {
  padding: 1.15rem 1.15rem 1.4rem;
}

.team-role {
  margin: 0 0 0.35rem;
  color: var(--blue-hot);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.team-card h3 {
  font-family: var(--display);
  font-size: 2.05rem;
  margin: 0 0 0.45rem;
  letter-spacing: 0.04em;
}

.team-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-main {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.booking-steps {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.booking-steps li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}

.booking-steps span {
  color: var(--blue-hot);
  font-size: 1.05rem;
  letter-spacing: 0.16em;
}

.booking-contact a {
  display: inline-block;
  color: var(--blue-hot);
  letter-spacing: 0.04em;
}

.booking-contact p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-form {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: rgba(12, 16, 28, 0.72);
  scroll-margin-top: 7rem;
}

.booking-form.is-hit {
  animation: form-hit 1.4s ease;
}

.booking-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-hot);
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-choice {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.booking-choice legend {
  grid-column: 1 / -1;
  padding: 0;
  margin-bottom: 0.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-hot);
}

.booking-form .choice-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 3.1rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--white);
  background: #000;
  color: #fff;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.choice-btn input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  padding: 0;
  pointer-events: none;
}

.booking-form .choice-btn:hover,
.booking-form .choice-btn:has(input:checked) {
  background: var(--white);
  color: var(--black);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  background: #000;
  color: #fff;
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 0;
  outline: none;
  color-scheme: dark;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(126, 176, 255, 0.55);
}

.booking-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.booking-form .btn {
  margin-top: 0.4rem;
  width: 100%;
}

.booking-status {
  margin: 0;
  color: var(--blue-hot);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.booking-status.is-ok {
  color: #8fd4a4;
}

.booking-form .btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

.cater-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.cater-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(1.18) contrast(1.08) brightness(0.55);
}

.cater-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 12, 0.58) 0%, rgba(5, 6, 12, 0.22) 38%, rgba(5, 6, 12, 0.88) 100%),
    radial-gradient(circle at 50% 78%, rgba(79, 140, 255, 0.18), transparent 48%);
}

.cater-hero-copy {
  position: relative;
  z-index: 2;
  padding: 7.5rem 1.25rem 5rem;
  max-width: 58rem;
}

.cater-hero .display {
  font-size: clamp(4.6rem, 13vw, 11.5rem);
}

.cater-hero-lead {
  margin: 0 auto 2rem;
  max-width: 40rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.cater-intro {
  max-width: 52rem;
}

.cater-punch {
  margin: 1.6rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  letter-spacing: 0.06em;
  color: var(--blue-hot);
  max-width: 36rem;
}

.cater-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.cater-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.cater-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(126, 176, 255, 0);
  transition: box-shadow 0.4s ease;
}

.cater-card:nth-child(odd) {
  animation: cater-idle 5.4s ease-in-out infinite;
}

.cater-card:nth-child(even) {
  animation: cater-idle 5.4s ease-in-out infinite 1.6s;
}

.cater-card:hover {
  transform: translateY(-10px);
  border-color: rgba(126, 176, 255, 0.55);
  box-shadow:
    0 0 0 1px rgba(79, 140, 255, 0.28),
    0 22px 48px rgba(79, 140, 255, 0.18),
    0 18px 40px rgba(0, 0, 0, 0.42);
  animation: none;
}

.cater-card:hover::after {
  box-shadow: inset 0 0 0 1px rgba(126, 176, 255, 0.45);
}

.cater-card-img {
  position: relative;
  overflow: hidden;
}

.cater-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 22%,
    rgba(255, 255, 255, 0.2) 48%,
    transparent 72%
  );
  transform: translateX(-130%);
  transition: transform 0.75s ease;
}

.cater-card:hover .cater-card-img::after {
  transform: translateX(130%);
}

.cater-card-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.cater-card-img.is-chef img {
  object-position: center 12%;
}

.cater-card-img.is-bbq img {
  object-position: center 42%;
}

.cater-card-img.is-burger img {
  object-position: center 48%;
}

.cater-card-img.is-wedding img {
  object-position: center 64%;
}

.cater-card-img.is-band img {
  object-position: 46% 62%;
  filter: contrast(1.08) saturate(1.14);
}

.cater-card-img.is-festival img {
  object-position: 68% 46%;
  filter: contrast(1.1) saturate(1.16) brightness(1.02);
}

.cater-card-img.is-streetfood img {
  object-position: center 36%;
  filter: contrast(1.12) saturate(1.22) brightness(0.97);
}

.cater-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.16) contrast(1.1);
}

.cater-index {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: var(--black);
  background: var(--white);
  padding: 0.2rem 0.55rem;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.cater-card:hover .cater-index {
  background: var(--blue);
  color: #fff;
  transform: scale(1.06);
}

.cater-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.4rem 1.35rem 1.5rem;
}

.cater-card h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.55rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.45rem;
  line-height: 0.92;
  transition: color 0.35s ease;
}

.cater-card:hover h3 {
  color: var(--blue-hot);
}

.cater-hook {
  margin: 0 0 0.85rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.cater-card-body > p {
  color: var(--muted);
  margin: 0 0 0.9rem;
}

.cater-card-body .cater-hook {
  color: var(--white);
}

.cater-fits-label {
  margin: 0.2rem 0 0.55rem !important;
  color: var(--blue-hot) !important;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cater-fits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}

.cater-fits li {
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  padding: 0.38rem 0.7rem;
  border: 1px solid var(--line);
  color: var(--white);
}

.cater-card .btn {
  position: relative;
  overflow: hidden;
  margin-top: auto;
  min-width: 0;
  width: 100%;
  font-size: 1.22rem;
  padding: 0.85rem 1rem;
  box-shadow:
    0 0 0 0 rgba(126, 176, 255, 0.45),
    0 8px 20px rgba(0, 0, 0, 0.25);
  animation: cater-btn-pulse 2.8s ease-in-out infinite;
}

.cater-card:nth-child(even) .btn {
  animation-delay: 0.9s;
}

.cater-card .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 18%,
    rgba(255, 255, 255, 0.55) 48%,
    transparent 72%
  );
  transform: translateX(-120%);
  animation: book-shine 3.2s ease-in-out infinite;
}

.cater-card:nth-child(even) .btn::before {
  animation-delay: 1.1s;
}

.cater-card:hover .btn {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  animation: cater-btn-pulse 1.6s ease-in-out infinite;
}

.cater-card .btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--blue-hot);
  border-color: var(--blue-hot);
  color: #05060c;
  box-shadow:
    0 0 0 7px rgba(79, 140, 255, 0.18),
    0 14px 28px rgba(79, 140, 255, 0.3);
  animation: none;
}

.cater-card .btn:hover::before {
  animation: none;
}

.page-caterings .hero-actions .btn,
.page-caterings .cater-custom .btn-gold,
.page-caterings .cater-cta .btn-gold {
  position: relative;
  overflow: hidden;
  animation: book-pulse 2.6s ease-in-out infinite;
}

.page-caterings .hero-actions .btn::before,
.page-caterings .cater-custom .btn-gold::before,
.page-caterings .cater-cta .btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.5) 48%,
    transparent 72%
  );
  transform: translateX(-120%);
  animation: book-shine 2.8s ease-in-out infinite;
}

.page-caterings .hero-actions .btn:hover,
.page-caterings .cater-custom .btn-gold:hover,
.page-caterings .cater-cta .btn-gold:hover {
  animation: none;
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 0 7px rgba(79, 140, 255, 0.18),
    0 14px 32px rgba(79, 140, 255, 0.28);
}

.page-caterings .hero-actions .btn:hover::before,
.page-caterings .cater-custom .btn-gold:hover::before,
.page-caterings .cater-cta .btn-gold:hover::before {
  animation: none;
}

@keyframes cater-idle {
  0%,
  100% {
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  }
  50% {
    box-shadow: 0 14px 32px rgba(79, 140, 255, 0.12);
  }
}

@keyframes cater-btn-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(126, 176, 255, 0.42),
      0 8px 20px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(126, 176, 255, 0),
      0 12px 24px rgba(79, 140, 255, 0.22);
  }
}

.cater-adapt {
  overflow: hidden;
}

.cater-adapt-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.cater-adapt-shot {
  margin: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid var(--line);
}

.cater-adapt-shot img {
  width: 100%;
  height: min(560px, 68vh);
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.1) contrast(1.06);
}

.cater-perk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.cater-perk {
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.4rem 1.25rem 1.5rem;
  background: rgba(12, 16, 28, 0.72);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.cater-perk:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 176, 255, 0.4);
}

.cater-perk-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.9rem;
  color: var(--blue-hot);
  border: 1px solid rgba(126, 176, 255, 0.35);
  border-radius: 999px;
}

.cater-perk-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.cater-perk h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  margin: 0 0 0.45rem;
}

.cater-perk p {
  margin: 0;
  color: var(--muted);
}

.cater-occasions {
  background:
    radial-gradient(circle at 18% 12%, rgba(79, 140, 255, 0.14), transparent 34%),
    radial-gradient(circle at 88% 80%, rgba(79, 140, 255, 0.1), transparent 42%),
    var(--black-2);
}

.cater-occasion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 2.2rem 0 0;
}

.cater-occasion-list li {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.85rem);
  letter-spacing: 0.08em;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.cater-occasion-list li:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.cater-custom .lead,
.cater-custom .body {
  max-width: 40rem;
}

.cater-custom .btn {
  margin-top: 1.8rem;
}

.cater-cta .cta-title-long {
  font-size: clamp(2.6rem, 8vw, 7.2rem);
  line-height: 0.88;
  max-width: 16ch;
}

.cater-cta .cta-title-long span {
  display: block;
}

.cater-cta-copy {
  max-width: 34rem;
  margin: -0.6rem auto 2rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
}

@media (max-width: 1400px) {
  .gallery-page-grid {
    columns: 3;
  }
}

.cta {
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem 1.25rem;
  background:
    radial-gradient(circle at 50% 80%, rgba(79, 140, 255, 0.12), transparent 42%),
    var(--black);
}

.cta-title {
  font-family: var(--display);
  font-size: clamp(4.2rem, 16vw, 14rem);
  line-height: 0.8;
  margin: 0.4rem 0 2rem;
  color: #fff;
}

.cta-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-width: min(100%, 22.5rem);
  padding: 1.2rem 2.15rem;
  border: 2px solid var(--blue);
  background: linear-gradient(180deg, #ffffff 0%, #e7eefc 100%);
  color: var(--black);
  box-shadow: 0 0 0 0 rgba(79, 140, 255, 0.55), 0 10px 28px rgba(79, 140, 255, 0.22);
  animation: cta-glow 2.3s ease-in-out infinite;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 46%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), rgba(79, 140, 255, 0.42), transparent);
  transform: skewX(-22deg);
  pointer-events: none;
  animation: cta-shine 2.8s ease-in-out infinite;
}

.cta-btn:hover,
.cta-btn:focus-visible {
  transform: translateY(-5px) scale(1.045);
  background: var(--blue);
  color: #fff;
  border-color: var(--blue-hot);
  box-shadow: 0 0 42px 10px rgba(79, 140, 255, 0.48), 0 14px 32px rgba(79, 140, 255, 0.28);
  animation: none;
}

.cta-btn:hover::after,
.cta-btn:focus-visible::after {
  animation: cta-shine 0.85s ease-out;
}

@keyframes cta-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(79, 140, 255, 0.08), 0 10px 24px rgba(79, 140, 255, 0.16);
  }
  50% {
    box-shadow: 0 0 34px 8px rgba(79, 140, 255, 0.42), 0 12px 30px rgba(79, 140, 255, 0.28);
  }
}

@keyframes cta-shine {
  0%,
  52% {
    left: -130%;
  }
  78%,
  100% {
    left: 145%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-btn,
  .cta-btn::after {
    animation: none;
  }
}

.cta-logo {
  width: min(320px, 72vw);
  margin: 3.2rem auto 0;
  filter: drop-shadow(0 0 22px rgba(79, 140, 255, 0.28));
}

.footer-logo {
  width: 150px;
  height: auto;
  display: block;
  margin-bottom: 0.45rem;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: end;
  padding: 2rem clamp(1.25rem, 5vw, 5rem) 2.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.footer strong {
  font-family: var(--display);
  letter-spacing: 0.12em;
  font-size: 1.3rem;
}

.footer p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.footer .hero-tag {
  color: #fff;
  font-size: 1.15rem;
  margin: 0.35rem 0 0;
  animation: none;
  text-shadow: none;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  line-height: 0;
}

.footer-ig svg {
  width: 1.7rem;
  height: 1.7rem;
  display: block;
}

.footer-ig:hover {
  color: var(--blue-hot);
}

.footer a:hover {
  color: var(--blue-hot);
}

.legal {
  grid-column: 1 / -1;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
}

.footer-legal-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.legal a {
  color: var(--muted);
}

.footer-credit {
  grid-column: 1 / -1;
  margin: 0.35rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.footer-credit a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(79, 140, 255, 0.35);
}

.footer-credit a:hover {
  color: var(--blue-hot);
  border-bottom-color: var(--blue-hot);
}

.legal-main {
  max-width: 46rem;
  padding-top: clamp(7.5rem, 14vw, 10rem);
}

.legal-copy {
  margin-top: 2.4rem;
}

.legal-copy h2 {
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  margin: 2rem 0 0.6rem;
}

.legal-copy h3 {
  font-family: var(--sans);
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  margin: 1.4rem 0 0.45rem;
  color: var(--white);
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  line-height: 1.65;
}

.legal-copy a {
  color: var(--blue-hot);
}

@media (max-width: 1680px) {
  .intern-bar .nav-toggle {
    display: block;
    z-index: 110;
  }

  .intern-bar .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.96);
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1.05rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 105;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 5.5rem 1.4rem 2.5rem;
  }

  .intern-bar .nav-links.is-open {
    transform: none;
  }

  .intern-bar .intern-nav-group {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1.05rem;
    padding: 0;
    border: 0;
  }

  .intern-bar .intern-nav-group + .intern-nav-group {
    margin-top: 0.35rem;
    padding: 1rem 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 1320px) {
  .nav-toggle {
    display: block;
    z-index: 110;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.96);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.15rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 105;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 5.5rem 1.4rem 2.5rem;
  }

  .nav-links.is-open {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .food-grid,
  .factory-grid,
  .events-layout,
  .team-grid,
  .booking-layout,
  .cater-grid,
  .cater-adapt-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .cater-perk-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .masonry,
  .gallery-page-grid {
    columns: 2;
  }

  #gallery .masonry {
    grid-template-columns: 1fr 1fr;
    columns: unset;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-bottom: 7.25rem;
  }

  .hero-copy {
    padding: 5.5rem 1.1rem 1.2rem;
  }

  .hero-video {
    object-position: 48% 52%;
  }

  .scroll-hint {
    left: 1.1rem;
    right: auto;
    transform: none;
    bottom: 1.35rem;
  }

  .cta {
    padding-bottom: 7.5rem;
  }

  .gallery-more {
    margin-bottom: 1.2rem;
  }

  .events-collage {
    height: 420px;
    min-height: 380px;
  }

  .factory-grid,
  .events-layout,
  .food-grid,
  .footer,
  .masonry,
  .gallery-page-grid,
  .team-grid,
  .booking-layout,
  .booking-row,
  .cater-grid,
  .cater-adapt-grid,
  .cater-perk-grid {
    grid-template-columns: 1fr;
    columns: 1;
  }

  .lightbox-nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.6rem;
  }

  .factory-visuals {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .factory-shot.is-portrait {
    grid-column: auto;
    grid-row: auto;
    height: auto;
    aspect-ratio: 2 / 3;
  }

  .factory-shot:nth-child(3),
  .factory-shot:nth-child(4) {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .btn {
    min-width: 0;
  }

  .hero-actions .btn,
  .cta .btn,
  .booking-form .btn {
    min-width: min(100%, 280px);
    width: 100%;
    max-width: 100%;
  }

  .hero-logo {
    width: min(88vw, 22rem);
    max-height: 34vh;
  }

  .legal {
    align-items: center;
    text-align: center;
  }

  .footer {
    padding-bottom: calc(7.25rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-legal-links {
    justify-content: center;
  }

  .cal-weekdays span {
    font-size: 0.62rem;
    padding: 0.4rem 0.1rem;
    letter-spacing: 0.06em;
  }

  .cal-day {
    min-height: 4.2rem;
    padding: 0.28rem 0.18rem;
  }

  .crew-app-dl div {
    grid-template-columns: 1fr;
  }

  .intern-nav-group + .intern-nav-group {
    width: min(16rem, 100%);
  }
}

.ff-panel[hidden],
.ff-body[hidden] {
  display: none !important;
}

.ff-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  max-width: calc(100vw - 20px);
}

.ff-fab {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
  padding: 0;
  color: var(--blue-hot);
  overflow: visible;
}

.ff-robot {
  position: relative;
  width: 86px;
  height: 84px;
  color: var(--blue-hot);
  overflow: visible;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
  animation: ff-bob 2.6s ease-in-out infinite;
}

.ff-robot-svg {
  width: 86px;
  height: 84px;
  display: block;
  overflow: visible;
}

.ff-robot-eye {
  transform-box: fill-box;
  transform-origin: center;
  animation: ff-blink 4.2s ease-in-out infinite;
}

.ff-robot-eye-right {
  animation-delay: 0.12s;
}

.ff-robot-hat {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: ff-hat 2.4s ease-in-out infinite;
}

.ff-robot-pan {
  transform-box: fill-box;
  transform-origin: 52px 62px;
  animation: ff-pan 2.8s ease-in-out infinite;
}

.ff-live {
  position: absolute;
  right: 4px;
  top: 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #111;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.35), 0 0 10px rgba(34, 197, 94, 0.7);
  animation: ff-live-pulse 1.6s ease-in-out infinite;
}

.ff-say {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #111;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px 16px 4px;
  padding: 8px 12px 7px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 5px 5px 0 var(--blue);
  animation: ff-pop 2.6s ease-in-out infinite;
  white-space: normal;
  max-width: 230px;
  text-align: left;
}

.ff-say .ff-online-sign {
  margin-top: 0;
  align-items: flex-start;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--white);
}

.ff-say-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}

.ff-widget.is-open .ff-say {
  display: none;
}

.ff-online-sign {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #22c55e;
}

.ff-online-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  margin-top: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22);
}

.ff-status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.ff-panel {
  width: min(380px, calc(100vw - 28px));
  max-height: min(560px, calc(100dvh - 120px));
  display: flex;
  flex-direction: column;
  background: #0d0d12;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 var(--blue);
  overflow: hidden;
}

.ff-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--line);
}

.ff-head strong {
  display: block;
  font-family: var(--display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.35rem;
}

.ff-copy {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.ff-form .ff-copy {
  margin: 0 0 4px;
}

.ff-copy a {
  color: var(--blue-hot);
  text-decoration: none;
  border-bottom: 1px solid rgba(79, 140, 255, 0.45);
}

.ff-copy a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.ff-close {
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
}

.ff-tabs {
  display: flex;
  gap: 8px;
  padding: 10px 12px 0;
}

.ff-tab {
  flex: 1;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.ff-tab.is-on {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.ff-tab.is-off {
  opacity: 0.45;
  pointer-events: none;
}

.ff-offline,
.ff-ok,
.ff-form {
  display: grid;
  gap: 10px;
}

.ff-offline strong,
.ff-ok strong {
  color: var(--blue-hot);
}

.ff-body {
  padding: 12px 14px 14px;
  overflow: auto;
}

.ff-field {
  display: grid;
  gap: 0.3rem;
}

.ff-field span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.ff-form input,
.ff-form textarea {
  width: 100%;
  background: #0a0c16;
  border: 1px solid var(--line);
  color: var(--white);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.ff-form input:focus,
.ff-form textarea:focus {
  outline: 2px solid var(--blue);
  border-color: var(--blue);
}

.ff-form textarea {
  resize: vertical;
  min-height: 96px;
}

.ff-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.ff-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.78rem;
}

.ff-check input {
  margin-top: 3px;
}

.ff-check a {
  text-decoration: underline;
}

.ff-error {
  color: #ff6b4a;
  margin: 0;
  font-size: 0.86rem;
}

@keyframes ff-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes ff-blink {
  0%,
  88%,
  100% {
    transform: scaleY(1);
  }
  92% {
    transform: scaleY(0.12);
  }
}

@keyframes ff-hat {
  0%,
  100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(4deg);
  }
}

@keyframes ff-pan {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-12deg);
  }
}

@keyframes ff-pop {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes ff-live-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.85;
  }
}

@media (max-width: 760px) {
  .ff-widget {
    right: max(8px, env(safe-area-inset-right, 0px));
    bottom: max(8px, env(safe-area-inset-bottom, 0px));
    max-width: calc(100vw - 16px);
  }

  .ff-fab {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 6px;
  }

  .ff-say {
    display: none;
  }

  .ff-say .ff-online-sign {
    font-size: 0.78rem;
  }

  .ff-robot,
  .ff-robot-svg {
    width: 64px;
    height: 62px;
  }

  .ff-live {
    width: 12px;
    height: 12px;
    right: 2px;
    top: 10px;
  }

  .ff-panel {
    width: min(380px, calc(100vw - 16px));
    max-height: calc(100dvh - 96px - env(safe-area-inset-bottom, 0px));
  }
}

.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;
}

.btn-ghost {
  min-width: 0;
  padding: 0.55rem 0.95rem;
  font-size: 1.05rem;
  border-color: var(--line);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(79, 140, 255, 0.16);
  color: var(--white);
  border-color: var(--blue);
}

.portal-main,
.portal-desk {
  padding-top: clamp(7.5rem, 14vw, 10rem);
}

.portal-main {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.auth-page {
  max-width: 78rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.auth-page .lead {
  max-width: 36rem;
}

.auth-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  margin-top: 2rem;
  width: min(100%, 64rem);
  text-align: left;
}

.auth-card {
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 12% 0%, rgba(79, 140, 255, 0.16), transparent 46%),
    rgba(8, 10, 20, 0.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.7rem 1.55rem 1.8rem;
}

.auth-card .portal-form {
  flex: 1;
}

.auth-card.is-login .portal-form {
  display: flex;
  flex-direction: column;
}

.auth-card.is-login .portal-form .btn {
  margin-top: auto;
}

.auth-card.is-login {
  border-color: rgba(79, 140, 255, 0.5);
  box-shadow: 8px 8px 0 var(--blue);
}

.auth-card.is-register {
  box-shadow: 8px 8px 0 rgba(246, 241, 232, 0.12);
}

.auth-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-hot);
}

.auth-card h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  letter-spacing: 0.06em;
  margin: 0 0 0.4rem;
}

.auth-lead {
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: 0.94rem;
}

.auth-split-or {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.15rem;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
}

.auth-split-or span {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #05060c;
}

.auth-page .portal-form .btn {
  width: 100%;
  min-width: 0;
  margin-top: 0.35rem;
}

.auth-secondary-btn {
  color: var(--white);
  background: transparent;
  border: 1px solid var(--white);
}

.auth-secondary-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.intern-nav [aria-current="page"] {
  color: var(--blue-hot);
}

.intern-bar .nav-links {
  gap: 0.9rem;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.intern-nav-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: inherit;
}

.intern-nav-group + .intern-nav-group {
  padding-left: 0.95rem;
  border-left: 1px solid var(--line);
}

button.nav-cta {
  font: inherit;
  cursor: pointer;
}

.intern-view[hidden] {
  display: none !important;
}

body.page-intern {
  background: #07080e;
}

body.page-intern .grain,
body.page-intern .scanlines {
  display: none;
}

body.page-intern .ff-widget {
  display: none;
}

.admin-shell {
  display: grid;
  grid-template-columns: 16.75rem minmax(0, 1fr);
  min-height: 100vh;
  min-height: 100dvh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 0.8rem 1rem;
  background: #0a0c14;
  border-right: 1px solid var(--line);
  z-index: 80;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.15rem 0.45rem 0.95rem;
  margin-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
  color: var(--white);
}

.admin-brand img {
  height: 40px;
  width: auto;
  display: block;
}

.admin-brand span {
  display: grid;
  line-height: 1.15;
}

.admin-brand strong {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.admin-brand small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  flex: 1;
  overflow: auto;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
}

.admin-nav-label {
  margin: 0.85rem 0.55rem 0.3rem;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.admin-nav-label:first-child {
  margin-top: 0.15rem;
}

.admin-nav a {
  display: block;
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  color: rgba(246, 241, 232, 0.78);
  border: 1px solid transparent;
}

.admin-nav a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.admin-nav a[aria-current="page"] {
  background: rgba(79, 140, 255, 0.14);
  border-color: rgba(79, 140, 255, 0.32);
  color: var(--white);
}

.admin-logout {
  margin-top: 0.7rem;
  width: 100%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}

.admin-logout:hover {
  border-color: var(--blue);
  color: var(--white);
  background: rgba(79, 140, 255, 0.1);
}

.admin-stage {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.45rem;
  background: rgba(7, 8, 14, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.admin-topbar-copy {
  flex: 1;
  min-width: 0;
}

.admin-crumb {
  margin: 0 0 0.12rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-hot);
}

.admin-topbar h1 {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.28rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.admin-topbar-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-user {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.page-intern .nav-toggle.admin-menu-btn {
  display: none;
  flex-shrink: 0;
}

.admin-content {
  padding: 1.2rem 1.45rem 2.4rem;
  width: min(100%, 92rem);
}

.admin-content > .portal-hint {
  margin-bottom: 1rem;
  max-width: 46rem;
}

.admin-backdrop {
  display: none;
}

@media (max-width: 1100px) {
  .dash-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .page-intern .nav-toggle.admin-menu-btn {
    display: block;
  }

  .admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(18.5rem, 88vw);
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    z-index: 120;
    height: 100vh;
    height: 100dvh;
  }

  .admin-sidebar.is-open {
    transform: none;
  }

  body.nav-open .admin-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 110;
  }

  .admin-topbar-meta .btn {
    display: none;
  }
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0 0 1.4rem;
}

.dash-stat {
  display: grid;
  gap: 0.35rem;
  text-align: left;
  padding: 1rem 1rem 0.95rem;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--status) 42%, var(--line));
  background: color-mix(in srgb, var(--status) 12%, rgba(8, 10, 20, 0.8));
  color: var(--white);
  cursor: pointer;
}

.dash-stat strong {
  font-family: var(--sans);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--status, var(--blue-hot));
}

.dash-stat span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dash-stat:hover {
  border-color: var(--status, var(--blue));
  transform: translateY(-2px);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.dash-panel {
  border: 1px solid var(--line);
  background: rgba(8, 10, 20, 0.72);
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.dash-panel h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0.06em;
  font-size: 1.5rem;
}

.user-group h4 {
  margin: 0.35rem 0 0.45rem;
  font-family: var(--display);
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.user-group h4 span {
  color: var(--blue-hot);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.user-group + .user-group {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.intern-anfragen-layout {
  grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
}

.portal-tabs {
  display: flex;
  gap: 0.4rem;
  margin: 1.4rem 0 1.1rem;
}

.intern-create-note {
  margin-bottom: 1.2rem;
}

.intern-create-form {
  max-width: 58rem;
}

.intern-create-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.intern-create-form .ff-ok {
  color: #86efac;
}

.portal-form {
  display: grid;
  gap: 0.9rem;
}

.portal-form input,
.portal-form textarea,
.portal-form select,
.intern-filters select,
.status-field select,
.ticket-reply textarea {
  width: 100%;
  background: #0a0c16;
  border: 1px solid var(--line);
  color: var(--white);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.portal-form input:focus,
.portal-form textarea:focus,
.portal-form select:focus,
.intern-filters select:focus,
.status-field select:focus,
.ticket-reply textarea:focus {
  outline: 2px solid var(--blue);
  border-color: var(--blue);
}

.portal-hint {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

.portal-head {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.portal-head .display {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.portal-empty {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.konto-layout,
.intern-layout {
  display: grid;
  gap: 1.2rem;
}

.konto-layout {
  grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
  align-items: start;
}

body.page-konto {
  background:
    radial-gradient(ellipse 80% 46% at 6% -8%, rgba(79, 140, 255, 0.28), transparent 52%),
    radial-gradient(ellipse 48% 36% at 96% 12%, rgba(126, 176, 255, 0.14), transparent 48%),
    var(--black);
}

.konto-desk {
  max-width: 92rem;
  margin: 0 auto;
}

.konto-hello {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: 0.05em;
  color: var(--blue-hot);
}

.konto-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.konto-book-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 6px 6px 0 var(--blue);
}

.konto-book-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), rgba(79, 140, 255, 0.35), transparent);
  transform: skewX(-22deg);
  pointer-events: none;
  animation: konto-shine 3s ease-in-out infinite;
}

.konto-note {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.4rem;
  margin: 0 0 1.3rem;
  padding: 1.2rem 1.3rem 1.25rem 1.55rem;
  border-radius: 20px;
  border: 1px solid rgba(79, 140, 255, 0.5);
  background:
    radial-gradient(circle at 10% 0%, rgba(79, 140, 255, 0.26), transparent 48%),
    radial-gradient(circle at 92% 100%, rgba(246, 241, 232, 0.06), transparent 42%),
    rgba(8, 10, 20, 0.9);
  box-shadow: 8px 8px 0 rgba(79, 140, 255, 0.38);
}

.konto-note::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue-hot), var(--blue));
}

.konto-note-kicker {
  margin: 0;
  color: var(--blue-hot);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.konto-note h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0.05em;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
}

.page-intern .konto-note h2 {
  font-family: var(--sans);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  font-weight: 650;
}

.konto-note p {
  margin: 0;
  max-width: 54rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.konto-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0 0 1.3rem;
}

.konto-stat {
  display: grid;
  gap: 0.28rem;
  padding: 1rem 1.05rem 0.95rem;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--status) 48%, var(--line));
  background:
    radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--status) 28%, transparent), transparent 58%),
    rgba(8, 10, 20, 0.82);
  box-shadow: 5px 5px 0 color-mix(in srgb, var(--status) 38%, transparent);
}

.konto-stat strong {
  font-family: var(--display);
  font-size: 2.55rem;
  letter-spacing: 0.04em;
  line-height: 0.88;
  color: var(--status, var(--blue-hot));
}

.konto-stat span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.konto-inbox {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.konto-inbox-head h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0.06em;
  font-size: 1.7rem;
}

.konto-inbox-head p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.page-konto .ticket-list,
.page-konto .ticket-pane {
  background:
    radial-gradient(circle at 100% 0%, rgba(79, 140, 255, 0.14), transparent 46%),
    rgba(8, 10, 20, 0.78);
}

.page-konto .ticket-list .konto-book-btn {
  width: fit-content;
  margin-top: 0.35rem;
}

.page-konto .ticket-pane {
  min-height: 22rem;
  box-shadow: 8px 8px 0 rgba(246, 241, 232, 0.08);
}

.page-konto .ticket-card {
  position: relative;
  overflow: hidden;
  padding-left: 1rem;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.page-konto .ticket-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--blue);
}

.page-konto .ticket-card:hover,
.page-konto .ticket-card.is-on {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 rgba(79, 140, 255, 0.32);
}

.page-konto .ticket-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  align-items: center;
}

.ticket-card-kind {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(79, 140, 255, 0.4);
  color: var(--blue-hot);
  background: rgba(79, 140, 255, 0.12);
}

.ticket-card-kind.is-support {
  color: #d8c8ff;
  border-color: rgba(167, 139, 250, 0.45);
  background: rgba(167, 139, 250, 0.14);
}

@keyframes konto-shine {
  0%,
  55% {
    left: -130%;
  }
  82%,
  100% {
    left: 145%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .konto-book-btn::after {
    animation: none;
  }

  .page-konto .ticket-card:hover,
  .page-konto .ticket-card.is-on {
    transform: none;
  }
}

.ticket-list,
.intern-inbox,
.ticket-pane {
  border: 1px solid var(--line);
  background: rgba(8, 10, 20, 0.72);
  border-radius: 16px;
  padding: 0.85rem;
}

.ticket-list,
.intern-inbox {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.ticket-card {
  display: grid;
  gap: 0.28rem;
  text-align: left;
  width: 100%;
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(5, 6, 12, 0.55);
}

.ticket-card:hover,
.ticket-card.is-on {
  border-color: rgba(79, 140, 255, 0.55);
  background: rgba(79, 140, 255, 0.1);
}

.ticket-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: center;
}

.ticket-card-title {
  font-weight: 650;
}

.ticket-card-meta {
  color: var(--muted);
  font-size: 0.82rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--status);
  background: color-mix(in srgb, var(--status) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--status) 48%, transparent);
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
}

.intern-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: end;
  margin-bottom: 1rem;
}

.cal-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.cal-title {
  margin: 0;
  min-width: 11rem;
  text-align: center;
  font-family: var(--sans);
  font-size: 1.12rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.intern-filters {
  display: flex;
  gap: 0.7rem;
}

.intern-filters label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.intern-filters select {
  min-width: 11rem;
}

.intern-layout {
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.9fr);
  align-items: start;
}

.intern-anfragen-layout {
  grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
}

.cal-wrap {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(8, 10, 20, 0.55);
}

.cal-weekdays,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.cal-weekdays span {
  padding: 0.55rem 0.4rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.cal-day {
  min-height: 7.4rem;
  padding: 0.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 12, 0.35);
  cursor: pointer;
}

.cal-day.is-out {
  opacity: 0.38;
}

.cal-day.is-today {
  outline: 1px solid var(--blue);
  outline-offset: -1px;
}

.cal-num {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.cal-chips {
  display: grid;
  gap: 0.25rem;
}

.cal-chip {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  font-size: 0.68rem;
  padding: 0.18rem 0.35rem;
  border-radius: 6px;
  color: var(--white);
  background: color-mix(in srgb, var(--status) 42%, #05060c);
  border: 1px solid color-mix(in srgb, var(--status) 70%, transparent);
}

.cal-more {
  font-size: 0.68rem;
  color: var(--blue-hot);
}

.intern-side {
  display: grid;
  gap: 1rem;
}

.intern-inbox h3 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  letter-spacing: 0.06em;
  font-size: 1.35rem;
}

.ticket-pane-head h2 {
  margin: 0.15rem 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
}

.ticket-facts {
  display: grid;
  gap: 0.35rem;
  margin: 0.9rem 0;
}

.ticket-facts div {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 0.4rem;
  font-size: 0.9rem;
}

.ticket-facts dt {
  color: var(--muted);
}

.ticket-facts dd {
  margin: 0;
}

.ticket-thread {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
  max-height: 28rem;
  overflow: auto;
}

.ticket-msg {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: rgba(5, 6, 12, 0.5);
}

.ticket-msg header {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.ticket-msg p {
  margin: 0;
  white-space: pre-wrap;
}

.ticket-msg.role-staff {
  border-color: rgba(79, 140, 255, 0.45);
}

.ticket-msg.role-customer {
  border-color: rgba(246, 241, 232, 0.18);
}

.ticket-msg.role-system {
  opacity: 0.82;
  font-style: italic;
}

.ticket-reply {
  display: grid;
  gap: 0.7rem;
}

.ticket-reply .btn,
.portal-form .btn {
  min-width: 0;
  width: fit-content;
}

.page-intern .btn {
  min-width: 0;
  width: auto;
  max-width: 100%;
  padding: 0.4rem 0.85rem;
  font-size: 0.92rem;
  letter-spacing: 0.07em;
  line-height: 1.15;
}

.page-intern .btn-ghost {
  padding: 0.34rem 0.7rem;
  font-size: 0.86rem;
}

.page-intern .cal-nav .btn {
  min-width: 2.2rem;
  padding: 0.3rem 0.5rem;
}

.page-intern .portal-form .btn,
.page-intern .ticket-reply .btn,
.page-intern .portal-head .btn {
  width: fit-content;
}

.status-field {
  margin: 0.8rem 0;
}

.page-intern .ff-widget {
  display: none;
}

.staff-list,
.staff-block {
  display: grid;
  gap: 0.9rem;
}

.staff-block {
  margin-top: 1.1rem;
}

.staff-split {
  display: grid;
  grid-template-columns: minmax(18rem, 26rem) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.staff-form {
  border: 1px solid var(--line);
  background: rgba(8, 10, 20, 0.72);
  border-radius: 16px;
  padding: 1.1rem;
}

.staff-form h3,
.staff-apps h4 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  letter-spacing: 0.06em;
}

.crew-app-dl {
  display: grid;
  gap: 0.2rem;
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.crew-app-dl div {
  display: grid;
  grid-template-columns: 8.2rem minmax(0, 1fr);
  gap: 0.35rem;
}

.crew-app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.booking-form .ff-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.88rem;
}

.staff-card {
  display: grid;
  gap: 0.45rem;
  border: 1px solid var(--line);
  background: rgba(8, 10, 20, 0.72);
  border-radius: 16px;
  padding: 1rem 1.05rem 1.05rem;
}

.staff-card.is-open {
  border-color: rgba(79, 140, 255, 0.45);
}

.staff-card.is-booked {
  border-color: rgba(34, 197, 94, 0.45);
}

.staff-card h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0.05em;
  font-size: 1.55rem;
}

.staff-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: center;
}

.staff-flag {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.staff-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.staff-apps {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.55rem;
}

.staff-person {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: rgba(5, 6, 12, 0.55);
}

.staff-person strong {
  display: block;
}

.staff-notices {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.staff-notice {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.12);
  border-radius: 16px;
  padding: 0.95rem 1rem;
}

.staff-notice p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.crew-map-layout {
  grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
}

.crew-map-panel {
  display: grid;
  gap: 0.7rem;
  min-width: 0;
}

.crew-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.82rem;
}

.crew-map-legend li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.crew-pin {
  display: inline-block;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.crew-pin-hq {
  background: #f5c542;
}

.crew-pin-employee {
  background: #22c55e;
}

.crew-pin-staff {
  background: #4f8cff;
}

.crew-pin-job {
  background: #f59e0b;
}

.crew-pin-missing {
  background: transparent;
  border-style: dashed;
  border-color: #94a3b8;
}

.crew-map-wrap {
  min-height: 520px;
  height: min(68vh, 44rem);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #1a2233;
}

#crew-map {
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.crew-map-fallback {
  margin: 0;
  padding: 2rem 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.crew-map-check {
  margin-top: 0.85rem;
}

.crew-map-missing {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.crew-map-missing-btn {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--blue-hot);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.leaflet-container {
  font-family: inherit;
  background: #0b0f18;
}

.page-intern .leaflet-popup-content-wrapper,
.page-intern .leaflet-popup-tip {
  background: #0c1018;
  color: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

.page-intern .leaflet-popup-content {
  margin: 0.65rem 0.8rem;
  font-size: 0.86rem;
  line-height: 1.4;
}

.page-intern .leaflet-popup-content strong {
  font-family: var(--display);
  letter-spacing: 0.04em;
  font-size: 1.15rem;
}

.page-intern .leaflet-bar a {
  background: #121826;
  color: var(--white);
  border-bottom-color: var(--line);
}

.page-intern .leaflet-bar a:hover {
  background: #1c2740;
}

.page-intern .leaflet-control-attribution {
  background: rgba(8, 10, 20, 0.85);
  color: var(--muted);
}

.page-intern .leaflet-control-attribution a {
  color: var(--blue-hot);
}

.crew-map-pin {
  display: grid;
  place-items: center;
}

.crew-map-pin span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.35);
}

.crew-map-is-pick .leaflet-container {
  cursor: crosshair;
}

@media (max-width: 980px) {
  .konto-layout,
  .intern-layout,
  .dash-grid,
  .intern-anfragen-layout,
  .staff-split,
  .intern-create-grid,
  .crew-map-layout {
    grid-template-columns: 1fr;
  }

  .crew-map-wrap,
  #crew-map {
    min-height: 28rem;
    height: 28rem;
  }

  .konto-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .auth-split {
    grid-template-columns: 1fr;
  }

  .auth-split-or {
    padding: 0.85rem 0;
  }

  .cal-day {
    min-height: 5.4rem;
  }

  .ticket-facts div {
    grid-template-columns: 1fr;
  }
}

.footer-nap {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 18rem;
}

.footer-nap a {
  color: var(--white);
}

.area-intro {
  max-width: 46rem;
}

.area-intro .body a,
.area-offers .body a {
  color: var(--blue-hot);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.area-map-wrap {
  width: 100%;
  height: 34rem;
  min-height: 540px;
}

.area-map,
.area-map.leaflet-container {
  width: 100% !important;
  height: 540px !important;
  min-height: 540px !important;
  border: 1px solid var(--line);
  background: #0c101c;
  display: block;
}

.area-map-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.area-region {
  padding: 1.35rem 1.4rem 1.2rem;
  border: 1px solid var(--line);
  background: rgba(8, 10, 20, 0.55);
}

.area-region h3 {
  font-family: var(--display);
  letter-spacing: 0.06em;
  font-size: 1.45rem;
  margin: 0 0 0.55rem;
}

.area-region p {
  margin: 0;
  color: var(--muted);
}

.area-offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.5rem;
  margin: 1.5rem 0 1.4rem;
  padding: 0;
  list-style: none;
}

.area-offer-list li {
  font-family: var(--display);
  letter-spacing: 0.06em;
  font-size: 1.35rem;
}

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

.area-teaser .lead {
  max-width: 40rem;
}

.page-area .leaflet-container {
  background: #0c101c;
  font-family: var(--sans);
}

.page-area .leaflet-container img.leaflet-tile {
  max-width: none !important;
  max-height: none !important;
}

.page-area .leaflet-control-attribution {
  background: rgba(5, 6, 12, 0.78);
  color: var(--muted);
}

.page-area .leaflet-control-attribution a {
  color: var(--blue-hot);
}

.page-area .leaflet-popup-content-wrapper,
.page-area .leaflet-popup-tip {
  background: #121624;
  color: var(--white);
  border-radius: 0;
}

.page-area .leaflet-bar a {
  background: #121624;
  color: var(--white);
  border-bottom-color: var(--line);
}

@media (max-width: 800px) {
  .area-grid,
  .area-offer-list {
    grid-template-columns: 1fr;
  }

  .footer-nap {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}
