/* ============================================================
     MEDUSA BRAND-FARBEN (aus Logo & Flyer gemessen) — NUR DIESE
     FARBEN für Texte/Akzente verwenden, keine neuen erfinden:
     Gold:  #a87f33 (Basis) / #c79b4a (hell) / #8e692f (dunkel)
     Weiß:  #f4f4f4 | Schwarz: #050505
     ============================================================ */
  :root {
    --ember: #ff6a1f;
    --ember-soft: #ff9a4d;
    --gold: #a87f33;
    --gold-light: #c79b4a;
    --bg: #050505;
    --bg-2: #0d0c0a;
    --text: #f4f4f4;
    --text-dim: #9a938a;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
  }

  /* ---------- LUXUS-FEINSCHLIFF ---------- */
  /* Goldene Scrollbar */
  html { scrollbar-color: #a87f33 #0a0a0a; scrollbar-width: thin; }
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: #0a0a0a; }
  ::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, #c79b4a, #8e692f); }
  ::-webkit-scrollbar-thumb:hover { background: #c79b4a; }

  /* Markieren in Gold */
  ::selection { background: #a87f33; color: #050505; }

  /* Feines Filmkorn über allem – kinoreif */
  .grain {
    position: fixed; inset: 0;
    z-index: 55;
    pointer-events: none;
    opacity: .05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
    background-size: 240px;
  }

  /* Goldener Licht-Schein, der der Maus folgt (nur Desktop) */
  #cursorGlow {
    position: fixed;
    top: 0; left: 0;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199,155,74,.08), transparent 60%);
    pointer-events: none;
    z-index: 45;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity .5s;
  }

  /* ---------- NAV ---------- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5vw;
    background: linear-gradient(to bottom, rgba(5,5,5,.85), transparent);
    transition: background .4s;
  }
  nav.solid { background: rgba(5,5,5,.92); backdrop-filter: blur(10px); }
  .nav-logo { display: flex; align-items: center; text-decoration: none; position: relative; }
  .nav-logo img {
    height: 52px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.6));
  }
  /* Glanz, der über das Logo läuft – nur auf den Logo-Pixeln dank Maske */
  .nav-logo::after {
    content: '';
    position: absolute;
    inset: 0;
    -webkit-mask: url('assets/logo.png') no-repeat center / contain;
    mask: url('assets/logo.png') no-repeat center / contain;
    background: linear-gradient(115deg,
      transparent 42%,
      rgba(255,255,255,.85) 50%,
      transparent 58%);
    background-size: 300% 100%;
    animation: sheen 9s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes sheen {
    0%   { background-position: 200% 0; }
    45%  { background-position: -100% 0; }
    100% { background-position: -100% 0; }
  }
  @media (max-width: 720px) { .nav-logo img { height: 42px; } }
  .nav-links { display: flex; gap: 34px; }
  .nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: .82rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: color .3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -7px;
    height: 1px; width: 0;
    background: linear-gradient(90deg, var(--gold-light), transparent);
    transition: width .4s ease;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after { width: 100%; }
  @media (max-width: 720px) { .nav-links { display: none; } }

  /* ---------- SCROLL HERO ---------- */
  #scrollHero { height: 950vh; position: relative; }
  .hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
  }
  #heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
  .hero-vignette {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,.55) 100%);
    pointer-events: none;
  }
  /* Unterkante des Videos weich in den Seitenton auslaufen lassen */
  /* Blendet das Video am Ende des Scrubs sauber ins Seitenschwarz */
  .hero-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 35%, rgba(5,5,5,.7) 72%, #050505 96%);
    opacity: 0;
    pointer-events: none;
  }

  .video-blend { margin-top: -1px; }

  .hero-title {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 12vh;
    text-align: center;
    pointer-events: none;
    transition: opacity .3s;
  }
  .hero-title h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.6rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: .45em;
    text-indent: .45em;
    background:
      linear-gradient(115deg, transparent 42%, rgba(255,255,255,.75) 50%, transparent 58%),
      linear-gradient(to bottom, #c79b4a 0%, #a87f33 55%, #8e692f 100%);
    background-size: 300% 100%, 100% 100%;
    animation: sheen-title 9s ease-in-out infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 30px rgba(255,140,40,.35)) drop-shadow(0 2px 6px rgba(0,0,0,.6));
  }
  @keyframes sheen-title {
    0%   { background-position: 200% 0, 0 0; }
    45%  { background-position: -100% 0, 0 0; }
    100% { background-position: -100% 0, 0 0; }
  }
  .hero-title p {
    margin-top: 10px;
    font-size: clamp(.8rem, 1.6vw, 1rem);
    letter-spacing: .5em;
    text-indent: .5em;
    text-transform: uppercase;
    color: var(--text);
  }
  .scroll-hint {
    position: absolute;
    bottom: 4vh; left: 50%;
    transform: translateX(-50%);
    animation: bob 2.2s ease-in-out infinite;
    pointer-events: none;
    transition: opacity .4s;
  }
  .scroll-hint svg {
    display: block;
    filter: drop-shadow(0 0 8px rgba(199,155,74,.35)) drop-shadow(0 1px 3px rgba(0,0,0,.8));
  }
  @keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,10px); } }

  /* Endtext, der am Ende des Scrubs einblendet */
  .hero-endtext {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
  }
  .hero-endtext h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 4.5vw, 3.2rem);
    letter-spacing: .3em;
    text-indent: .3em;
    color: var(--gold-light);
    text-shadow: 0 2px 30px rgba(0,0,0,.8);
  }
  .hero-endtext p {
    margin-top: 14px;
    color: var(--text);
    letter-spacing: .35em;
    text-indent: .35em;
    text-transform: uppercase;
    font-size: clamp(.75rem, 1.5vw, .95rem);
  }

  /* Edler Preloader (Vollbild) */
  #loader {
    position: fixed; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 26px;
    background: #050505;
    z-index: 400;
    transition: opacity .9s ease;
  }
  #loader.hidden { opacity: 0; pointer-events: none; }
  #loader .l-logo {
    height: clamp(90px, 16vw, 150px);
    width: auto;
    animation: logo-breathe 2.4s ease-in-out infinite;
  }
  @keyframes logo-breathe {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(199,155,74,.15)); transform: scale(1); }
    50%      { filter: drop-shadow(0 0 26px rgba(199,155,74,.5)); transform: scale(1.025); }
  }
  #loader .l-bar {
    width: 180px; height: 2px;
    background: rgba(255,255,255,.1);
    overflow: hidden;
  }
  #loader .l-fill {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--ember), var(--ember-soft));
    transition: width .2s;
  }

  /* ---------- RAUCH-ATMOSPHÄRE ---------- */
  .smoke {
    position: fixed;
    pointer-events: none;
    z-index: 50;
    width: 60vw; height: 60vw;
    max-width: 900px; max-height: 900px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .5;
  }
  .smoke-1 {
    top: 10vh; left: -20vw;
    background: radial-gradient(circle, rgba(190,190,205,.055), transparent 65%);
    animation: drift-1 75s ease-in-out infinite alternate;
  }
  .smoke-2 {
    bottom: -10vh; right: -18vw;
    background: radial-gradient(circle, rgba(199,155,74,.04), transparent 65%);
    animation: drift-2 95s ease-in-out infinite alternate;
  }
  @keyframes drift-1 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(45vw, 12vh) scale(1.25); }
    100% { transform: translate(80vw, -6vh) scale(1.05); }
  }
  @keyframes drift-2 {
    0%   { transform: translate(0, 0) scale(1.1); }
    50%  { transform: translate(-40vw, -14vh) scale(1.3); }
    100% { transform: translate(-75vw, 4vh) scale(1); }
  }

  /* ---------- SCROLL-REVEAL ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .9s ease, transform .9s ease;
    transition-delay: var(--rd, 0s);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

  /* ---------- LIGHTBOX ---------- */
  .lightbox {
    position: fixed; inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5,5,5,.9);
    backdrop-filter: blur(10px);
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
  }
  .lightbox.open { opacity: 1; pointer-events: auto; }
  .lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border: 1px solid rgba(168,127,51,.5);
    box-shadow: 0 20px 80px rgba(0,0,0,.8);
  }
  .lb-btn {
    position: absolute;
    background: none;
    border: 1px solid rgba(168,127,51,.5);
    color: var(--gold-light);
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background .3s, color .3s;
  }
  .lb-btn:hover { background: var(--gold); color: #050505; }
  .lb-close { top: 24px; right: 24px; }
  .lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
  .lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

  /* ---------- SECTIONS ---------- */
  section.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 110px 5vw;
  }
  .kicker {
    color: var(--gold-light);
    font-size: .75rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  section.page h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    letter-spacing: .12em;
    margin-bottom: 24px;
    background: linear-gradient(to bottom, #f4f4f4 35%, #c79b4a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  section.page p.lead {
    color: var(--text-dim);
    max-width: 640px;
    line-height: 1.8;
    font-weight: 300;
  }
  /* Griechisches Mäander-Muster in Logo-Gold, wandert endlos nach rechts */
  .divider {
    width: min(340px, 70%);
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2032%2032'%3E%3Crect%20width='32'%20height='2.4'%20fill='%23a87f33'/%3E%3Crect%20y='29.6'%20width='32'%20height='2.4'%20fill='%23a87f33'/%3E%3Cpath%20d='M4%2026%20V6%20H28%20V26%20H12%20V14%20H21'%20fill='none'%20stroke='%23a87f33'%20stroke-width='2.8'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 28px 28px;
    animation: meander-move 4s linear infinite;
    margin: 30px 0;
    -webkit-mask-image: linear-gradient(90deg, #000 82%, transparent);
    mask-image: linear-gradient(90deg, #000 82%, transparent);
  }
  @keyframes meander-move {
    from { background-position-x: 0; }
    to   { background-position-x: 28px; }
  }
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 40px;
  }
  .card {
    border: 1px solid rgba(168,127,51,.22);
    background: linear-gradient(160deg, rgba(199,155,74,.06), transparent 60%), var(--bg-2);
    padding: 34px 28px;
    transition: border-color .3s, transform .3s;
  }
  .card:hover {
    border-color: rgba(199,155,74,.55);
    transform: translateY(-4px);
    box-shadow: 0 14px 44px rgba(0,0,0,.5), 0 4px 28px rgba(168,127,51,.14);
  }
  .menu-block { transition: border-color .3s, box-shadow .3s; }
  .menu-block:hover {
    border-color: rgba(199,155,74,.45);
    box-shadow: 0 10px 36px rgba(0,0,0,.45), 0 3px 22px rgba(168,127,51,.1);
  }
  .card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    letter-spacing: .15em;
    margin-bottom: 10px;
    color: var(--gold);
  }
  .card p { color: var(--text-dim); font-size: .9rem; line-height: 1.7; font-weight: 300; }

  /* ---------- AUSKLAPPBARE KARTE ---------- */
  .acc {
    border: 1px solid rgba(168,127,51,.28);
    background: rgba(13,12,10,.55);
    margin-top: 20px;
  }
  .acc-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 26px;
    font-family: 'Cinzel', serif;
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    letter-spacing: .15em;
    color: var(--gold-light);
    text-align: left;
  }
  .acc-head:hover { color: var(--text); }
  .acc-head .acc-icon {
    flex: none;
    transition: transform .4s;
  }
  .acc.open .acc-head .acc-icon { transform: rotate(180deg); }
  .acc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .5s ease;
  }
  .acc.open .acc-body { grid-template-rows: 1fr; }
  .acc-inner { overflow: hidden; }
  .acc-content { padding: 0 26px 30px; }
  .acc-content .menu-list { margin-top: 8px; }

  /* ---------- SHISHA-KARTE ---------- */
  .menu-list {
    columns: 3 240px;
    column-gap: 22px;
    margin-top: 40px;
  }
  .menu-block {
    border: 1px solid rgba(168,127,51,.22);
    background: linear-gradient(160deg, rgba(199,155,74,.06), transparent 60%), var(--bg-2);
    padding: 28px 26px;
    break-inside: avoid;
    margin-bottom: 22px;
  }
  .menu-block .mb-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(168,127,51,.35);
    padding-bottom: 10px;
    margin-bottom: 14px;
  }
  .menu-block .mb-head h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    letter-spacing: .12em;
    color: var(--gold-light);
  }
  .menu-block .mb-head .price {
    color: var(--text);
    font-weight: 500;
    font-size: .95rem;
    white-space: nowrap;
  }
  .menu-block ul {
    list-style: none;
    margin: 0; padding: 0;
  }
  .menu-block li {
    color: var(--text-dim);
    font-weight: 300;
    font-size: .92rem;
    line-height: 1.9;
  }

  /* ---------- FAKTEN-ZEILE ---------- */
  .facts {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 0;
    margin-top: 42px;
  }
  .facts span {
    color: var(--gold-light);
    font-size: .78rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    padding: 0 22px;
    border-left: 1px solid rgba(168,127,51,.4);
  }
  .facts span:first-child { padding-left: 0; border-left: none; }

  /* ---------- NACH-OBEN-PFEIL ---------- */
  #toTop {
    position: fixed;
    right: 26px; bottom: 26px;
    z-index: 90;
    background: rgba(5,5,5,.7);
    border: 1px solid rgba(168,127,51,.45);
    width: 52px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s, background .3s;
    backdrop-filter: blur(6px);
  }
  #toTop.show { opacity: 1; pointer-events: auto; }
  #toTop:hover { background: rgba(168,127,51,.18); }

  /* ---------- KONTAKTFORMULAR ---------- */
  .contact-wrap {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 22px;
    margin-top: 40px;
    align-items: start;
  }
  @media (max-width: 760px) { .contact-wrap { grid-template-columns: 1fr; } }
  .contact-form {
    border: 1px solid rgba(168,127,51,.22);
    background: linear-gradient(160deg, rgba(199,155,74,.06), transparent 60%), var(--bg-2);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--gold-light);
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
  }
  .contact-form input,
  .contact-form textarea {
    background: rgba(5,5,5,.6);
    border: 1px solid rgba(168,127,51,.3);
    color: var(--text);
    padding: 13px 14px;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    resize: vertical;
    outline: none;
    transition: border-color .3s;
  }
  .contact-form input:focus,
  .contact-form textarea:focus { border-color: var(--gold-light); }
  .contact-form button { align-self: flex-start; margin-top: 4px; }

  /* ---------- GALERIE ---------- */
  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
  }
  @media (max-width: 820px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }
  .gallery a {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(168,127,51,.22);
    aspect-ratio: 4 / 3;
    position: relative;
  }
  /* feiner goldener Innenrahmen beim Hover */
  .gallery a::after {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(199,155,74,0);
    transition: inset .5s ease, border-color .5s ease;
    pointer-events: none;
  }
  .gallery a:hover::after {
    inset: 10px;
    border-color: rgba(199,155,74,.65);
  }
  .gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease, filter .6s ease;
    filter: saturate(.95);
  }
  .gallery a:hover img { transform: scale(1.06); filter: saturate(1.05); }

  /* ---------- JOB-BUTTONS (im Video-Ende) ---------- */
  .job-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
  }
  .job-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    text-decoration: none;
    padding: 14px 28px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .8rem;
    transition: background .3s, color .3s;
    position: relative;
    overflow: hidden;
  }
  /* Lichtstreifen läuft beim Hover über den Button */
  .job-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -130%;
    width: 60%; height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,.35), transparent);
    transform: skewX(-20deg);
    transition: left .65s ease;
  }
  .job-btn:hover::after { left: 150%; }
  .job-btn:hover { background: var(--gold); color: #050505; }
  .job-btn svg { width: 17px; height: 17px; }

  footer {
    padding: 70px 5vw 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    color: var(--text-dim);
    font-size: .8rem;
    letter-spacing: .1em;
  }
  footer .f-meander {
    width: min(280px, 60%);
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2032%2032'%3E%3Crect%20width='32'%20height='2.4'%20fill='%23a87f33'/%3E%3Crect%20y='29.6'%20width='32'%20height='2.4'%20fill='%23a87f33'/%3E%3Cpath%20d='M4%2026%20V6%20H28%20V26%20H12%20V14%20H21'%20fill='none'%20stroke='%23a87f33'%20stroke-width='2.8'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 22px 22px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
    margin-bottom: 10px;
  }
  footer img.f-logo { height: 46px; width: auto; opacity: .9; }
  footer .f-links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
  footer .f-links a { color: var(--text-dim); text-decoration: none; transition: color .3s; }
  footer .f-links a:hover { color: var(--gold-light); }
