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

    body {
      margin: 0;
      font-family: Poppins, sans-serif;
      background: #050607; 
      color: #fff;
      overflow-x: hidden;
    }

    html {
      width: 100%;
      overflow-x: hidden;
    }

    body.home-page {
      background: #11161a;
    }

    body.home-page header {
      background: rgba(17, 22, 26, 0.9);
    }

    body.home-page .openings-panel {
      background: rgba(17, 22, 26, 0.96);
    }

    body.home-page .reserve {
      background: #151b20;
    }

    body.home-page input,
    body.home-page textarea {
      background: #171d22;
    }

    body.home-page .map-consent-placeholder {
      background:
        linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(24, 31, 36, 0.92)),
        #151b20;
    }

    body.home-page .cookie-banner,
    body.home-page .cookie-modal-panel {
      background: rgba(17, 22, 26, 0.96);
    }

    a {
      color: #00e5ff;
    }

    .appear {
      opacity: 0;
      transform: translateY(34px);
      transition:
        opacity 0.72s ease,
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: var(--appear-delay, 0ms);
      will-change: opacity, transform;
    }

    .appear-left {
      transform: translateX(-42px);
    }

    .appear-right {
      transform: translateX(42px);
    }

    .appear-up {
      transform: translateY(34px);
    }

    .appear-down {
      transform: translateY(-34px);
    }

    .appear.is-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

    @media (prefers-reduced-motion: reduce) {
      .appear {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    /* HEADER – feste sichtbare Navigation */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      padding: 10px 0;
      background: rgba(0,0,0,0.85);
      backdrop-filter: blur(8px);
      z-index: 100;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: transform 0.3s ease, opacity 0.2s ease;
    }
      header.header-hidden {
        transform: translateY(-100%);
        opacity: 0;
      }

    .header-inner {
      width: 100%;
      padding: 0 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-sizing: border-box;
    }

    header img {
      height: 60px;
      flex-shrink: 0;
    }

    .menu-toggle {
        display: none;
        width: 46px;
        height: 46px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.18);
        background: rgba(255,255,255,0.04);
        padding: 10px;
        box-sizing: border-box;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
        transition: background 0.2s ease, border-color 0.2s ease;
        }
        .menu-toggle:hover { background: rgba(255,255,255,0.08); border-color: rgba(0,229,255,0.6); }
        .menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
        .menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
        .menu-toggle.open span:nth-child(2) { opacity: 0; }
        .menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
        body.nav-open { overflow: hidden; }


    .nav-links {
      display: flex;
      align-items: center;
      gap: 16px;
      text-transform: uppercase;
      letter-spacing: 1,5px;
      flex: 1;
      justify-content: center;
    }

    .nav-links a {
      color: #d9d9d9;
      font-size: 20px;
      text-decoration: none;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .openings-dropdown {
  position: relative;
  display: inline-block;
}

.openings-panel {
  position: absolute;
  left: 0;
  top: 110%;
  background: rgba(0,0,0,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 180px;
  z-index: 10;
   
  transform-origin: top;
  transform: scaleY(0.8);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.18s;

}

.openings-dropdown:hover .openings-panel,
.openings-dropdown:focus-within .openings-panel {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s;
}

.openings-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.openings-panel li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #d9d9d9;
  font-size: 13px;
  line-height: 1.4;
}

.openings-panel span { color: #00e5ff; }



    .menu-download:hover {
        text-shadow: 0 0 8px #00e5ff;
    }
    .nav-links a:hover {
      color: #00e5ff;
      text-shadow: 0 0 8px #00e5ff;
    }

    /* HERO – SLIDESHOW */
    .hero {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 140px 20px 0;
      box-sizing: border-box;
      overflow: hidden;
    }

    .hero-media {
      position: absolute;
      inset: 0;
      z-index: -1;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background-position: center;
      background-size: cover;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
    }

    .hero-slide.active {
      opacity: 1;
    }

    .hero-video-slide {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      font-size: 38px;
      letter-spacing: 6px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .hero span {
      color: #00e5ff;
    }

    .hero p {
      font-size: 16px;
      opacity: 0.9;
      max-width: 520px;
      margin: 0 auto 25px;
    }

     .btn {
      display: inline-block;
      padding: 12px 28px;
      border-radius: 40px;
      border: 1px solid #00e5ff;
      color: #00e5ff;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-top: 10px;
      text-decoration: none;
      transition: 0.2s ease;
    } 

    .btn:hover {
      background: #00e5ff;
      color: #000;
    }

    /* SECTIONS */
    section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
      box-sizing: border-box;
    }

    section h2 {
      text-align: center;
      font-size: 32px;
      letter-spacing: 5px;
      text-transform: uppercase;
      margin-bottom: 50px;
    }

    section h2 span {
      color: #00e5ff;
    }

    /* CLUB MOMENTS */
    .club-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      align-items: center;
      margin-bottom: 40px;
    }

    .club-video {
      border-radius: 16px;
      overflow: hidden;
    }

    .club-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .club-text p {
      font-size: 16px;
      opacity: 0.9;
      line-height: 1.7;
    }

    .club-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 40px;
    }

    .club-grid img {
      width: 100%;
      border-radius: 16px;
      max-height: 375px;
      min-height: 220px;
      object-fit: cover;
    }

    .club-carousel {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 16px;
  margin-top: 30px;
}

.club-carousel.tc--fade::before,
.club-carousel.tc--fade::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.club-carousel-track {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
  animation: clubSlide 25s linear infinite ;
  will-change: transform;
}

.club-slide {
  flex: 0 0 320px;  /* Breite einer Kachel */
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.club-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.club-slide:hover,
.club-slide:focus-within {
  transform: scale(1.06);
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* Pause der Animation bei Hover/Fokus auf dem gesamten Slider */
.club-carousel:hover .club-carousel-track,
.club-carousel:focus-within .club-carousel-track {
  animation-play-state: paused;
}

@keyframes clubSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* Track wird gedoppelt */
}

@media (max-width: 900px) {
  .club-carousel { height: 280px; }
  .club-slide { flex-basis: 240px; }
}


    /* BOTTLE SERVICE + MENÜ */
    .menu-preview img {
      width: 100%;
      max-width: 450px;
      margin: 0 auto;
      display: block;
      border-radius: 16px;
      object-fit: cover;
    }

    .menu-pair {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-pair.menu-single {
        grid-template-columns: minmax(0, 520px);
        justify-content: center;
    }

    .menu-card h2 {
        text-align: center;
        margin-bottom: 24px;
    }

    .menu-download {
      text-align: center;
      margin-top: 20px;
    }

    .menu-download a {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      color: #00e5ff;
      font-size: 18px;
      text-decoration: none;
    }

    .menu-download a:hover {
      text-decoration: underline;
    }

    .menu-icon {
      height: 22px;
      border-radius: 50%;
    }

    /* ROOFTOP MOMENTS */
    .rooftop-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      align-items: center;
    }

    .rooftop-video {
      border-radius: 16px;
      overflow: hidden;
    }

    .rooftop-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .rooftop-text p {
      font-size: 16px;
      opacity: 0.9;
      line-height: 1.7;
    }

/* äußerer Rahmen begrenzt und zentriert */
.rooftop-carousel-wrap {
  width: min(100%, 1300px);
  margin: 40px auto 0 !important;
  padding: 0 !important;
}

/* das Karussell füllt nur den Wrapper */
.rooftop-carousel {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  height: 380px;
  overflow: hidden;  /* kein Durchlaufen über den Rand */
  border-radius: 16px;
}

.rooftop-carousel.tc--fade::before,
.rooftop-carousel.tc--fade::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.rooftop-carousel.tc--fade::before {
  left: 0;
}
.rooftop-carousel.tc--fade::after {
  right: 0;
}

.rooftop-carousel-track {
  display: flex;
  align-items: center;
  overflow: visible;
  gap: 24px;
  height: 100%;
  padding: 0 12px;
  animation: rooftopSlide 20s linear infinite reverse;
  will-change: transform;
}
.rooftop-slide {
  flex: 0 0 auto;
  width: 320px;
  height: 100%;
  overflow: hidden;              /* wichtig, damit Vergrößerung nicht abgeschnitten wird */
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-origin: center;
}

.rooftop-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: none;               /* kein Zoom auf dem Bild selbst */
}

/* nur das gehoverte/gefokuste Bild skalieren */
.rooftop-slide:hover,
.rooftop-slide:focus-within {
  transform: scale(1.08);
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.rooftop-carousel:hover .rooftop-carousel-track,
.rooftop-carousel:focus-within .rooftop-carousel-track {
  animation-play-state: paused;
}

@keyframes rooftopSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* weil wir den Track doppeln */
}

@media (max-width: 900px) {
  .rooftop-carousel { height: 300px; }
  .rooftop-slide { width: 240px; }
}

    /* RESERVIERUNG */
    .reserve {
      background: #0a0a0c;
      padding: 90px 20px;
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .reserve p a {
      color: #00e5ff;
      text-decoration: none;
    }

    /* KONTAKT */

    .kontakt-with-map {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: untereinander */
  gap: 24px;
}

#kontakt { padding: 0; max-width: none; padding-bottom: 30px;} /* Map bündig links */

.kontakt-map { margin: 0; padding: 0; }
.kontakt-map iframe {
  display: block;
  width: 100%;
  height: 80vh;
  min-height: 260px;
  border: 0;
  border-radius: 0; /* kein Rand/Radius */
  border-bottom-right-radius: 12px;
 
}

.kontakt-info { padding-left: 24px; padding-right: 40px; max-width: 400px; } /* Abstand nur rechts lassen */


@media (min-width: 900px) {
  .kontakt-with-map {
    grid-template-columns: 1.1fr 1fr; /* Map | Info/Form */
    align-items: start;
  }
  .kontakt-info {
    justify-content: center;
  }
}

@media (max-width: 900px) {

  .kontakt-info {
    justify-self: center;
    align-self: center;
    text-align: left;   /* optional, wenn du den Text zentrieren willst */
    max-width: 480px;     /* optional, verhindert zu breite Zeilen */
  }
}

    input, textarea {
      width: 100%;
      padding: 10px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.2);
      background: #050608;
      color: white;
      margin-bottom: 12px;
      font-family: inherit;
    }

.bubble {
    --children: 5;
    --color: white;
    --bubble-width: calc(100% / var(--children));

    position: relative;
    overflow: hidden;
    z-index: 1 ;

    position: relative;
    overflow: hidden;
    z-index: 0;
    background-color: #000;
    border: 1px solid #00e5ff;
    color: #fff;
    padding: 12px 26px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.bubble span {
    position: absolute;
    left: calc((var(--child) - 1) * var(--bubble-width));
    width: var(--bubble-width);
    height: 100%;
    background-color: #00e5ff;
    transform: translateY(150%);
    border-radius: 35%;
    transition: 0.5s;
    transition-delay: calc((var(--child) - 1) * 0.1s);
    z-index: -1;
}

.bubble:hover,
.bubble:focus{
    border-color:gray;
    color: rgb(0, 0, 0);
}

.bubble:hover span,
.bubble:focus span {
    transform: translateY(0) scale(2);
}

    .bubble span:nth-child(1) {
        --child: 1;
    }
    
    .bubble span:nth-child(2) {
        --child: 2;
    }
    
    .bubble span:nth-child(3) {
        --child: 3;
    }
    
    .bubble span:nth-child(4) {
        --child: 4;
    }
    
    .bubble span:nth-child(5) {
        --child: 5;
    }

    /* IMPRESSUM & DATENSCHUTZ */
    .legal-section {
      font-size: 14px;
      line-height: 1.7;
    }

    .legal-section h3 {
      font-size: 20px;
      margin-top: 30px;
      margin-bottom: 10px;
      text-transform: none;
      letter-spacing: 0;
    }

    .legal-section p {
      margin: 5px 0 12px;
    }

    .legal-section ul {
      padding-left: 20px;
      margin: 5px 0 15px;
    }

    .legal-section li {
      margin-bottom: 4px;
    }

    /* FOOTER */
    footer {
      padding: 30px 20px 40px;
      text-align: center;
      font-size: 13px;
      opacity: 0.7;
      background-color: #3c4043;
    }

    .footer-links {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
        }
    .footer-ig,
    .footer-TikTok {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #ffffff;
        text-decoration: none;
        }
    .footer-ig:hover,
    .footer-TikTok:hover { color: #00e5ff; text-shadow: 0 0 8px #00e5ff;}

    .streamline-logos--tiktok-logo {
        display: inline-block;
        width: 24px;
        height: 24px;
        --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M16.5 2.25v3.17a6 6 0 0 0 3.75 1.33v2.45a8.45 8.45 0 0 1-3.75-.91v6.37a5.75 5.75 0 1 1-5.75-5.75c.24 0 .48.02.71.05v2.63a3.13 3.13 0 1 0 2.17 2.97V2.25z'/%3E%3C/svg%3E");
        background-color: currentColor;
        -webkit-mask-image: var(--svg);
        mask-image: var(--svg);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
        text-shadow: 0 0 8px #00e5ff;
        }


    .footer-links a {
      color: #d9d9d9;
      font-size: 13px;
      text-decoration: none;
      margin: 0 8px;
    }

    .footer-links a:hover {
      color: #00e5ff;
    }

    .footer-hours {
      margin: 16px auto 10px;
      padding: 12px 14px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      display: inline-block;
      text-align: left;
      color: #d9d9d9;
    }

    .footer-hours strong {
      display: block;
      margin-bottom: 6px;
      color: #fff;
      letter-spacing: 0.5px;
    }

    .footer-hours ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-hours li {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      font-size: 13px;
      line-height: 1.5;
    }

    .footer-hours span {
      color: #00e5ff;
    }

    /* MOBILE – Menü als Slider UNTER dem Logo */
    @media (max-width: 900px) {
      .appear-left,
      .appear-right {
        transform: translateY(34px);
      }

      header img {
        height: 52px; margin: 0 auto; 
      }

    .header-inner {
        width: 100%;
        max-width: 100%;
        padding: 0 18px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        position: relative;
        gap: 0;
    }    

    .menu-toggle {
        display: flex;
        position: absolute;
        right: 22px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        background: rgba(5,6,7,0.96);
        padding: 16px;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 14px 40px rgba(0,0,0,0.45);
        backdrop-filter: blur(10px);
    }


    .nav-links.open { display: flex; }
    .nav-links a { font-size: 15px; width: 100%; }
    .hero { padding-top: 120px; }

    .club-video {
        margin: 0;
    }
}

    /* DESKTOP ab 901px */
    @media (min-width: 901px) {
      header {
        padding: 18px 0;
      }

      .header-inner {
        padding: 0 45px;
        flex-direction: row;
        align-items: center;
      }

      header img {
        height: 75px;
      }

      .hero {
        padding-top: 120px;
      }

      .hero h1 {
        font-size: 60px;
      }

      .club-wrapper,
      .rooftop-wrapper,
      .kontakt-grid {
        grid-template-columns: 1.2fr 1fr;
      }

      @media (min-width: 901px) {
      .rooftop-wrapper {
          display: grid;
          grid-template-columns: 1fr 1.2fr; /* Text | Video */
          align-items: center;
          column-gap: 30px;
        }
      .rooftop-text { order: 1; text-align: left; }
      .rooftop-video { order: 2; }
    }


      .club-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      }
      
    .menu-pair {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }
}
  
    .streamline-logos--instagram-logo-2-solid {
        display: inline-block;
        width: 24px;
        height: 24px;
        --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M7.5.75A6.75 6.75 0 0 0 .75 7.5v9a6.75 6.75 0 0 0 6.75 6.75h9a6.75 6.75 0 0 0 6.75-6.75v-9A6.75 6.75 0 0 0 16.5.75zM2.25 7.5c0-2.9 2.35-5.25 5.25-5.25h9c2.9 0 5.25 2.35 5.25 5.25v9c0 2.9-2.35 5.25-5.25 5.25h-9a5.25 5.25 0 0 1-5.25-5.25zM19.5 6.25a1.25 1.25 0 1 1-2.5 0a1.25 1.25 0 0 1 2.5 0M12 7.75a4.25 4.25 0 1 0 0 8.5a4.25 4.25 0 0 0 0-8.5M6.25 12a5.75 5.75 0 1 1 11.5 0a5.75 5.75 0 0 1-11.5 0' clip-rule='evenodd'/%3E%3C/svg%3E");
        background-color: currentColor;
        -webkit-mask-image: var(--svg);
        mask-image: var(--svg);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
        }

    .streamline-logos--tiktok-logo {
        display: inline-block;
        width: 24px;
        height: 24px;
        --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' d='M16 1.5h-3.5V16c0 1.5-1.5 3-3 3s-3-.5-3-3c0-2 1.899-3.339 3.5-3V9.5c-6.12 0-7 5-7 6.5s.977 6.5 6.5 6.5c4.522 0 6.5-3.5 6.5-6v-8c1.146 1.018 2.922 1.357 5 1.5V6.5c-3.017 0-5-2.654-5-5Z' stroke-width='1'/%3E%3C/svg%3E");
        background-color: currentColor;
        -webkit-mask-image: var(--svg);
        mask-image: var(--svg);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
        }

  /* JOIN THE FAMILY */

  .jobs-apply {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 90px 0;
  }

  .jobs-copy {
    max-width: 540px;
  }

  .jobs-eyebrow {
    margin: 0 0 12px;
    color: #00e5ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
  }

  .jobs-copy h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: 0;
  }

  .jobs-copy h2 span {
    color: #00e5ff;
  }

  .jobs-copy > p:not(.jobs-eyebrow) {
    margin: 0;
    color: #dce5ea;
    font-size: 16px;
    line-height: 1.7;
  }

  .jobs-form-card {
    padding: 26px;
    border: 1px solid rgba(0, 229, 255, 0.28);
    border-radius: 24px;
    background:
      linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(255, 255, 255, 0.02)),
      rgba(10, 12, 16, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  }

  .jobs-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .jobs-field {
    display: grid;
    gap: 7px;
    min-width: 0;
  }

  .jobs-field span {
    color: #dce5ea;
    font-size: 13px;
    font-weight: 600;
  }

  .jobs-form-card input,
  .jobs-form-card textarea,
  .jobs-form-card .form-select {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 13px 14px;
    border-radius: 12px;
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }

  .jobs-form-card input::placeholder,
  .jobs-form-card textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
  }

  .jobs-form-card input:focus,
  .jobs-form-card textarea:focus,
  .jobs-form-card .form-select:focus {
    outline: none;
    border-color: #00e5ff;
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.12);
  }

  .jobs-field-wide {
    grid-column: 1 / -1;
  }

  .jobs-submit {
    margin-top: 20px;
  }

  @media (min-width: 900px) {
    .jobs-apply {
      grid-template-columns: 0.92fr 1.08fr;
      gap: 70px;
      padding: 110px 0;
    }

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

  .form-select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-family: inherit;
  appearance: 2px;

}
.form-select:focus {
  outline: 1px solid #00e5ff;
  border-color: #00e5ff;
}

.appearance {
  margin-left: 2px;
}

/* COOKIE CONSENT */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 1000;
  width: min(720px, calc(100% - 28px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(0, 229, 255, 0.38);
  border-radius: 24px;
  background: rgba(8, 10, 15, 0.94);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.48), 0 0 35px rgba(0, 229, 255, 0.08);
  backdrop-filter: blur(14px);
  box-sizing: border-box;
  transform: translateX(-50%);
  animation: cookieSheetUp 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner-copy h2,
.cookie-modal-panel h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0;
}

.cookie-banner-copy p,
.cookie-option p {
  margin: 0;
  color: #e8eef2;
  font-size: 16px;
  line-height: 1.45;
}

.cookie-banner-copy a {
  color: #00e5ff;
  font-weight: 700;
  text-decoration: underline;
}

.cookie-banner-actions,
.cookie-modal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cookie-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 14px 18px;
  color: #fff;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.cookie-btn:hover,
.cookie-icon-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn-secondary {
  background: rgba(0, 229, 255, 0.08);
  color: #00e5ff;
  border-color: rgba(0, 229, 255, 0.76);
}

.cookie-btn-primary {
  background: #00e5ff;
  color: #050607;
  border-color: rgba(0, 229, 255, 0.92);
  box-shadow: 0 12px 26px rgba(0, 229, 255, 0.28);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 0 14px 14px;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
}

.cookie-modal-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  border: 1px solid rgba(0, 229, 255, 0.38);
  border-radius: 24px;
  background: #080a0f;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
  padding: 22px;
  box-sizing: border-box;
  animation: cookiePanelUp 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.cookie-icon-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes cookieSheetUp {
  from {
    opacity: 0;
    transform: translate(-50%, 28px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes cookiePanelUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-option strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 15px;
}

.cookie-always-on {
  color: #00e5ff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 56px;
  height: 32px;
  flex-shrink: 0;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cookie-switch span::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.cookie-switch input:checked + span {
  background: #00e5ff;
  border-color: #00e5ff;
}

.cookie-switch input:checked + span::before {
  transform: translateX(24px);
  background: #050607;
}

.kontakt-map[data-consent-map] {
  min-height: 80vh;
}

.kontakt-map[data-consent-map].is-loaded {
  min-height: 0;
}

.map-consent-placeholder {
  display: grid;
  min-height: 80vh;
  width: 100%;
  place-items: center;
  padding: 28px;
  box-sizing: border-box;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.14), rgba(0, 126, 255, 0.1)),
    #080a0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 0;
  border-bottom-right-radius: 12px;
}

.map-consent-copy {
  max-width: 430px;
  text-align: center;
}

.map-consent-copy h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
  letter-spacing: 0;
}

.map-consent-copy p {
  margin: 0 0 18px;
  color: #dce5ea;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .cookie-banner {
    gap: 14px;
    left: 50%;
    right: auto;
    bottom: 12px;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    padding: 16px;
  }

  .cookie-banner-copy h2,
  .cookie-modal-panel h2 {
    font-size: 20px;
  }

  .cookie-banner-copy p,
  .cookie-option p {
    font-size: 13px;
  }

  .cookie-banner-actions,
  .cookie-modal-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .cookie-option {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .map-consent-placeholder,
  .kontakt-map[data-consent-map] {
    min-height: 360px;
  }
}
