/* ==========================================================
   WERK°12 – w12-custom.css
   Version: v2.7 (2026-02-08)
   Zweck:
   - Hero-Overlay-Box (Glas-Effekt) + CTA/Meta
   - Carousel (Startseite) Positionierung/Höhe
   - Navigation: CTA Button + Active-Markierung (nur aktuelle Seite)
   - CookieConsent Styling (CI-konform)
   - Footer Feinschliff
   - Konzept (#p89): Typo, Rhythmus, Shadowless Cards
   - Standort (#p90): Typo, Rhythmus, Shadowless Cards
   - Speisekarte (#p88): Typo, Rhythmus, Cards (konsolidiert)
   - FAQ (#page-100): Accordion Brand Styling (ohne Vollflächen-Fill)
   ========================================================== */


/* ----------------------------------------------------------
   HERO OVERLAY BOX (Premium Glass / Frosted)
   ---------------------------------------------------------- */

.w12-hero-box{
  display: inline-block;
  text-align: center;

  padding: 24px 28px;
  border-radius: 20px;
  max-width: 640px;

  background: rgba(245, 240, 232, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.48);

  box-shadow: 0 18px 45px rgba(0,0,0,0.22);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transform: none;
  pointer-events: auto;
}

.w12-hero-title{
  font-family: "DejaVu Sans", Arial, sans-serif;
  font-weight: 700;

  font-size: clamp(32px, 3.6vw, 46px);
  letter-spacing: 0.06em;
  margin: 0 0 10px 0;

  color: rgba(20,20,20,0.88);
  text-shadow: 0 1px 0 rgba(255,255,255,0.22);
}

.w12-hero-subtitle{
  font-size: 18px;
  line-height: 1.35;
  font-weight: 450;
  margin: 0 0 18px 0;

  color: rgba(25,25,25,0.82);
  text-shadow: 0 1px 0 rgba(255,255,255,0.16);
}

.w12-hero-cta{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 16px 0;
}

.w12-hero-cta .btn{
  height: 46px;
  padding: 0 18px;
  border-radius: 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-weight: 650;
  margin: 0;
}

.w12-hero-cta .btn:first-child{
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(0,0,0,0.18);
  color: rgba(20,20,20,0.78);
}

.w12-hero-cta .btn:last-child{
  box-shadow: 0 10px 22px rgba(0,0,0,0.16);
}

.w12-hero-meta{
  display: inline-flex;
  gap: 10px;
  align-items: center;

  font-size: 0.98rem;
  line-height: 1.2;
  color: rgba(20,20,20,0.68);
  opacity: 0.95;
}

.w12-hero-meta svg{
  width: 18px;
  height: 18px;
  opacity: 0.75;
}

/* Logo im Hero sauber skalieren */
.w12-hero-logo{
  display: block;
  width: min(240px, 70%);
  height: auto;
  margin: 0 auto 10px auto;
}


/* ----------------------------------------------------------
   CAROUSEL / HERO – Positionierung & Höhe (Startseite)
   ---------------------------------------------------------- */

.carousel.carousel-fullscreen .carousel-content{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;

  padding-left: clamp(140px, 9vw, 260px);
  padding-top:  clamp(160px, 14vh, 280px);

  pointer-events: none;
}

.w12-hero-center{
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: flex-start;
  align-items: flex-start;

  padding-left: clamp(140px, 9vw, 260px);
  padding-top:  clamp(160px, 14vh, 280px);

  pointer-events: none;
}

.carousel.carousel-fullscreen{
  min-height: clamp(520px, 72vh, 760px);
}

.carousel-content-inner{ min-height: 100%; }
.carousel .carousel-content-inner{ height: 100%; }


/* ----------------------------------------------------------
   TABLET FALLBACK (<992px)
   ---------------------------------------------------------- */

@media (max-width: 991.98px){
  .carousel.carousel-fullscreen .carousel-content,
  .w12-hero-center{
    padding-left: clamp(26px, 6vw, 72px);
    padding-top:  clamp(120px, 16vh, 220px);
  }

  .w12-hero-box{ max-width: 560px; }
}


/* ----------------------------------------------------------
   MOBILE FALLBACK (<576px)
   ---------------------------------------------------------- */

@media (max-width: 575.98px){
  .carousel.carousel-fullscreen .carousel-content,
  .w12-hero-center{
    justify-content: center;

    padding-left: 16px;
    padding-right: 16px;

    padding-top: clamp(86px, 14vh, 140px);
  }

  .w12-hero-box{
    margin-top: 10px;
    width: 100%;
    max-width: 420px;
    padding: 18px 18px;
    border-radius: 18px;
  }

  .w12-hero-title{ font-size: 30px; }

  .w12-hero-subtitle{
    font-size: 16px;
    margin-bottom: 14px;
  }

  .w12-hero-cta .btn{
    width: 100%;
    max-width: 340px;
    height: 46px;
  }

  .w12-hero-meta{ font-size: 0.92rem; }
}


/* ----------------------------------------------------------
   FALLBACK: wenn backdrop-filter fehlt
   ---------------------------------------------------------- */

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .w12-hero-box{ background: rgba(245, 240, 232, 0.90); }
}


/* ----------------------------------------------------------
   LEGACY: Bootstrap-3 "well" (falls noch genutzt)
   ---------------------------------------------------------- */

.well{
  display: inline-block;
  padding: 16px 18px;
  border-radius: 14px;

  background: rgba(245, 240, 232, 0.80);
  border: 1px solid rgba(0,0,0,0.08);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.well .btn{ margin: 6px 8px 6px 0; }


/* ==========================================================
   Navigation CTA (Reservierung)
   ========================================================== */

#page-header .navbar-nav .nav-item:last-child .nav-link{
  background: var(--bs-primary);
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 16px;
  margin-left: 10px;
  line-height: 1;
}

#page-header .navbar-nav .nav-item:last-child .nav-link:hover,
#page-header .navbar-nav .nav-item:last-child .nav-link:focus{
  filter: brightness(0.95);
  text-decoration: none;
}

@media (max-width: 991.98px){
  #page-header .navbar-nav .nav-item:last-child .nav-link{
    display: inline-block;
    margin: 10px 0 0 0;
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }
}


/* ==========================================================
   Header Typo & Alignment
   ========================================================== */

#page-header.navbar{
  padding-top: 10px;
  padding-bottom: 10px;
}

#page-header .navbar-nav .nav-link{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding-top: 10px;
  padding-bottom: 10px;
}

#page-header .navbar-brand,
#page-header .navbar-brand-text{
  font-size: 16px;
  font-weight: 600;
}

@media (min-width: 992px){
  #page-header .navbar-nav .nav-link{ font-size: 17px; }
  #page-header .navbar-brand,
  #page-header .navbar-brand-text{ font-size: 17px; }
  #page-header .navbar-nav .nav-item:last-child .nav-link{ font-size: 17px; }
}

#page-header .container-mainnavigation{
  display: flex;
  align-items: center;
}

#page-header #mainnavigation{ margin-left: auto; }


/* ==========================================================
   Navigation Active-Markierung (FIX: Rootline-Active ausblenden)
   - Bootstrap Package setzt "active" auch auf Home (Rootline)
   - Die echte aktuelle Seite hat aria-current="true"
   Ziel: NUR aria-current="true" bekommt eine Linie
   ========================================================== */

#page-header #mainnavigation .navbar-nav .nav-item:not(:last-child) > a.nav-link.nav-link-main,
#page-header #mainnavigation .navbar-nav .nav-item:not(:last-child) > a.nav-link.nav-link-main .nav-link-text{
  border-bottom: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  background: transparent !important;
  background-image: none !important;
}

#page-header #mainnavigation .navbar-nav .nav-item:not(:last-child) > a.nav-link.nav-link-main::before,
#page-header #mainnavigation .navbar-nav .nav-item:not(:last-child) > a.nav-link.nav-link-main::after,
#page-header #mainnavigation .navbar-nav .nav-item:not(:last-child) > a.nav-link.nav-link-main .nav-link-text::before,
#page-header #mainnavigation .navbar-nav .nav-item:not(:last-child) > a.nav-link.nav-link-main .nav-link-text::after{
  content: none !important;
  display: none !important;
}

#page-header #mainnavigation .navbar-nav .nav-item:not(:last-child) > a.nav-link.nav-link-main[aria-current="true"] .nav-link-text{
  background-image: linear-gradient(var(--bs-primary), var(--bs-primary)) !important;
  background-repeat: no-repeat !important;
  background-position: 0 100% !important;
  background-size: 100% 2px !important;
  padding-bottom: 2px;
}


/* ==========================================================
   CookieConsent (cc-window) Styling
   ========================================================== */

.cc-window.cc-floating.cc-theme-block{
  max-width: 360px !important;
  border-radius: 18px !important;
  padding: 18px 18px !important;

  background: rgba(35,35,35,0.92) !important;
  color: rgba(245,240,232,0.95) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;

  box-shadow: 0 18px 45px rgba(0,0,0,0.28) !important;

  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.cc-window.cc-floating.cc-theme-block .cc-container{ padding: 0 !important; }

.cc-window.cc-floating.cc-theme-block .cc-header{
  margin: 0 0 8px 0 !important;
  font-size: 16px !important;
  font-weight: 650 !important;
  letter-spacing: 0.01em !important;
  color: rgba(245,240,232,0.96) !important;
}

.cc-window.cc-floating.cc-theme-block .cc-message{
  display: block !important;
  margin: 0 0 14px 0 !important;
  font-size: 13.5px !important;
  line-height: 1.35 !important;
  color: rgba(245,240,232,0.88) !important;
}

.cc-window a.cc-link{
  color: rgba(201,179,122,0.92) !important;
  text-decoration: underline;
}

.cc-window.cc-floating.cc-theme-block .cc-compliance{
  display: flex !important;
  justify-content: flex-end !important;
  gap: 10px !important;
}

.cc-window.cc-floating.cc-theme-block .cc-btn{
  border-radius: 999px !important;
  padding: 10px 16px !important;
  font-size: 13.5px !important;
  font-weight: 650 !important;
  line-height: 1 !important;

  background: #385C4A !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.10) !important;

  box-shadow: 0 10px 22px rgba(0,0,0,0.18) !important;
}

.cc-window.cc-floating.cc-theme-block .cc-btn:hover,
.cc-window.cc-floating.cc-theme-block .cc-btn:focus{
  filter: brightness(0.96) !important;
  outline: none !important;
}

@media (max-width: 575.98px){
  .cc-window.cc-floating.cc-theme-block{
    max-width: calc(100vw - 24px) !important;
    right: 12px !important;
    left: 12px !important;
    bottom: 12px !important;
  }
  .cc-window.cc-floating.cc-theme-block .cc-compliance{
    justify-content: center !important;
  }
  .cc-window.cc-floating.cc-theme-block .cc-btn{
    width: 100% !important;
    max-width: 340px !important;
  }
}


/* ==========================================================
   Footer Feinschliff
   ========================================================== */

.footer-section-meta{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
  padding-bottom: 14px;
}

.footer-copyright{
  text-align: center;
  font-size: 13px;
  color: rgba(245,240,232,0.82);
}

.footer-section a{
  color: rgba(201,179,122,0.92);
  text-decoration: none;
}
.footer-section a:hover{ text-decoration: underline; }


/* ==========================================================
   Konzept-Seite (#p89): Typo + Rhythmus + Shadowless
   ========================================================== */

#p89 .w12-konzept{
  --w12-body:  clamp(17px, 0.45vw + 16px, 19px);
  --w12-small: clamp(15.5px, 0.25vw + 15px, 17px);
  --w12-h2:    clamp(24px, 1.0vw + 20px, 34px);
  --w12-h3:    clamp(18.5px, 0.6vw + 17px, 22.5px);
  --w12-border: rgba(0,0,0,0.08);

  color: rgba(25,25,25,0.86);
}

#p89 .w12-konzept .w12-konzept-hero .w12-hero-box{ text-align: left; }
#p89 .w12-konzept .w12-konzept-hero .w12-hero-cta{ justify-content: flex-start; }
#p89 .w12-konzept .w12-konzept-hero .w12-hero-meta{ justify-content: flex-start; }

#p89 .w12-konzept .w12-konzept-intro{
  max-width: 72ch !important;
  margin-top: 22px !important;
}

#p89 .w12-konzept p{
  font-size: var(--w12-body);
  line-height: 1.65;
  margin: 0 0 14px 0;
}
#p89 .w12-konzept p:last-child{ margin-bottom: 0; }

#p89 .w12-konzept h2{
  font-size: var(--w12-h2);
  line-height: 1.15;
  font-weight: 760;
  letter-spacing: 0.01em;
  margin: 0 0 12px 0;
  color: rgba(20,20,20,0.90);
}
#p89 .w12-konzept h3,
#p89 .w12-konzept .h5,
#p89 .w12-konzept h5{
  font-size: var(--w12-h3);
  line-height: 1.2;
  font-weight: 720;
  letter-spacing: 0.01em;
  margin: 0 0 8px 0;
  color: rgba(20,20,20,0.88);
}

#p89 .w12-konzept .w12-tagline{
  margin: 6px 0 14px 0;
  font-weight: 750;
  letter-spacing: 0.01em;
}

#p89 .w12-konzept section.section.section-default{
  padding-top: clamp(18px, 2.2vw, 30px) !important;
  padding-bottom: clamp(18px, 2.2vw, 30px) !important;
}
#p89 .w12-konzept section.section.section-default:first-of-type{ padding-top: 0 !important; }
#p89 .w12-konzept section.section.section-default + section.section.section-default{ padding-top: 0 !important; }

#p89 .w12-konzept .w12-konzept-hero{
  box-shadow: none !important;
  border: 1px solid var(--w12-border);
}

#p89 .w12-konzept .w12-hero-box{ box-shadow: none !important; }

#p89 .w12-konzept .card{
  box-shadow: none !important;
  border: 1px solid var(--w12-border) !important;
}

#p89 .w12-konzept .card-body{
  padding: 18px 18px 20px;
}

#p89 .w12-konzept .card-body p{
  font-size: var(--w12-small);
  line-height: 1.55;
  color: rgba(25,25,25,0.78);
  margin: 0;
}

#p89 .w12-konzept .p-4{
  box-shadow: none !important;
  border: 1px solid var(--w12-border) !important;
  background: rgba(245,240,232,0.78) !important;
}

#p89 .w12-konzept .p-4 p{
  font-size: var(--w12-small);
  line-height: 1.6;
  color: rgba(25,25,25,0.78);
  margin: 0;
}

#p89 .w12-konzept .w12-konzept-cta-wrap{
  padding: 0;
  margin-top: 8px;
}

#p89 .w12-konzept .w12-konzept-cta{
  box-shadow: none !important;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(35,35,35,0.94) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07) !important;
  color: rgba(245,240,232,0.95);
}

#p89 .w12-konzept .w12-konzept-cta h2{
  color: rgba(245,240,232,0.96);
  font-size: var(--w12-h2);
  margin: 0 0 10px 0;
}

#p89 .w12-konzept .w12-konzept-cta p{
  color: rgba(245,240,232,0.88);
  font-size: var(--w12-small);
  margin: 0 0 14px 0;
  line-height: 1.55;
}

#p89 .w12-konzept .btn{
  box-shadow: none !important;
  border-radius: 12px;
}


/* ==========================================================
   Standort-Seite (#p90): Typo + Rhythmus + Shadowless
   ========================================================== */

#p90 .w12-standort{
  --w12-body:  clamp(17px, 0.45vw + 16px, 19px);
  --w12-small: clamp(15.5px, 0.25vw + 15px, 17px);
  --w12-h2:    clamp(24px, 1.0vw + 20px, 34px);
  --w12-h3:    clamp(18.5px, 0.6vw + 17px, 22.5px);
  --w12-border: rgba(0,0,0,0.08);

  color: rgba(25,25,25,0.86);
}

#p90 .w12-standort .w12-standort-hero .w12-hero-box{ text-align:left; }
#p90 .w12-standort .w12-hero-cta{ justify-content:flex-start; }
#p90 .w12-standort .w12-hero-meta{ justify-content:flex-start; }

#p90 .w12-standort .w12-standort-intro{
  max-width: 72ch !important;
  margin-top: 22px !important;
}

#p90 .w12-standort p{
  font-size: var(--w12-body);
  line-height: 1.65;
  margin: 0 0 14px 0;
}
#p90 .w12-standort p:last-child{ margin-bottom:0; }

#p90 .w12-standort h2{
  font-size: var(--w12-h2);
  line-height: 1.15;
  font-weight: 760;
  letter-spacing: 0.01em;
  margin: 0 0 12px 0;
}

#p90 .w12-standort h3,
#p90 .w12-standort .h5,
#p90 .w12-standort h5{
  font-size: var(--w12-h3);
  line-height: 1.2;
  font-weight: 720;
  letter-spacing: 0.01em;
  margin: 0 0 8px 0;
}

#p90 .w12-standort .w12-tagline{
  margin: 6px 0 14px 0;
  font-weight: 750;
  letter-spacing: 0.01em;
}

#p90 .w12-standort section.section.section-default{
  padding-top: clamp(18px, 2.2vw, 30px) !important;
  padding-bottom: clamp(18px, 2.2vw, 30px) !important;
}
#p90 .w12-standort section.section.section-default:first-of-type{ padding-top: 0 !important; }
#p90 .w12-standort section.section.section-default + section.section.section-default{ padding-top: 0 !important; }

#p90 .w12-standort .w12-standort-hero{
  box-shadow:none !important;
  border:1px solid var(--w12-border);
}

#p90 .w12-standort .w12-hero-box{ box-shadow:none !important; }

#p90 .w12-standort .card{
  box-shadow:none !important;
  border:1px solid var(--w12-border) !important;
}

#p90 .w12-standort .card-body p{
  font-size: var(--w12-small);
  line-height: 1.55;
  color: rgba(25,25,25,0.78);
  margin: 0;
}

#p90 .w12-standort .w12-standort-box{
  background: rgba(245,240,232,0.78);
  border: 1px solid var(--w12-border);
  border-radius: 18px;
  box-shadow: none !important;
}

#p90 .w12-standort .w12-standort-box p{
  font-size: var(--w12-small);
  line-height: 1.6;
  color: rgba(25,25,25,0.78);
  margin: 0;
}

#p90 .w12-standort .w12-standort-cta-wrap{
  padding: 0;
  margin-top: 8px;
}

#p90 .w12-standort .w12-standort-cta{
  box-shadow:none !important;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07) !important;
}

#p90 .w12-standort .btn{
  box-shadow:none !important;
  border-radius: 12px;
}

#p90 .w12-standort .w12-muted{ opacity: .65; }


/* ==========================================================
   Speisekarte (#p88): Typo + Rhythmus + Cards (konsolidiert)
   Voraussetzung: HTML Wrapper <div class="w12-speisekarte">
   ========================================================== */

#p88 .w12-speisekarte{
  --w12-body:  clamp(17px, 0.45vw + 16px, 19px);
  --w12-small: clamp(15.5px, 0.25vw + 15px, 17px);
  --w12-h2:    clamp(26px, 1.2vw + 20px, 36px);
  --w12-h3:    clamp(19px, 0.7vw + 17px, 24px);
  --w12-border: rgba(0,0,0,0.08);
  --w12-card: rgba(245,240,232,0.78);

  color: rgba(25,25,25,0.86);
}

/* Hero linksbündig wie Konzept/Standort */
#p88 .w12-speisekarte .w12-speisekarte-hero .w12-hero-box{ text-align:left; }
#p88 .w12-speisekarte .w12-hero-cta{ justify-content:flex-start; }
#p88 .w12-speisekarte .w12-hero-meta{ justify-content:flex-start; }

/* Intro */
#p88 .w12-speisekarte .w12-speisekarte-intro{
  max-width: 70ch !important;
  margin-top: 22px !important;
}

#p88 .w12-speisekarte p{
  font-size: var(--w12-body);
  line-height: 1.7;
  margin: 0 0 14px 0;
}
#p88 .w12-speisekarte p:last-child{ margin-bottom:0; }

#p88 .w12-speisekarte .w12-tagline{
  margin: 6px 0 14px 0;
  font-weight: 750;
  letter-spacing: 0.01em;
}

/* Sections: Rhythmus */
#p88 .w12-speisekarte section.section.section-default{
  padding-top: clamp(18px, 2.2vw, 30px) !important;
  padding-bottom: clamp(18px, 2.2vw, 30px) !important;
}
#p88 .w12-speisekarte section.section.section-default:first-of-type{ padding-top: 0 !important; }
#p88 .w12-speisekarte section.section.section-default + section.section.section-default{ padding-top: 0 !important; }

/* Section Head */
#p88 .w12-speisekarte .w12-section-head h2{
  font-size: var(--w12-h2);
  line-height: 1.15;
  font-weight: 780;
  letter-spacing: 0.01em;
  margin: 0 0 8px 0;
  color: rgba(20,20,20,0.90);
}
#p88 .w12-speisekarte .w12-section-sub{
  font-size: var(--w12-small);
  color: rgba(25,25,25,0.74);
  margin: 0 0 18px 0;
}

/* Jump tiles */
#p88 .w12-speisekarte .w12-jumptiles .w12-tile{
  display: block;
  border-radius: 18px;
  padding: 16px 18px;
  background: var(--w12-card);
  border: 1px solid var(--w12-border);
  text-decoration: none;
  color: rgba(20,20,20,0.88);
  box-shadow: none !important;
}
#p88 .w12-speisekarte .w12-tile-title{
  font-weight: 760;
  letter-spacing: 0.01em;
  margin-bottom: 2px;
}
#p88 .w12-speisekarte .w12-tile-sub{
  font-size: var(--w12-small);
  opacity: .72;
}
#p88 .w12-speisekarte .w12-tile:hover{
  border-color: rgba(56,92,74,0.35);
}

/* Quick Nav Cards (falls genutzt) */
#p88 .w12-speisekarte .w12-nav-card{
  display:block;
  padding: 18px 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--w12-border);
  background: rgba(245,240,232,0.55);
  text-decoration: none;
  color: inherit;
}
#p88 .w12-speisekarte .w12-nav-title{ font-weight: 740; }
#p88 .w12-speisekarte .w12-nav-sub{ font-size: var(--w12-small); opacity: .72; }

/* Burger blocks */
#p88 .w12-speisekarte .w12-burger{
  margin-top: 22px;
  padding-top: 6px;
}
#p88 .w12-speisekarte .w12-burger-top{ margin-bottom: 12px; }
#p88 .w12-speisekarte .w12-burger-name{
  font-size: var(--w12-h3);
  line-height: 1.15;
  font-weight: 780;
  margin: 0 0 4px 0;
  color: rgba(20,20,20,0.92);
}
#p88 .w12-speisekarte .w12-burger-note{
  font-size: var(--w12-small);
  color: rgba(25,25,25,0.74);
}

/* Menu Cards */
#p88 .w12-speisekarte .w12-menu-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--w12-border) !important;
  box-shadow: none !important;
}
#p88 .w12-speisekarte .w12-menu-card .card-body{ padding: 18px 18px 20px; }

#p88 .w12-speisekarte .w12-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

#p88 .w12-speisekarte .w12-chip{
  font-size: 12.5px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.45);
  white-space: nowrap;
}

#p88 .w12-speisekarte .w12-desc{
  font-size: var(--w12-small);
  line-height: 1.55;
  opacity: .82;
  margin: 8px 0 12px 0;
}

/* Variants (Smash/Classic) – Liste */
#p88 .w12-speisekarte .w12-variants{
  display:flex;
  flex-direction:column;
  gap: 8px;
  margin-bottom: 10px;
}
#p88 .w12-speisekarte .w12-variant{
  display:grid;
  grid-template-columns: 70px 1fr auto;
  gap: 10px;
  align-items:baseline;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(245,240,232,0.42);
}
#p88 .w12-speisekarte .w12-variant-name{ font-weight: 740; }
#p88 .w12-speisekarte .w12-variant-note{ font-size: 13px; opacity: .72; }
#p88 .w12-speisekarte .w12-price{ font-weight: 780; color: rgba(20,20,20,0.86); white-space: nowrap; }

/* Variant cards (falls genutzt) */
#p88 .w12-speisekarte .w12-variant-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--w12-border) !important;
  box-shadow: none !important;
  background: rgba(255,255,255,0.35);
}
#p88 .w12-speisekarte .w12-variant-card .card-body{ padding: 18px 18px 20px; }
#p88 .w12-speisekarte .w12-variant-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
#p88 .w12-speisekarte .w12-variant-title{
  font-weight: 780;
  letter-spacing: 0.01em;
  color: rgba(20,20,20,0.92);
}
#p88 .w12-speisekarte .w12-variant-meta{
  margin-top: 8px;
  font-size: var(--w12-small);
  color: rgba(25,25,25,0.62);
}

/* Ingredients line */
#p88 .w12-speisekarte .w12-ingredients{
  font-size: var(--w12-small);
  line-height: 1.55;
  color: rgba(25,25,25,0.80);
  opacity: .90;
}

/* Wide Specials cards */
#p88 .w12-speisekarte .w12-menu-wide{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid var(--w12-border) !important;
  box-shadow: none !important;
  display:flex;
  min-height: 160px;
}
#p88 .w12-speisekarte .w12-wide-media{ width: 42%; min-height: 160px; }
#p88 .w12-speisekarte .w12-wide-body{ padding: 18px 18px 20px; width: 58%; }

/* Price list blocks */
#p88 .w12-speisekarte .w12-list{
  border-radius: 18px;
  border: 1px solid var(--w12-border) !important;
  box-shadow: none !important;
  padding: 14px 16px;
}
#p88 .w12-speisekarte .w12-list-item{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
#p88 .w12-speisekarte .w12-list-item:last-child{ border-bottom: 0; }
#p88 .w12-speisekarte .w12-list-price{ font-weight: 740; }

/* Footnote */
#p88 .w12-speisekarte .w12-footnote{
  margin-top: 18px;
  font-size: var(--w12-small);
  color: rgba(25,25,25,0.60);
}

/* CTA */
#p88 .w12-speisekarte .w12-speisekarte-cta-wrap{
  padding: 0;
  margin-top: 8px;
  margin-bottom: 28px;
}
#p88 .w12-speisekarte .w12-speisekarte-cta{
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) !important;
  color: rgba(245,240,232,0.95);
}

#p88 .w12-speisekarte .btn{
  box-shadow:none !important;
  border-radius: 12px;
}

#p88 .w12-speisekarte .w12-muted{ opacity: .65; }

/* Mobile: Wide cards stapeln */
@media (max-width: 767.98px){
  #p88 .w12-speisekarte .w12-menu-wide{ flex-direction: column; }
  #p88 .w12-speisekarte .w12-wide-media{ width: 100%; height: 200px; }
  #p88 .w12-speisekarte .w12-wide-body{ width: 100%; }
}


/* ==========================================================
   FAQ (#page-100): Accordion Brand (ohne Vollflächen-Fill)
   ========================================================== */

body.page-100{
  --w12-accent: #385C4A;
  --w12-border: rgba(0,0,0,0.10);
  --w12-hover: rgba(0,0,0,0.02);
  --w12-open-tint: rgba(56,92,74,0.05); /* 0.00 => kein Tint */
}

body.page-100 .accordion{
  border-radius: 10px;
  overflow: hidden;
}

body.page-100 .accordion-item{
  border-left: 1px solid var(--w12-border);
  border-right: 1px solid var(--w12-border);
}
body.page-100 .accordion-item:first-child{ border-top: 1px solid var(--w12-border); }
body.page-100 .accordion-item:last-child { border-bottom: 1px solid var(--w12-border); }

body.page-100 .accordion-button{
  padding: 14px 16px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

body.page-100 .accordion-button:hover{
  background: var(--w12-hover);
}

body.page-100 .accordion-button:not(.collapsed){
  background: transparent !important;
  color: inherit;
  box-shadow: inset 4px 0 0 0 var(--w12-accent);
}

body.page-100 .accordion-button:not(.collapsed)::before{
  content:"";
  position:absolute;
  inset:0;
  background: var(--w12-open-tint);
  pointer-events:none;
}

body.page-100 .accordion-button::after{
  transform: scale(1.05);
}

body.page-100 .accordion-body{
  padding: 14px 16px 16px;
  line-height: 1.45;
}

body.page-100 .accordion-button:focus{
  box-shadow: none;
  outline: 2px solid rgba(56,92,74,0.35);
  outline-offset: 2px;
}
/* =========================================
   WERK°12 – Variant Meta (Classic/Smash)
   ========================================= */

.w12-variant-meta{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;

  font-size: 14px;
  line-height: 1.35;

  color: rgba(25,25,25,0.72);
  background: rgba(245,240,232,0.55);
  border: 1px solid rgba(0,0,0,0.08);
}

.w12-variant-meta strong{
  color: rgba(20,20,20,0.88);
  font-weight: 720;
}

/* =========================================
   WERK°12 – Hero Eyebrow (final, ruhiger)
   ========================================= */
.w12-hero-eyebrow{
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: 0.60;

  /* weniger Abstand nach oben, mehr Rhythmus zum Logo */
  margin: 0 0 8px 0;
}

.w12-hero-eyebrow::after{
  content:"";
  display:block;
  width: 38px;
  height: 2px;
  margin: 8px auto 0 auto;
  border-radius: 2px;

  /* dezenter */
  background: rgba(56,92,74,0.22);
}
.w12-hero-logo{ margin-top: 2px; }
.w12-hero-eyebrow::after{ display:none; }

@media (max-width: 575.98px){
  .w12-hero-eyebrow{ margin-bottom: 8px; }
  .w12-hero-eyebrow::after{ margin-top: 8px; }
}

/* =========================================
   WERK°12 – Split Image (Classic/Smash)
   ========================================= */

.w12-split-figure{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,0.08);
}

/* Bild: immer sauber füllen */
.w12-split-img{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

/* Mittellinie */
.w12-split-figure::after{
  content:"";
  position:absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.10);
  pointer-events: none;
}

/* Badges: exakt positioniert, nie abgeschnitten */
.w12-split-badge{
  position: absolute;
  top: clamp(10px, 1.4vw, 16px);
  padding: 8px 12px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.02em;

  color: rgba(255,255,255,0.95);
  background: rgba(20,20,20,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  pointer-events: none;
}

.w12-split-badge--left{
  left: clamp(10px, 1.4vw, 16px);
}

.w12-split-badge--right{
  right: clamp(10px, 1.4vw, 16px);
}
