/* =============================================
   BILLY'S COCKTAILS — 2026 REDESIGN
   ============================================= */

/* ── SELF-HOSTED FONTS ── */
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300; font-display: swap; src: url('../fonts/cormorantgaramond-v21-co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrEtImSqn7B6D.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/cormorantgaramond-v21-co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrEtImSqn7B6D.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 700; font-display: swap; src: url('../fonts/cormorantgaramond-v21-co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrEtImSqn7B6D.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/cormorantgaramond-v21-co3bmX5slCNuHLi8bLeY9MK7whWMhyjYqXtKky2F7g.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/cormorantgaramond-v21-co3bmX5slCNuHLi8bLeY9MK7whWMhyjYqXtKky2F7g.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/cormorantgaramond-v21-co3bmX5slCNuHLi8bLeY9MK7whWMhyjYqXtKky2F7g.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/cormorantgaramond-v21-co3bmX5slCNuHLi8bLeY9MK7whWMhyjYqXtKky2F7g.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/outfit-v15-QGYvz_MVcBeNP4NJtEtqUYLknw.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/outfit-v15-QGYvz_MVcBeNP4NJtEtqUYLknw.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/outfit-v15-QGYvz_MVcBeNP4NJtEtqUYLknw.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/outfit-v15-QGYvz_MVcBeNP4NJtEtqUYLknw.woff2') format('woff2'); }

:root {
  --petrol: #1A6E73;
  --petrol-dark: #135357;
  --petrol-light: #E8F4F5;
  --warm: #F5F2EC;
  --sand: #C4B9A8;
  --dark: #1E1E1E;
  --gray: #666;
  --white: #FFFFFF;
  --f-display: 'Cormorant Garamond', serif;
  --f-body: 'Outfit', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1200px;
  --header-h: 76px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--f-body); background: var(--warm); color: var(--dark); overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── REVEAL ANIMATIONS ── */
.rv {
  opacity: 0;
  transform: var(--rv-transform, translate3d(0, 60px, 0));
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--rv-delay, 0ms);
}
.rv.visible { opacity: 1; transform: translate3d(0,0,0) scale(1); }

/* Stagger children animation */
.rv-stagger > * {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.rv-stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0ms; }
.rv-stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:90ms; }
.rv-stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:180ms; }
.rv-stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:270ms; }
.rv-stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:360ms; }
.rv-stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:450ms; }

/* Clip reveal (text lines) */
.rv-clip {
  overflow: hidden;
}
.rv-clip > span {
  display: block;
  opacity: 0; transform: translateY(100%);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--rv-delay, 0ms);
}
.rv-clip.visible > span { opacity: 1; transform: translateY(0); }

/* Split line reveal */
@keyframes lineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.rv-line {
  height: 1px; background: var(--petrol); transform-origin: left;
  opacity: 0; transform: scaleX(0);
  transition: opacity 0.1s, transform 1.1s var(--ease);
  transition-delay: var(--rv-delay, 0ms);
}
.rv-line.visible { opacity: 1; transform: scaleX(1); }

/* Parallax wrapper */
.parallax-wrap { overflow: hidden; }
.parallax-img { will-change: transform; transition: none; }

/* ── HEADER ── */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 clamp(20px, 4vw, 60px);
  transition: all 0.4s var(--ease);
}
.hdr.solid {
  background: rgba(245,242,236,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(26,110,115,0.06);
}
.hdr-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); position: relative;
}
.hdr-logo { height: 76px; width: auto; transition: filter 0.4s, height 0.4s; cursor: pointer; }
.hdr.solid .hdr-logo { height: 62px; }

/* hdr-nav removed — tube-nav is the only desktop nav */

/* ── TUBE NAV (desktop pill inside header) ── */
.tube-nav {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.tube-nav-inner {
  display: flex; align-items: center; gap: 2px;
  background: rgba(26,24,20,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 100px; padding: 4px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.hdr.solid .tube-nav-inner {
  background: rgba(245,242,236,0.7);
  border-color: rgba(26,110,115,0.12);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.tube-active-pill {
  position: absolute; top: 4px; height: calc(100% - 8px);
  border-radius: 100px;
  background: rgba(255,255,255,0.18);
  transition: left 0.4s cubic-bezier(0.34,1.56,0.64,1), width 0.4s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none; z-index: 0;
}
.hdr.solid .tube-active-pill { background: rgba(26,110,115,0.14); }
.tube-item {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 5px;
  padding: 7px 15px; border-radius: 100px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.2px;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s; white-space: nowrap;
}
.hdr.solid .tube-item { color: rgba(30,30,30,0.45); }
.tube-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.tube-item:hover { color: rgba(255,255,255,0.9); }
.hdr.solid .tube-item:hover { color: var(--dark); }
.tube-item.active { color: #fff; font-weight: 600; }
.hdr.solid .tube-item.active { color: var(--petrol); }
/* Lamp bar */
.tube-item.active::before {
  content: ''; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 26px; height: 2px;
  background: var(--petrol); border-radius: 0 0 3px 3px;
  box-shadow: 0 0 8px rgba(26,110,115,0.8), 0 0 20px rgba(26,110,115,0.4);
}
/* Lamp glow */
.tube-item.active::after {
  content: ''; position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  width: 50px; height: 20px;
  background: radial-gradient(ellipse, rgba(26,110,115,0.3) 0%, transparent 70%);
  pointer-events: none;
}
/* ── TUBE BOTTOM NAV (mobile) ── */
.tube-bottom {
  display: none;
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 95;
}
.tube-bottom .tube-nav-inner {
  background: rgba(20, 18, 14, 0.72);
  border-color: rgba(255,255,255,0.14);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.1);
  padding: 5px;
}
.tube-bottom .tube-item { padding: 12px 20px; color: rgba(255,255,255,0.7); }
.tube-bottom .tube-item svg { width: 17px; height: 17px; }
.tube-bottom .tube-item span { display: none; }
.tube-bottom .tube-active-pill { background: rgba(255,255,255,0.12); }
.tube-bottom .tube-item.active { color: #fff; }
/* Bottom lamp appears at bottom edge */
.tube-bottom .tube-item.active::before {
  top: auto; bottom: 0;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 0 8px rgba(26,110,115,0.8), 0 0 20px rgba(26,110,115,0.4);
}
.tube-bottom .tube-item.active::after {
  top: auto; bottom: -10px;
  background: radial-gradient(ellipse, rgba(26,110,115,0.25) 0%, transparent 70%);
}

/* ── ANFRAGEN CTA in tube-nav ── */
.tube-item[data-tube="kontakt"] {
  background: var(--petrol);
  color: #fff !important;
  padding: 7px 18px;
  margin-left: 4px;
  box-shadow: 0 2px 12px rgba(26,110,115,0.35);
  transition: background 0.25s, box-shadow 0.25s, color 0.25s;
}
.tube-item[data-tube="kontakt"]:hover {
  background: var(--petrol-dark) !important;
  box-shadow: 0 4px 20px rgba(26,110,115,0.45);
  color: #fff !important;
}
.hdr.solid .tube-item[data-tube="kontakt"] { color: #fff !important; }
/* Hide lamp glow on CTA item */
.tube-item[data-tube="kontakt"].active::before,
.tube-item[data-tube="kontakt"].active::after { display: none; }

/* ── LANGUAGE TOGGLE ── */
.hdr-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 13px; border-radius: 100px;
  font-family: var(--f-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.8px; color: var(--dark);
  border: 1.5px solid rgba(26,110,115,0.22);
  background: transparent; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.lang-toggle:hover { border-color: var(--petrol); color: var(--petrol); }
.lang-toggle svg { width: 14px; height: 14px; flex-shrink: 0; }
.hdr.hero-transparent .lang-toggle { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }
.hdr.hero-transparent .lang-toggle:hover { border-color: #fff; color: #fff; }
.hdr.solid .lang-toggle { color: var(--dark); border-color: rgba(26,110,115,0.22); }


/* ── FIXED CTA ── */
.fixed-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  background: var(--petrol); color: #fff;
  padding: 14px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
  box-shadow: 0 8px 32px rgba(26,110,115,0.35);
  opacity: 0; transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all 0.5s var(--ease);
}
.fixed-cta.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fixed-cta:hover { background: var(--petrol-dark); transform: translateY(-2px) scale(1.02); }
.fixed-cta svg { flex-shrink: 0; }
@media (max-width: 768px) { .fixed-cta { display: none !important; } }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 48% 52%;
}

/* Video column */
.hero-video-col {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Gradient fade: video → content bg — desktop only */
@media (min-width: 769px) {
  .hero-video-col::after {
    content: '';
    position: absolute;
    top: 0; right: -2px; bottom: 0;
    width: 55%;
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(245, 242, 236, 0.5) 40%,
      rgba(245, 242, 236, 0.85) 70%,
      rgba(245, 242, 236, 1) 100%
    );
    pointer-events: none;
    z-index: 10;
  }
}

/* Content column */
.hero-content-col {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 40px) clamp(40px, 5vw, 80px) 60px;
  background: var(--warm);
}
.hero-logo {
  height: 38px; width: auto;
  margin-bottom: 20px; display: block;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.1s var(--ease) forwards;
}
.hero-tag {
  font-family: var(--f-body); font-size: 11px; letter-spacing: 6px;
  color: var(--petrol); text-transform: uppercase;
  margin-bottom: 20px; display: flex; flex-direction: column; gap: 4px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s var(--ease) forwards;
}
.hero-tag-loc { letter-spacing: 4px; opacity: 0.7; }
.hero-h1 {
  font-family: var(--f-display); font-size: clamp(44px, 6vw, 80px);
  font-weight: 300; color: var(--dark); line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s 0.5s var(--ease) forwards;
}
.hero-h1 em { font-weight: 700; font-style: italic; display: block; }
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px); color: var(--gray);
  font-weight: 300; line-height: 1.7; max-width: 42ch;
  margin-bottom: 40px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s 0.75s var(--ease) forwards;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s 1s var(--ease) forwards;
}
.hero-usp {
  display: inline-flex; align-items: flex-start; gap: 10px;
  margin-top: 24px;
  padding: 12px 18px;
  background: rgba(26,110,115,0.1);
  border: 1px solid rgba(26,110,115,0.22);
  border-radius: 12px;
  color: var(--petrol);
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.8s 1.2s var(--ease) forwards;
}
.hero-usp svg { flex-shrink: 0; margin-top: 3px; }
.hero-usp-title { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; line-height: 1.3; }
.hero-usp-sub { font-size: 12px; font-weight: 400; opacity: 0.75; margin-top: 2px; line-height: 1.4; }

/* Mobile Hero: video as background */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    min-height: 100svh;
  }
  .hero-video-col {
    position: absolute; inset: 0;
    z-index: 0;
  }
  .hero-video-col::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(20,18,14,0.85) 0%, rgba(20,18,14,0.4) 60%, rgba(20,18,14,0.15) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-content-col {
    position: relative; z-index: 2;
    grid-row: 1;
    background: transparent;
    padding: calc(var(--header-h) + 20px) 28px 80px;
    justify-content: flex-end;
  }
  .hero-logo { display: none !important; }
  .hero-tag { color: rgba(255,255,255,0.7); }
  .hero-h1 { color: #fff; }
  .hero-h1 em { color: var(--sand); }
  .hero-sub { color: rgba(255,255,255,0.75); }
  .hero-usp { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: #fff; }
  .hdr.hero-transparent .nav-link { color: #fff; }
  .hdr.hero-transparent .hdr-logo { filter: brightness(0) invert(1); }
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }



/* ── LOGO INFINITE SLIDER ── */
.logo-slider { overflow: hidden; margin-top: 28px; width: 100%; }
.logo-track { display: flex; align-items: center; gap: clamp(40px,5vw,72px); width: max-content; animation: logoSlide 36s linear infinite; padding: 4px 0; }
.logo-track:hover { animation-play-state: paused; }
@keyframes logoSlide { from { transform: translateX(0); } to { transform: translateX(-50%); } }



/* ── MARQUEE ── */
.marquee-wrap { overflow: hidden; background: var(--petrol); padding: 16px 0; }
.marquee-track { display: flex; animation: marquee 30s linear infinite; width: max-content; }
.marquee-item {
  font-family: var(--f-body); font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.8); letter-spacing: 4px;
  text-transform: uppercase; white-space: nowrap;
  padding: 0 20px; display: flex; align-items: center; gap: 20px;
}
.marquee-dot { font-size: 7px; color: rgba(255,255,255,0.3); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-33.333%)} }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.3px; border-radius: 100px;
  padding: 14px 32px;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--petrol); color: #fff; }
.btn-primary:hover { background: var(--petrol-dark); box-shadow: 0 8px 32px rgba(26,110,115,0.3); transform: translateY(-2px); }
.btn-outline { background: none; color: var(--petrol); border: 2px solid var(--petrol); }
.btn-outline:hover { background: var(--petrol); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: #fff; }
.btn-white { background: #fff; color: var(--petrol); }
.btn-white:hover { background: rgba(255,255,255,0.9); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── SECTIONS ── */
.sec { padding: 100px clamp(20px, 4vw, 60px); }
.sec-warm { background: var(--warm); }
.sec-white { background: var(--petrol); }
.sec-dark { background: var(--dark); }
.sec-teal { background: var(--petrol); }

/* ── SEC-WHITE (petrol) child overrides ── */
.sec-white .label { color: rgba(255,255,255,0.5); }
.sec-white .sec-h2 { color: #fff; }
.sec-white .sec-sub { color: rgba(255,255,255,0.68); }
/* Event cards on petrol */
.sec-white .evt-card { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.1); }
.sec-white .evt-card:hover { background: rgba(255,255,255,0.14); box-shadow: 0 20px 60px rgba(0,0,0,0.25); border-color: rgba(255,255,255,0.2); }
.sec-white .evt-title { color: #fff; }
.sec-white .evt-text { color: rgba(255,255,255,0.62); }
.sec-white .evt-icon { filter: brightness(0) invert(1); opacity: 0.75; }
.sec-white .evt-arrow { color: rgba(255,255,255,0.8); }
/* Service cards on petrol — Altweiss */
.sec-white .srv-card { background: #F5F2EC; border-color: rgba(245,242,236,0.2); }
.sec-white .srv-card:hover { background: #FAF8F4; box-shadow: 0 20px 60px rgba(0,0,0,0.2); border-color: rgba(245,242,236,0.4); transform: translateY(-4px); }
.sec-white .srv-num { color: rgba(26,110,115,0.12); }
.sec-white .srv-title { color: var(--dark); }
.sec-white .srv-text { color: var(--gray); }
/* Cocktail cards on petrol (cocktails.html) */
.sec-white .ck-full-card { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.1); }
.sec-white .ck-full-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.3); background: rgba(255,255,255,0.12); }
.sec-white .ck-full-name { color: #fff; }
.sec-white .ck-full-desc { color: rgba(255,255,255,0.62); }
/* About section on petrol */
.sec-white .about-p { color: rgba(255,255,255,0.75); }
.sec-white .about-quote { border-left-color: rgba(255,255,255,0.3); color: #fff; }
.sec-white .about-quote cite { color: rgba(255,255,255,0.5); }
.sec-white .about-photo { background: rgba(255,255,255,0.08); }
.sec-white .about-photo span { color: rgba(255,255,255,0.3) !important; }
/* Reference logos on petrol */
.sec-white .ref-name { color: rgba(255,255,255,0.28); }
.sec-white .ref-name:hover { color: rgba(255,255,255,0.9); }
/* Contact section on petrol */
.sec-white .kontakt-h3 { color: #fff; }
.sec-white .kontakt-label { color: rgba(255,255,255,0.5); }
.sec-white .kontakt-val { color: rgba(255,255,255,0.9); }
.sec-white .kontakt-val:hover { color: rgba(255,255,255,0.6); }
.sec-white .kontakt-cta-box { background: rgba(0,0,0,0.18); border: 1px solid rgba(255,255,255,0.1); }
.sec-white .kontakt-cta-box p { color: rgba(255,255,255,0.75); }
/* Form inputs on petrol */
.sec-white .input { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #fff; }
.sec-white .input::placeholder { color: rgba(255,255,255,0.42); }
.sec-white .input:focus { border-color: rgba(255,255,255,0.6); box-shadow: 0 0 0 3px rgba(255,255,255,0.08); }
.sec-white select.input option { background: var(--petrol-dark); color: #fff; }
/* Buttons on petrol */
.sec-white .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.sec-white .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.7); }

.container { max-width: var(--max-w); margin: 0 auto; }

.label {
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 5px; color: var(--petrol);
  text-transform: uppercase; display: block; margin-bottom: 12px;
}
.sec-h2 {
  font-family: var(--f-display); font-size: clamp(34px, 5vw, 56px);
  font-weight: 300; color: var(--dark); line-height: 1.15; margin-bottom: 16px;
}
.sec-h2 em { font-weight: 700; font-style: italic; }
.sec-sub { font-size: 16px; color: var(--gray); max-width: 50ch; margin-bottom: 48px; line-height: 1.7; }
.sec-header { margin-bottom: 48px; }
.sec-header-center { text-align: center; }
.sec-header-center .sec-sub { margin: 0 auto 48px; }

/* ── SERVICE CARDS ── */
.srv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.srv-card {
  background: var(--white); border-radius: 20px; padding: 36px 32px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(26,110,115,0.06);
  transition: all 0.4s var(--ease);
}
.srv-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(26,110,115,0.1); border-color: rgba(26,110,115,0.15); }
.srv-num { font-family: var(--f-display); font-size: 48px; font-weight: 300; color: rgba(26,110,115,0.1); position: absolute; top: 16px; right: 24px; }
.srv-title { font-family: var(--f-display); font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.srv-text { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ── EVENT CATEGORIES ── */
.evt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.evt-card {
  background: var(--white); border-radius: 20px; padding: 36px 32px 32px;
  cursor: pointer; border: 1px solid rgba(26,110,115,0.06);
  transition: all 0.4s var(--ease); position: relative;
}
.evt-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(26,110,115,0.1); border-color: rgba(26,110,115,0.18); }
.evt-icon { margin-bottom: 20px; width: 48px; height: 48px; }
.evt-title { font-family: var(--f-display); font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.evt-text { font-size: 14.5px; color: var(--gray); line-height: 1.7; }
.evt-arrow { position: absolute; top: 36px; right: 32px; color: var(--petrol); opacity: 0; transform: translateX(-8px); transition: all 0.35s var(--ease); width: 20px; height: 20px; }
.evt-card:hover .evt-arrow { opacity: 1; transform: translateX(0); }

/* ── COCKTAIL CARDS (with hover swap) ── */
.ck-hscroll-wrap {
  overflow-x: auto; overflow-y: visible;
  padding: 32px 0 32px clamp(20px, 4vw, 60px);
  scrollbar-width: none; -ms-overflow-style: none;
  position: relative;
}
.ck-hscroll-wrap::-webkit-scrollbar { display: none; }
.ck-hscroll-wrap::after {
  content: '';
  position: sticky; right: 0;
  display: block;
  width: 120px; height: 100%;
  margin-left: -120px;
  background: linear-gradient(to left, var(--warm) 20%, transparent);
  pointer-events: none;
  flex-shrink: 0;
}
.ck-hscroll-track { display: flex; gap: 20px; width: max-content; padding-right: 60px; }
.ck-swipe-hint {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--petrol);
  opacity: 0.6;
}
@media (max-width: 840px) {
  .ck-swipe-hint { display: flex; }
}

.ck-card {
  width: 300px; flex-shrink: 0;
  background: var(--white); border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease);
}
.ck-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(26,110,115,0.12); }

.ck-img-wrap {
  position: relative; height: 360px; overflow: hidden;
}
.ck-img-1, .ck-img-2 {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.55s ease;
}
.ck-img-2 { opacity: 0; }
.ck-card:hover .ck-img-1 { opacity: 0; }
.ck-card:hover .ck-img-2 { opacity: 1; }

.ck-info { padding: 20px 24px 24px; }
.ck-name { font-family: var(--f-display); font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.ck-desc { font-size: 13px; color: var(--gray); letter-spacing: 0.4px; }

/* Cocktail full grid (cocktails.html) */
.ck-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ck-full-card {
  border-radius: 20px; overflow: hidden;
  background: var(--warm); border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease);
}
.ck-full-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(26,110,115,0.1); }
.ck-full-img {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
}
.ck-full-img .ck-img-1,
.ck-full-img .ck-img-2 {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.55s ease;
}
.ck-full-img .ck-img-2 { opacity: 0; }
.ck-full-card:hover .ck-img-1 { opacity: 0; }
.ck-full-card:hover .ck-img-2 { opacity: 1; }
.ck-full-body { padding: 22px 26px 26px; }
.ck-full-name { font-family: var(--f-display); font-size: 26px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.ck-full-desc { font-size: 14px; color: var(--gray); letter-spacing: 0.4px; }

/* ── STATS BAND ── */
.stats-band { padding: 64px clamp(20px,4vw,60px); background: var(--dark); }
.stats-inner { max-width: 900px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; }
.stat { text-align: center; }
.stat-val { font-family: var(--f-display); font-size: clamp(44px, 7vw, 72px); font-weight: 300; color: var(--petrol); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 3px; text-transform: uppercase; margin-top: 8px; }

/* ── STATS INLINE (index services section) ── */
.stats-inline {
  display: flex; justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  margin-top: 56px; padding: 32px 0;
  border-top: 1px solid rgba(26,110,115,0.12);
  border-bottom: 1px solid rgba(26,110,115,0.12);
}
.stats-inline .stat-center { text-align: center; }
.stats-inline .stat-val {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600; color: var(--petrol); line-height: 1;
}
.stats-inline .stat-label {
  font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gray); margin-top: 6px;
}

/* ── FAN GALLERY ── */
.fan-gallery-wrap { padding: 20px 0 40px; overflow: hidden; }
.fan-gallery { position: relative; height: 330px; display: flex; align-items: center; justify-content: center; }
.fan-photo { position: absolute; width: 260px; height: 260px; border-radius: 18px; overflow: hidden; cursor: grab; box-shadow: 0 10px 36px rgba(0,0,0,0.24); transition: transform 0.75s cubic-bezier(0.34,1.56,0.64,1); will-change: transform; user-select: none; }
.fan-photo:active { cursor: grabbing; }
.fan-photo img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; display: block; }
.fan-photo:nth-child(1) { z-index: 70; }
.fan-photo:nth-child(2) { z-index: 60; }
.fan-photo:nth-child(3) { z-index: 50; }
.fan-photo:nth-child(4) { z-index: 40; }
.fan-photo:nth-child(5) { z-index: 30; }
.fan-photo:nth-child(6) { z-index: 20; }
.fan-photo:nth-child(7) { z-index: 10; }
.fan-gallery.loaded .fan-photo:nth-child(1) { transform: translateX(-465px) translateY(22px) rotate(-5.5deg); --fan-x:-465px; --fan-r:-5.5deg; }
.fan-gallery.loaded .fan-photo:nth-child(2) { transform: translateX(-310px) translateY(14px) rotate(-3.5deg); --fan-x:-310px; --fan-r:-3.5deg; }
.fan-gallery.loaded .fan-photo:nth-child(3) { transform: translateX(-155px) translateY(28px) rotate(-1.8deg); --fan-x:-155px; --fan-r:-1.8deg; }
.fan-gallery.loaded .fan-photo:nth-child(4) { transform: translateX(0px) translateY(8px) rotate(1deg); --fan-x:0px; --fan-r:1deg; }
.fan-gallery.loaded .fan-photo:nth-child(5) { transform: translateX(155px) translateY(20px) rotate(2.8deg); --fan-x:155px; --fan-r:2.8deg; }
.fan-gallery.loaded .fan-photo:nth-child(6) { transform: translateX(310px) translateY(38px) rotate(4.2deg); --fan-x:310px; --fan-r:4.2deg; }
.fan-gallery.loaded .fan-photo:nth-child(7) { transform: translateX(465px) translateY(-4px) rotate(5.5deg); --fan-x:465px; --fan-r:5.5deg; }
.fan-gallery.loaded .fan-photo:hover { z-index: 100; transform: translateX(var(--fan-x,0)) translateY(-8px) rotate(var(--fan-r,0)) scale(1.07); }
/* Tablet: 5 cards */
@media (max-width: 900px) {
  .fan-gallery { height: 270px; }
  .fan-photo { width: 210px; height: 210px; }
  .fan-photo:nth-child(1), .fan-photo:nth-child(7) { display: none; }
  .fan-gallery.loaded .fan-photo:nth-child(2) { transform: translateX(-290px) translateY(18px) rotate(-3.5deg); --fan-x:-290px; }
  .fan-gallery.loaded .fan-photo:nth-child(3) { transform: translateX(-145px) translateY(6px) rotate(-0.8deg); --fan-x:-145px; }
  .fan-gallery.loaded .fan-photo:nth-child(4) { transform: translateX(0px) translateY(14px) rotate(0.5deg); --fan-x:0px; }
  .fan-gallery.loaded .fan-photo:nth-child(5) { transform: translateX(145px) translateY(20px) rotate(1.8deg); --fan-x:145px; }
  .fan-gallery.loaded .fan-photo:nth-child(6) { transform: translateX(290px) translateY(30px) rotate(3.5deg); --fan-x:290px; }
}
/* Mobile: 3 cards */
@media (max-width: 560px) {
  .fan-gallery { height: 210px; }
  .fan-photo { width: 160px; height: 160px; border-radius: 12px; }
  .fan-photo:nth-child(1), .fan-photo:nth-child(2), .fan-photo:nth-child(6), .fan-photo:nth-child(7) { display: none; }
  .fan-gallery.loaded .fan-photo:nth-child(3) { transform: translateX(-155px) translateY(16px) rotate(-2.5deg); --fan-x:-155px; }
  .fan-gallery.loaded .fan-photo:nth-child(4) { transform: translateX(0px) translateY(5px) rotate(0.8deg); --fan-x:0px; }
  .fan-gallery.loaded .fan-photo:nth-child(5) { transform: translateX(155px) translateY(20px) rotate(2.8deg); --fan-x:155px; }
}

/* ── IMAGE BAND (legacy) ── */
.img-band { display: flex; gap: 8px; padding: 8px; overflow: hidden; }
.img-band-item { flex: 1; min-width: 0; border-radius: 8px; overflow: hidden; aspect-ratio: 3/4; }
.img-band-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.img-band-item:hover .img-band-img { transform: scale(1.06); }

/* ── REF STRIP ── */
.ref-strip { padding: 60px clamp(20px,4vw,60px); background: var(--petrol); }
.ref-strip .label { color: rgba(255,255,255,0.5); }
.ref-logos { display: flex; justify-content: center; align-items: center; gap: clamp(28px,4vw,60px); flex-wrap: wrap; margin-top: 32px; }
.ref-name { font-size: 17px; font-weight: 600; color: #ccc; letter-spacing: 4px; text-transform: uppercase; transition: color 0.3s; }
.ref-name:hover { color: var(--petrol); }
.ref-logo-img { height: 48px; width: auto; max-width: 180px; object-fit: contain; opacity: 0.75; transition: opacity 0.3s; }
.ref-logo-img:hover { opacity: 1; }
/* Logos on petrol (ref-strip on main page) → original colors */
.ref-strip .ref-logo-img { filter: none; opacity: 0.8; }
.ref-strip .ref-logo-img:hover { opacity: 1; }

/* ── MINI CONTACT ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.input {
  width: 100%; padding: 15px 20px;
  border: 1.5px solid rgba(26,110,115,0.12); border-radius: 12px;
  font-family: var(--f-body); font-size: 15px; color: var(--dark);
  background: var(--white); outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.input:focus { border-color: var(--petrol); box-shadow: 0 0 0 3px rgba(26,110,115,0.08); }
.input::placeholder { color: #aaa; }
.input-ta { resize: vertical; margin-bottom: 14px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: calc(var(--header-h) + 64px) clamp(20px,4vw,60px) 64px;
  background: var(--warm);
}
.page-h1 {
  font-family: var(--f-display); font-size: clamp(42px, 7vw, 72px);
  font-weight: 300; color: var(--dark); line-height: 1.1; margin-bottom: 20px;
}
.page-h1 em { font-weight: 700; font-style: italic; }
.page-sub { font-size: 17px; color: var(--gray); max-width: 54ch; line-height: 1.6; }

/* ── LEISTUNGEN ── */
.inc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 14px; margin-top: 40px; }
.inc-item { font-size: 16px; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: rgba(255,255,255,0.08); border-radius: 12px; }
.inc-check { flex-shrink: 0; width: 26px; height: 26px; }
.inc-check svg { width: 26px; height: 26px; display: block; }
.inc-check .check-bg { fill: rgba(255,255,255,0.15); }
.inc-check .check-path {
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 23;
  stroke-dashoffset: 23;
}
@keyframes checkDraw {
  to { stroke-dashoffset: 0; }
}
.inc-item.visible .check-path {
  animation: checkDraw 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.inc-item.visible:nth-child(1) .check-path { animation-delay: 300ms; }
.inc-item.visible:nth-child(2) .check-path { animation-delay: 480ms; }
.inc-item.visible:nth-child(3) .check-path { animation-delay: 660ms; }
.inc-item.visible:nth-child(4) .check-path { animation-delay: 840ms; }
.inc-item.visible:nth-child(5) .check-path { animation-delay: 1020ms; }
.inc-item.visible:nth-child(6) .check-path { animation-delay: 1200ms; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.about-photo { background: var(--petrol-light); border-radius: 20px; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; }
.about-p { font-size: 16px; color: #555; line-height: 1.85; margin-bottom: 20px; }
.about-quote { border-left: 3px solid var(--petrol); padding-left: 24px; margin-top: 32px; font-family: var(--f-display); font-size: 24px; font-style: italic; color: var(--dark); line-height: 1.5; }
.about-quote cite { font-family: var(--f-body); font-size: 13px; font-style: normal; color: var(--petrol); display: block; margin-top: 10px; letter-spacing: 0.05em; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }

/* ── GALLERY MASONRY (legacy) ── */
.gallery-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gallery-masonry .gallery-item { aspect-ratio: 4/3; }
.gallery-masonry .gallery-item:nth-child(3n+2) { aspect-ratio: 3/4; }
.gallery-masonry .gallery-item:nth-child(6n) { grid-column: span 2; aspect-ratio: 16/9; }

/* ── BENTO GALLERY ── */
.gal-section { padding-bottom: 0; }
.gal-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 clamp(12px, 3vw, 48px) clamp(60px, 8vw, 100px);
}

/* Base item */
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  clip-path: var(--ci, inset(100% 0 0 0));
  transform-style: preserve-3d;
  will-change: clip-path, transform;
  background: var(--petrol-dark);
  aspect-ratio: 4 / 5;
}
/* Clip-path wipe reveal */
.gal-item.gal-on {
  clip-path: inset(0 0 0 0) !important;
  transition: clip-path 0.92s cubic-bezier(0.77, 0, 0.175, 1) var(--gd, 0ms);
}
/* Image */
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none; user-select: none;
}
.gal-item:hover img { transform: scale(1.06); }
/* Petrol gradient overlay */
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 30%, rgba(8,50,53,0.82) 100%);
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s ease;
}
.gal-item:hover .gal-overlay { opacity: 1; }
/* Box shadow on hover */
.gal-item { transition: box-shadow 0.4s ease; }
.gal-item:hover { box-shadow: 0 28px 56px rgba(0,0,0,0.5); z-index: 3; }

/* ── CHAMPAGNER TOWER ── */
.tower-variants {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.tower-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tower-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.14); }
.tower-card picture img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.tower-card:hover picture img { transform: scale(1.04); }
.tower-card-body { padding: 24px; }
.tower-card-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 8px;
}
.tower-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.tower-card-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}
@media (max-width: 640px) {
  .tower-variants { grid-template-columns: 1fr; }
}

/* ── SECTION PETROL ── */
.sec-petrol { background: var(--petrol); }
.sec-petrol .label { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.2); }
.sec-petrol .sec-h2 { color: #fff; }
.sec-petrol .sec-h2 em { color: rgba(255,255,255,0.75); }

/* ── MOB LINK ICON ── */
.mob-link-icon { width: 28px; height: 28px; display: inline-block; vertical-align: middle; margin-right: 18px; opacity: 0.65; flex-shrink: 0; }

/* ── BAR COMPARISON SLIDER ── */
.bar-compare-layout { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; }
.bar-compare-text .sec-h2 { margin-bottom: 20px; }
.bar-seo-p { font-size: 15px; color: var(--stone); line-height: 1.8; margin-bottom: 16px; }
.bar-seo-p strong { color: var(--dark); font-weight: 600; }
.bar-features { list-style: none; padding: 0; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.bar-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--stone); }
.bar-features li svg { color: var(--petrol); flex-shrink: 0; }
.bar-compare { border-radius: 16px; overflow: hidden; cursor: ew-resize; user-select: none; touch-action: pan-y; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.bar-compare-inner { position: relative; width: 100%; aspect-ratio: 4/5; max-height: 80vh; }
.bar-compare-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; user-select: none; }
.bar-compare-before { z-index: 2; clip-path: inset(0 0 0 0%); }
.bar-compare-after  { z-index: 1; }
.bar-compare-handle { position: absolute; top: 0; bottom: 0; left: 0%; transform: translateX(-50%); width: 3px; background: #fff; box-shadow: 0 0 12px rgba(255,255,255,0.6), 0 0 32px rgba(255,255,255,0.25); pointer-events: none; z-index: 10; }
.bar-compare-handle-pill { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; border-radius: 50%; background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 0 0 3px rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center; gap: 4px; pointer-events: none; }
@keyframes handle-pulse { 0%,100% { box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 0 0 3px rgba(255,255,255,0.4); } 50% { box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 0 0 8px rgba(255,255,255,0.15); } }
.bar-compare-handle-pill { animation: handle-pulse 2s ease-in-out 2.8s 3; }
.bar-compare-label { position: absolute; top: 16px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #fff; background: rgba(0,0,0,0.35); padding: 5px 13px; border-radius: 100px; backdrop-filter: blur(8px); pointer-events: none; user-select: none; }
.bar-compare-label-l { left: 16px; }
.bar-compare-label-r { right: 16px; }
.bar-specs { display: flex; gap: 0; flex-wrap: wrap; border-top: 1px solid rgba(0,0,0,0.07); padding-top: 28px; margin-top: 0; }
.bar-spec { text-align: center; padding: 0 28px 0 0; margin-right: 28px; border-right: 1px solid rgba(0,0,0,0.07); }
.bar-spec:first-child { padding-left: 0; }
.bar-spec:last-child { border-right: none; margin-right: 0; }
.bar-spec-val { display: block; font-size: clamp(22px,3vw,28px); font-weight: 600; color: var(--petrol); font-family: var(--f-display); line-height: 1.1; }
.bar-spec-label { display: block; font-size: 11px; color: var(--stone); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; }
@media (max-width: 960px) {
  .bar-compare-layout { grid-template-columns: 1fr; gap: 40px; }
  .bar-compare-text .sec-h2 { text-align: center !important; }
  .bar-compare-text .label { display: block; text-align: center; }
  .bar-specs { justify-content: center; }
  .bar-spec { padding: 0 20px; margin-right: 0; }
}
@media (max-width: 600px) {
  .bar-compare-handle-pill { width: 36px; height: 36px; }
}

/* ── KONTAKT ── */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; }
.kontakt-h3 { font-family: var(--f-display); font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 28px; }
.kontakt-row { margin-bottom: 20px; }
.kontakt-label { font-size: 11px; letter-spacing: 3px; color: var(--petrol); text-transform: uppercase; display: block; margin-bottom: 4px; }
.kontakt-val { font-size: 17px; color: var(--dark); font-weight: 500; transition: color 0.3s; }
.kontakt-val:hover { color: var(--petrol); }
.kontakt-cta-box { margin-top: 36px; padding: 28px; background: var(--petrol-light); border-radius: 16px; }
.kontakt-cta-box p { font-size: 15px; color: var(--petrol-dark); line-height: 1.6; margin-bottom: 16px; }

/* ── FOOTER ── */
.footer { padding: 64px clamp(20px,4vw,60px) 32px; background: var(--dark); }
/* Newsletter strip */
.footer-newsletter-wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-newsletter-text h3 { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.footer-newsletter-sub { font-size: 13px; color: rgba(255,255,255,0.35); max-width: 36ch; }
.footer-newsletter-form { position: relative; display: flex; align-items: center; min-width: 280px; }
.footer-newsletter-input { width: 100%; height: 44px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; padding: 0 52px 0 20px; font-size: 14px; color: #fff; font-family: var(--f-body); outline: none; transition: border-color 0.3s; }
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.28); }
.footer-newsletter-input:focus { border-color: var(--petrol); }
.footer-newsletter-btn { position: absolute; right: 6px; width: 34px; height: 34px; border-radius: 50%; background: var(--petrol); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; transition: transform 0.2s, background 0.2s; }
.footer-newsletter-btn:hover { transform: scale(1.08); background: var(--petrol-dark); }
/* Footer main grid */
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 48px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo { height: 44px; filter: brightness(0) invert(1) opacity(0.6); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.3); line-height: 1.7; margin-top: 16px; max-width: 26ch; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-h4 { font-size: 11px; letter-spacing: 3px; color: var(--petrol); text-transform: uppercase; margin-bottom: 16px; }
.footer-link { display: block; font-size: 14px; color: rgba(255,255,255,0.4); padding: 3px 0; transition: color 0.3s; }
.footer-link:hover { color: rgba(255,255,255,0.8); }
.footer-contact { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 2.1; }
.footer-contact a { color: inherit; transition: color 0.3s; }
.footer-contact a:hover { color: rgba(255,255,255,0.8); }
/* Social icons */
.footer-social { display: flex; gap: 10px; margin-bottom: 24px; }
.footer-social-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); transition: border-color 0.3s, color 0.3s, background 0.3s; }
.footer-social-btn:hover { border-color: var(--petrol); color: #fff; background: rgba(26,110,115,0.2); }
/* Bottom bar */
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal span { cursor: pointer; transition: color 0.3s; }
.footer-legal span:hover { color: rgba(255,255,255,0.5); }

/* ── GOOGLE REVIEWS ── */
.rev-summary { display: flex; align-items: center; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.rev-stars-big { color: #F5A623; font-size: 20px; letter-spacing: 3px; line-height: 1; }
.rev-score-num { font-family: var(--f-display); font-size: 42px; font-weight: 300; color: var(--dark); line-height: 1; }
.rev-count { font-size: 13px; color: var(--gray); letter-spacing: 0.03em; }
.rev-scroll-wrap { overflow-x: auto; padding: 4px 0 28px; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-top: 40px; }
.rev-scroll-wrap::-webkit-scrollbar { display: none; }
.rev-scroll-track { display: flex; align-items: flex-start; gap: 20px; padding: 12px clamp(20px, 5vw, calc((100vw - 1200px) / 2 + 60px)) 32px; width: max-content; }
.rev-card { background: #fff; border-radius: 20px; padding: 28px; width: 320px; flex-shrink: 0; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 2px 16px rgba(0,0,0,0.05); border: 1.5px solid transparent; transition: box-shadow 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.5s var(--ease); }
.rev-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26,110,115,0.15), 0 2px 8px rgba(0,0,0,0.06); border-color: rgba(26,110,115,0.3); }
.rev-top { display: flex; align-items: center; gap: 12px; }
.rev-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 600; color: #fff; flex-shrink: 0; font-family: var(--f-body); }
.rev-meta { flex: 1; min-width: 0; }
.rev-name { font-size: 14px; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rev-stars { color: #F5A623; font-size: 12px; letter-spacing: 2px; margin-top: 3px; }
.rev-text { font-size: 14px; color: #555; line-height: 1.7; overflow: hidden; max-height: 142px; transition: max-height 0.65s var(--ease); }
.rev-card:hover .rev-text { max-height: 800px; }
.rev-gicon { margin-left: auto; flex-shrink: 0; }
.rev-hidden { display: none !important; }
.rev-nav-dots { display: flex; justify-content: center; gap: 10px; padding: 28px 0 0; }
.rev-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(26,110,115,0.2); cursor: pointer; transition: background 0.3s, transform 0.3s; border: none; padding: 0; }
.rev-dot.active { background: var(--petrol); transform: scale(1.35); }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid rgba(26,110,115,0.15); }
.faq-item:first-child { border-top: 1px solid rgba(26,110,115,0.15); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 0;
  font-size: 17px; font-weight: 500; color: var(--dark);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 24px; font-weight: 300; line-height: 1;
  color: var(--petrol); flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary { color: var(--petrol); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 32px 22px 0; font-size: 15px; color: var(--gray); line-height: 1.8; }
/* Bar compare section on petrol */
.sec-white .bar-seo-p { color: rgba(255,255,255,0.75); }
.sec-white .bar-seo-p strong { color: #fff; }
.sec-white .bar-features li { color: rgba(255,255,255,0.78); }
.sec-white .bar-features li svg { color: rgba(255,255,255,0.6); }
.sec-white .bar-spec-val { color: #fff; }
.sec-white .bar-spec-label { color: rgba(255,255,255,0.5); }
.sec-white .bar-specs { border-top-color: rgba(255,255,255,0.12); }
.sec-white .bar-spec { border-right-color: rgba(255,255,255,0.12); }
/* FAQ on petrol background */
.sec-white .faq-item { border-color: rgba(255,255,255,0.15); }
.sec-white .faq-item:first-child { border-top-color: rgba(255,255,255,0.15); }
.sec-white .faq-item summary { color: rgba(255,255,255,0.9); }
.sec-white .faq-item summary::after { color: rgba(255,255,255,0.6); }
.sec-white .faq-item[open] summary { color: #fff; }
.sec-white .faq-item[open] summary::after { color: #fff; }
.sec-white .faq-answer { color: rgba(255,255,255,0.68); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ck-grid { grid-template-columns: repeat(2, 1fr); }
  .evt-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-grid { grid-template-columns: 1fr; }
  .kontakt-grid > *:first-child { order: 2; }
  .kontakt-grid > *:last-child { order: 1; }
  .about-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry .gallery-item:nth-child(6n) { grid-column: span 1; aspect-ratio: 4/3; }
  /* Bento responsive: 2-col */
  .gal-bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 840px) {
  .tube-nav { display: none; }
  .tube-bottom { display: flex; }
  .fixed-cta { display: none; }
  body { padding-bottom: 80px; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { gap: 40px; }
}
@media (max-width: 768px) {
  /* Cocktail cards: peek next card */
  .ck-card { width: calc(85vw); }

  /* Reviews: vertical stack, tap to expand */
  .rev-scroll-wrap { overflow-x: visible; padding: 0; margin-top: 28px; }
  .rev-scroll-track { flex-direction: column; width: 100%; padding: 0 20px 32px; }
  .rev-card { width: 100%; cursor: pointer; }
  .rev-card:nth-child(n+4) { display: none; }
  .rev-card.expanded .rev-text { max-height: 800px; }
}
@media (max-width: 600px) {
  .sec { padding: 72px 20px; }
  .evt-grid { grid-template-columns: 1fr; }
  .srv-grid { grid-template-columns: 1fr; }
  .ck-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-masonry .gallery-item:nth-child(3n+2) { aspect-ratio: 4/3; }
  .img-band { flex-wrap: wrap; }
  .img-band-item { flex: 0 0 calc(50% - 4px); aspect-ratio: 1; }
  .footer-newsletter-wrap { flex-direction: column; align-items: flex-start; }
  .footer-newsletter-form { width: 100%; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 28px; }
  .fixed-cta span { display: none; }
  .fixed-cta { padding: 16px; border-radius: 50%; }
}

/* ── COOKIE CONSENT ── */
#bc-cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.35);
  padding: clamp(16px, 3vw, 24px) clamp(16px, 4vw, 48px);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#bc-cookie-banner.bc-visible { transform: translateY(0); }
#bc-cookie-banner.bc-hide { transform: translateY(100%); }

.bc-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.bc-text {
  flex: 1; min-width: 260px;
  display: flex; align-items: flex-start; gap: 14px;
}
.bc-text svg { flex-shrink: 0; margin-top: 2px; color: var(--petrol); }
.bc-text strong { display: block; color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.bc-text p { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.65; margin: 0; }
.bc-actions {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; flex-shrink: 0;
}

/* Banner / modal shared button styles */
.bc-btn {
  font-family: var(--f-body); font-size: 13px; font-weight: 500;
  border-radius: 100px; cursor: pointer; border: none;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, border-color 0.25s;
  white-space: nowrap; line-height: 1;
}
.bc-btn-primary {
  background: var(--petrol); color: #fff; padding: 11px 22px;
}
.bc-btn-primary:hover { background: var(--petrol-dark); box-shadow: 0 4px 20px rgba(26,110,115,0.35); }
.bc-btn-outline {
  background: transparent; color: rgba(255,255,255,0.85); padding: 10px 20px;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.bc-btn-outline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.bc-btn-text {
  background: transparent; color: rgba(255,255,255,0.45); padding: 10px 12px;
  font-size: 12px; text-decoration: underline; text-underline-offset: 3px;
}
.bc-btn-text:hover { color: rgba(255,255,255,0.8); }

/* Modal */
#bc-cookie-modal {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
#bc-cookie-modal.bc-modal-open { opacity: 1; pointer-events: auto; }

.bc-modal-box {
  background: var(--dark); border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  padding: 36px; max-width: 520px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
#bc-cookie-modal.bc-modal-open .bc-modal-box { transform: translateY(0); }

.bc-modal-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px;
}
.bc-modal-head h3 { color: #fff; font-family: var(--f-display); font-size: 22px; font-weight: 600; margin: 0; }
.bc-modal-close {
  background: rgba(255,255,255,0.08); border: none; border-radius: 50%;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(255,255,255,0.6); transition: background 0.2s, color 0.2s; flex-shrink: 0;
}
.bc-modal-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.bc-modal-intro { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0 0 24px; }

.bc-category {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.bc-cat-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 8px;
}
.bc-cat-label strong { display: block; color: #fff; font-size: 14px; margin-bottom: 2px; }
.bc-cat-label span { font-size: 11px; color: rgba(255,255,255,0.38); letter-spacing: 0.5px; }
.bc-category p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; margin: 0; }

/* Always-on checkmark */
.bc-always-on {
  width: 44px; height: 24px; border-radius: 100px; flex-shrink: 0;
  background: var(--petrol); display: flex; align-items: center; justify-content: center;
  color: #fff;
}

/* Toggle switch */
.bc-toggle { position: relative; display: inline-block; flex-shrink: 0; cursor: pointer; }
.bc-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.bc-toggle-track {
  display: block; width: 44px; height: 24px; border-radius: 100px;
  background: rgba(255,255,255,0.15);
  transition: background 0.3s;
  position: relative;
}
.bc-toggle input:checked + .bc-toggle-track { background: var(--petrol); }
.bc-toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%; background: #fff;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.bc-toggle input:checked + .bc-toggle-track .bc-toggle-thumb { transform: translateX(20px); }

.bc-modal-actions {
  display: flex; gap: 10px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4px;
}
.bc-modal-actions .bc-btn-outline { flex: 1; text-align: center; }
.bc-modal-actions .bc-btn-primary { flex: 1; text-align: center; }

/* Footer link */
.footer-cookie-link {
  background: none; border: none; cursor: pointer; padding: 0;
  color: rgba(255,255,255,0.35); font-size: 13px; font-family: var(--f-body);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer-cookie-link:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 840px) {
  /* Floating card above tube-bottom nav */
  #bc-cookie-banner {
    bottom: 112px;
    left: 12px; right: 12px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
}
@media (max-width: 640px) {
  .bc-inner { gap: 20px; }
  .bc-actions { width: 100%; justify-content: flex-end; }
  .bc-btn-text { order: 3; margin-right: auto; }
  .bc-modal-box { padding: 24px; }
  .bc-modal-actions { flex-direction: column; }
}

/* ── MOBILE HAMBURGER MENU ── */
.mob-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mob-menu-btn:hover { background: rgba(0,0,0,0.06); }
.mob-menu-btn span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mob-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-menu-btn.open span:nth-child(2) { opacity: 0; }
.mob-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mob-menu-overlay.open { opacity: 1; pointer-events: all; }

.mob-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,0.12);
}
.mob-menu-drawer.open { transform: translateX(0); }

.mob-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.mob-menu-logo { height: 32px; width: auto; }
.mob-menu-close {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: background 0.2s;
}
.mob-menu-close:hover { background: rgba(0,0,0,0.12); }

.mob-menu-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}
.mob-menu-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  border-radius: 0;
}
.mob-menu-nav a:hover { background: rgba(26,110,115,0.06); color: var(--petrol); }
.mob-menu-nav a.active { color: var(--petrol); font-weight: 600; }
.mob-menu-nav a svg { width: 20px; height: 20px; flex-shrink: 0; opacity: 0.6; }
.mob-menu-nav .mob-menu-divider {
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin: 8px 24px;
}
.mob-menu-cta {
  padding: 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.mob-menu-cta a {
  display: block;
  text-align: center;
  background: var(--petrol);
  color: #fff !important;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
}
.mob-menu-cta a:hover { background: var(--petrol-dark); }

@media (max-width: 840px) {
  .mob-menu-btn { display: flex; }
}
@media (min-width: 841px) {
  .mob-menu-overlay, .mob-menu-drawer { display: none !important; }
}

/* ── LEGAL PAGES (Impressum / Datenschutz) ── */
.legal-content { color: var(--gray); line-height: 1.8; }
.legal-content h2 { font-family: var(--f-display); font-size: clamp(18px,2.5vw,22px); font-weight: 600; color: var(--dark); margin: 40px 0 10px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.07); }
.legal-content h2:first-child { border-top: none; margin-top: 0; }
.legal-content h3 { font-size: 15px; font-weight: 600; color: var(--dark); margin: 24px 0 8px; }
.legal-content p { margin: 0 0 14px; font-size: 14px; }
.legal-content ul { padding-left: 20px; margin: 0 0 14px; font-size: 14px; }
.legal-content ul li { margin-bottom: 4px; }
.legal-content a { color: var(--petrol); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--petrol-dark); }
