/* 
  DIESER DATEI IST NUR FÜR DIE PUNSCHSTAND SEITE
  UND NUR DIESE WIRD AUF DER PUNSCH SEITE GELADEN
*/
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2'), url('../fonts/BebasNeue-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Bold.woff2') format('woff2'), url('../fonts/BebasNeue-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Book.woff2') format('woff2'), url('../fonts/BebasNeue-Book.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
:root {
  --ink: #0b0b0b;
  --paper: #f3efe6;
  --ci-green: #4b5d3a;
  --ci-green-2: #62922d;
  --accent: #c24a2a;
  --line: rgba(255, 255, 255, 0.14);
  /* Calendar Tile Colors */
  --tile-free-bg: #eaefdb;
  --tile-free-hover-bg: #f0f4e6;
  --tile-optioniert-bg: #bdcdb5;
  --tile-gebucht-bg: #c2c6c0;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  background: #d4dbbd;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body {
  background: linear-gradient(to bottom, #ffffff 10%, #d4dbbd 100%) no-repeat;
  background-attachment: fixed;
}
body.is-resizing * {
  transition: none !important;
}
/* ── SHARED TYPOGRAPHY TOKENS ──────────────────────────────── */
/* Kicker / Overline — used in standort, flow-sec, termine, why */
.kicker {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6b6456;
  display: flex;
  align-items: center;
  gap: 14px;
}
.kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}
.kicker b {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: bold;
  font-size: 22px;
  color: #141414;
  letter-spacing: 0.04em;
}
/* Section Headlines */
.page h2 {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: bold;
  font-size: clamp(44px, 5vw, 84px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #141414;
  text-transform: uppercase;
  margin: 0;
}
/* *Sternchen* → grün in allen Headlines */
em.green {
  font-style: normal;
  color: var(--ci-green-2);
}
/* Lede / italic Einleitungstext */
.lede {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 20px !important;
  line-height: 1.4 !important;
  color: #2a2823 !important;
  font-style: italic !important;
  margin: 0;
}
@media (max-width: 1024px) {
  .lede {
    font-size: 18px !important;
  }
}
/* Meta-Grid (Key/Value-Paare unter Sections) */
.meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 18px;
  margin-top: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.meta .m {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta .k {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a8275;
}
.meta .v {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: #141414;
}
/* ── END SHARED TYPOGRAPHY ─────────────────────────────────── */
/* Hero stays black; everything below the hero inherits the body gradient */
a {
  color: inherit;
  text-decoration: none;
}
/* Offset for fixed header anchor links */
section,
.cal-wrap {
  scroll-margin-top: 140px;
}
@media (max-width: 1260px) {
  section,
  .cal-wrap {
    scroll-margin-top: 100px;
  }
}
/* ====== TOP NAV ====== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 50px;
  background: #667a2da6;
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  pointer-events: none;
  transition: background 0.4s;
  /* Isolate compositing layer to prevent backdrop-filter repaint artifacts
     when elements below (e.g. calendar tiles) trigger GPU layer changes */
  will-change: transform;
  transform: translateZ(0);
}
.nav.mobile-open {
  -webkit-mask-image: none !important;
  mask-image: none !important;
  /* Keep the background gradient so the header doesn't abruptly change */
}
.nav-logo {
  position: relative;
  z-index: 105;
}
.nav > * {
  pointer-events: auto;
}
.nav-logo a {
  display: flex;
  align-items: center;
  transition: opacity 0.25s;
}
.nav-logo a:hover {
  opacity: 0.8;
}
.nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links {
  justify-self: center;
  display: flex;
  gap: 38px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: opacity 0.2s;
}
.nav-links a:hover {
  opacity: 0.7;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ci-green-2);
  transform: translateX(-50%);
}
.nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s;
}
.nav-cta:hover {
  background: #fff;
  color: #0b0b0b;
}
/* Mobile Nav Elements */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 105;
  pointer-events: auto;
}
.nav-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 8px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}
.nav-hamburger span:nth-child(1) {
  top: 14px;
}
.nav-hamburger span:nth-child(2) {
  top: 21px;
}
.nav-hamburger span:nth-child(3) {
  top: 28px;
}
.nav-hamburger.open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.nav-hamburger.open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}
.nav-mobile-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #d4dbbd;
  z-index: 99;
  /* Behind .nav (which is 100) */
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  /* Start fully clipped at the bottom (0 height) */
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), clip-path 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s;
  pointer-events: none;
}
/* Use adjacent sibling selector since we moved it outside <nav> */
.nav.mobile-open + .nav-mobile-bg {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0);
  /* Grow downwards to full size */
  pointer-events: auto;
}
@media (max-width: 1260px) {
  .nav {
    grid-template-columns: auto 1fr auto;
    padding: 25px 32px;
    gap: 20px;
  }
  .nav-cta {
    display: flex;
    justify-self: end;
    padding: 10px 16px;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: none;
    transition: opacity 0.3s, background 0.3s, border-color 0.3s;
  }
  .nav.mobile-open .nav-cta {
    opacity: 0;
    pointer-events: none;
  }
  .nav-hamburger {
    display: block;
    justify-self: end;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10vw;
    gap: 0;
    z-index: 102;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    counter-reset: nav-mobile-counter;
  }
  .nav-links a {
    font-size: 36px;
    letter-spacing: 0.15em;
    color: #141414;
    width: 100%;
    padding: 24px 0;
    border-bottom: 1px solid rgba(20, 20, 20, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-links a::before {
    counter-increment: nav-mobile-counter;
    content: "0" counter(nav-mobile-counter);
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    margin-right: 24px;
    opacity: 0.4;
    letter-spacing: 0.1em;
  }
  .nav-links a.active::after {
    display: none;
  }
  .nav.mobile-open .nav-links {
    opacity: 1;
    pointer-events: auto;
  }
  .nav.mobile-open .nav-links a {
    opacity: 1;
    transform: translateY(0);
  }
  /* Stagger animation for nav links when opening, delayed until background is mostly done */
  .nav.mobile-open .nav-links a:nth-child(1) {
    transition: opacity 0.5s ease 0.4s, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
  }
  .nav.mobile-open .nav-links a:nth-child(2) {
    transition: opacity 0.5s ease 0.5s, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
  }
  .nav.mobile-open .nav-links a:nth-child(3) {
    transition: opacity 0.5s ease 0.6s, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
  }
  .nav.mobile-open .nav-links a:nth-child(4) {
    transition: opacity 0.5s ease 0.7s, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.7s;
  }
  .nav.mobile-open .nav-links a:nth-child(5) {
    transition: opacity 0.5s ease 0.8s, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.8s;
  }
}
@media (max-width: 1260px) and (max-width: 775px) {
  .nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
  }
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    margin-right: -8px;
  }
}
/* ====== HERO SPLIT ====== */
#hero-split {
  cursor: ew-resize;
  /* überschrieben auf kleinen Screens via JS/Media */
}
/* Cinematic scroll fade overlay */
#hero-scroll-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  z-index: 30;
}
/* ====================================================================
     STANDORT SECTION — 50/50 sticky left, scrolling right
     ==================================================================== */
/* ====================================================================
     WHY SECTION — Three columns, clear header
     ==================================================================== */
/* Section separator */
hr.sec-sep {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 1200px;
  margin: 0 auto;
}
.why-sec {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(48px, 6vh, 80px) clamp(32px, 5vw, 80px) clamp(80px, 12vh, 160px);
  text-align: center;
}
/* Why-Sec: auf Tablet Portrait und kleiner ausblenden */
@media (max-width: 1024px) {
  .why-sec {
    display: none;
  }
}
.why-header {
  max-width: 900px;
  margin: 0 auto 80px;
}
.why-kicker {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8a8275;
  margin-bottom: 24px;
}
.why-header h2 {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: bold;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #141414;
  margin: 0;
}
/* Global: *Sternchen* → grün in allen Headlines */
em.green {
  font-style: normal;
  color: var(--ci-green-2);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
  padding-top: 64px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.why-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: clamp(24px, 3vw, 40px);
}
.why-item:last-child {
  border-right: none;
  padding-right: 0;
}
.why-num {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8a8275;
}
.why-num b {
  color: #141414;
}
.why-item h3 {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: bold;
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #141414;
  margin: 0;
}
.why-item p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.6;
  color: #3a362f;
  margin: 0;
}
.why-item p em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 48px;
  }
  .why-item {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 32px;
  }
  .why-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.standort-sec {
  position: relative;
  background: transparent;
  color: #141414;
  padding: 0;
}
.standort-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: radial-gradient(circle at 10% 12%, #000 0, #000 1px, transparent 1.5px), radial-gradient(circle at 82% 18%, #000 0, #000 1px, transparent 1.5px), radial-gradient(circle at 25% 55%, #000 0, #000 1px, transparent 1.5px), radial-gradient(circle at 88% 72%, #000 0, #000 1px, transparent 1.5px);
  background-size: 240px 240px, 310px 310px, 280px 280px, 200px 200px;
}
.standort-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: flex-start;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
/* LEFT — sticky intro */
.standort-intro {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 680px;
  padding: clamp(60px, 8vh, 120px) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
/* h2 section-specific tweaks (central styles via .page h2) */
.standort-intro h2 {
  max-width: 14ch;
  -webkit-hyphens: manual;
  hyphens: manual;
}
.standort-intro p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.7;
  color: #3a362f;
  max-width: 48ch;
  margin: 0;
}
.standort-intro .closing {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.65;
  color: #2a2823;
  max-width: 48ch;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.standort-intro .closing strong {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: bold;
  font-size: 1.25em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
/* RIGHT — scrolling locations, no cards, just image + text */
.standort-scroll {
  padding: clamp(60px, 8vh, 120px) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 140px;
}
.loc-entry {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.loc-entry .loc-num {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #8a8275;
  display: flex;
  align-items: center;
  gap: 12px;
}
.loc-entry .loc-num b {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: bold;
  font-size: 22px;
  color: #141414;
  letter-spacing: 0.04em;
}
.loc-entry .loc-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: #222 center / cover no-repeat;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.4);
}
.loc-entry h3 {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: bold;
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.025em;
  color: #141414;
  text-transform: uppercase;
  margin: 8px 0 0;
}
.loc-entry h3 .place {
  display: block;
  font-size: 0.58em;
  letter-spacing: 0.08em;
  color: #62922d;
  margin-top: 6px;
}
.loc-entry .loc-copy {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: #2a2823;
  max-width: 52ch;
  margin: 0;
}
/* Closing statement — full-bleed, centered, above scrolling locations' parent */
.standort-closing {
  width: 100%;
  padding: clamp(80px, 10vh, 140px) clamp(32px, 5vw, 80px);
  /* symmetrisch top/bottom */
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  text-align: center;
  background: #929f6d;
  color: #fff;
}
.standort-closing .closing-inner {
  max-width: 72ch;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}
.standort-closing .tag {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: bold;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  display: block;
}
.standort-closing .text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.75;
  color: #ffffff;
  margin: 0;
  text-wrap: pretty;
}
@media (max-width: 1024px) {
  .standort-grid {
    grid-template-columns: 1fr;
  }
  .standort-intro {
    position: static;
    height: auto;
    min-height: 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 72px 56px;
  }
  .standort-scroll {
    padding: 72px 56px;
    gap: 96px;
  }
  /* Location-Bilder: full-width viewport, kompakte Höhe
     Spezifität muss .loc-entry .loc-img matchen (Basis-Regel line ~1721) */
  .loc-entry .loc-img {
    margin-left: -56px;
    width: calc(100% + 112px);
    /* 56px links + 56px rechts */
    aspect-ratio: 16/9;
    box-shadow: none;
  }
  .standort-closing {
    grid-template-columns: 1fr;
    padding: 60px 56px;
    /* symmetrisch 60px top/bottom */
  }
}
/* Phone & Small Devices: Compact Padding */
@media (max-width: 767px) {
  .standort-intro {
    padding: 56px 28px !important;
  }
  .standort-scroll {
    padding: 56px 28px !important;
    gap: 72px;
  }
  .loc-entry .loc-img {
    margin-left: -28px;
    width: calc(100% + 56px);
  }
  .standort-closing {
    padding: 56px 28px !important;
  }
}
/* -----------------------------------------------------------------------
   Tablet Portrait: .standort-intro wieder sticky
   Im Single-Column-Stack (Intro oben / Scroll darunter) funktioniert
   position:sticky genauso wie auf Desktop – nur vertikal statt links/rechts.
   .standort-grid ist der natürliche Sticky-Scope: sobald der Parent-Container
   den Viewport verlässt, löst sich das Sticky automatisch.
   ----------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .standort-intro {
    position: sticky;
    top: 94px;
    /* exakte Nav-Höhe auf Tablet — kein Gap, kein JS-Overhead */
    z-index: 10;
    height: auto;
    padding: 56px;
    /* konsistentes Padding vor und nach dem Sticky */
    gap: 16px;
    background: rgba(243, 239, 230, 0.88);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }
  #zeitraum,
  #kulinarik,
  #setup {
    padding-top: 0;
  }
}
.page {
  position: relative;
  background: transparent;
  color: #141414;
  padding: 0 0 160px;
}
/* ====================================================================
     FLOW SECTIONS — Zeitraum, Kulinarik, Set-Up
     Large images, clean text, no cards. Same language as Standort.
     ==================================================================== */
.flow-sec {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(80px, 12vh, 160px) clamp(32px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}
.flow-sec.reverse .flow-text {
  order: 1;
}
.flow-sec.reverse .flow-media {
  order: 2;
}
.flow-sec .flow-media .flow-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: #222 center / cover no-repeat;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.4);
}
.flow-sec .flow-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 70ch;
}
/* h2 section-specific tweak (central styles via .page h2) */
.flow-sec h2 {
  max-width: 14ch;
}
.flow-sec p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #3a362f;
  margin: 0;
}
.flow-sec p strong {
  color: #141414;
  font-weight: 600;
}
/* subtle paper grain + faint vertical guide lines for the "sterne" motif */
.page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image: radial-gradient(circle at 10% 12%, #000 0, #000 1px, transparent 1.5px), radial-gradient(circle at 82% 18%, #000 0, #000 1px, transparent 1.5px), radial-gradient(circle at 25% 55%, #000 0, #000 1px, transparent 1.5px), radial-gradient(circle at 88% 72%, #000 0, #000 1px, transparent 1.5px), radial-gradient(circle at 52% 90%, #000 0, #000 1px, transparent 1.5px);
  background-size: 240px 240px, 310px 310px, 280px 280px, 200px 200px, 260px 260px;
}
/* --- KONTAKT --- */
.kontakt {
  max-width: 1600px;
  margin: 160px auto 0;
  padding: 0 clamp(40px, 12vw, 240px);
  text-align: center;
  position: relative;
}
.kontakt .eyebrow-dark {
  margin-bottom: 20px;
}
/* kontakt: h2 tweaks (central styles via .page h2) */
.kontakt h2 {
  font-size: clamp(48px, 5.5vw, 84px);
  margin: 0 0 18px;
}
.kontakt .kontakt-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: #4a463e;
  max-width: 52ch;
  margin: 0 auto 48px;
}
.kontakt form {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: #fff;
  padding: 0;
  box-shadow: 0 24px 56px -16px rgba(75, 93, 58, 0.22), 0 4px 12px -4px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(93, 104, 63, 0.18);
  border-radius: 6px;
  overflow: hidden;
}
.kontakt .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  padding: 32px 36px 24px;
}
.kontakt .form-grid .field.full {
  grid-column: 1 / -1;
}
.kontakt label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6b6456;
  margin-bottom: 7px;
}
.kontakt label .opt {
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #a09585;
  text-transform: none;
  font-size: 10px;
}
.kontakt input:not([type="range"]):not([type="hidden"]),
.kontakt textarea {
  width: 100%;
  background: #eaedd8;
  border: 1px solid rgba(93, 104, 63, 0.22);
  border-radius: 4px;
  padding: 10px 13px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #141414;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.kontakt input:not([type="range"]):focus,
.kontakt textarea:focus {
  border-color: #4b5d3a;
  background: #e0e5c6;
}
.kontakt textarea {
  min-height: 80px;
  resize: vertical;
}
.kontakt .select-wrapper {
  position: relative;
  width: 100%;
}
.kontakt .select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #4b5d3a;
  pointer-events: none;
}
.kontakt select {
  width: 100%;
  background: #eaedd8;
  border: 1px solid rgba(93, 104, 63, 0.22);
  border-radius: 4px;
  padding: 10px 36px 10px 13px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #141414;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.kontakt select:focus {
  border-color: #4b5d3a;
  background: #e0e5c6;
}
/* Range Slider */
.kontakt .range-field {
  margin: 4px 0 0;
}
.kontakt .range-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6b6456;
}
.kontakt .range-label output {
  font-weight: 700;
  color: #4b5d3a;
  letter-spacing: 0;
  font-size: 13px;
}
.kontakt input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  padding: 0;
  border: none;
  height: 20px;
}
.kontakt input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #4b5d3a;
  cursor: pointer;
  margin-top: -8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.kontakt input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: rgba(75, 93, 58, 0.25);
}
.kontakt input[type="range"]:focus {
  outline: none;
  border: none;
}
.kontakt button {
  flex-shrink: 0;
  padding: 14px 32px;
  background: #4b5d3a;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kontakt button:hover {
  background: #3a4a2c;
  transform: translateY(-2px);
}
.kontakt button .arrow {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.kontakt button .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.kontakt .form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 36px;
  background: rgba(93, 104, 63, 0.06);
  border-top: 1px solid rgba(93, 104, 63, 0.14);
}
.kontakt .form-privacy {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  line-height: 1.55;
  color: #8a8275;
  margin: 0;
  max-width: 44ch;
}
.kontakt .form-privacy a {
  color: #4b5d3a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.kontakt .form-actions {
  flex-shrink: 0;
}
.kontakt .form-msg {
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
.kontakt .form-msg--success {
  background: #e3e7d5;
  color: #4b5d3a;
  padding: 80px 40px;
  border-radius: 4px;
}
.kontakt .form-msg--success h3 {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  color: #4b5d3a;
}
.kontakt .form-msg--success p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  margin: 0;
  color: #4b5d3a;
}
@media (max-width: 768px) {
  .kontakt .form-msg--success {
    padding: 60px 20px;
  }
  .kontakt .form-msg--success h3 {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }
  .kontakt .form-msg--success p {
    font-size: 1.1rem;
  }
}
.kontakt .form-msg--error {
  background: #fdf5f3;
  color: #c24a2a;
  border-top: 1px solid #c24a2a;
}
/* Anfahrt */
.anfahrt {
  max-width: 1200px;
  margin: 120px auto 0;
  padding: 0 48px;
}
.anfahrt h2 {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: bold;
  font-size: clamp(48px, 5.5vw, 84px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #141414;
  margin: 0 0 28px;
  text-align: center;
}
.anfahrt .map-stub {
  aspect-ratio: 16/6;
  background: #cdd4cc;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.25);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px), linear-gradient(0deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px), linear-gradient(120deg, #cdd4cc 0%, #b7c2b7 50%, #a8b5a8 100%);
  background-size: 80px 80px, 80px 80px, cover;
}
.anfahrt .map-stub::after {
  content: "URANIA Terrasse · Lamée Rooftop · Wien 1010";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  background: rgba(253, 252, 248, 0.9);
  padding: 12px 22px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.anfahrt .pin {
  position: absolute;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -100%);
}
.anfahrt .pin::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #c24a2a;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.anfahrt .pin.p1 {
  left: 38%;
  top: 45%;
}
.anfahrt .pin.p2 {
  left: 62%;
  top: 55%;
}
.anfahrt-map-wrap {
  width: 100%;
  margin-bottom: 3rem;
  box-shadow: 0 80px 160px -40px rgba(0, 0, 0, 0.18), 0 20px 60px -20px rgba(0, 0, 0, 0.08);
}
.anfahrt-map-inner {
  position: relative;
  overflow: hidden;
  border-radius: 0.25rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #e5e7eb;
}
/* Mobile content */
@media (max-width: 860px) {
  .page {
    padding: 0px 0 100px;
  }
  .flow-sec {
    grid-template-columns: 1fr;
    padding: 72px 48px;
    gap: 0 /* Bild übernimmt spacing über margin-bottom */;
  }
  /* Bild immer über dem Text — auch bei .reverse (Desktop-Regel hat 3-Klassen-Spezifität) */
  .flow-sec .flow-media,
  .flow-sec.reverse .flow-media {
    order: -1;
    margin-left: -48px;
    width: calc(100% + 96px);
    margin-bottom: 32px;
  }
  /* Höhere Spezifität als Basis-Regel nötig — sonst gewinnt .flow-sec .flow-media .flow-img */
  .flow-sec .flow-media .flow-img {
    aspect-ratio: 16/9;
    box-shadow: none;
  }
  .kontakt {
    margin-top: 90px;
    padding: 0 44px;
  }
  .kontakt form {
    padding: 0;
  }
  .kontakt .form-grid {
    grid-template-columns: 1fr;
    padding: 24px 20px 18px;
    gap: 16px;
  }
  .kontakt .form-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
    gap: 16px;
  }
  .kontakt .form-actions {
    align-self: stretch;
  }
  .kontakt .form-actions button {
    width: 100%;
    justify-content: center;
  }
}
/* Phone & Small Devices: Section Padding Overrides */
@media (max-width: 767px) {
  .flow-sec {
    padding: 56px 28px !important;
  }
  .flow-sec .flow-media,
  .flow-sec.reverse .flow-media {
    margin-left: -28px;
    width: calc(100% + 56px);
  }
  .termine-inner {
    padding: 56px 28px !important;
  }
  .kontakt {
    padding: 0 28px !important;
    margin-top: 64px;
  }
  #zeitraum,
  #kulinarik,
  #setup {
    padding-top: 0 !important;
  }
}
/* ====================================================================
     TERMINKALENDER — zwei Kalender (Urania, Lamée), ombre date-tiles
     ==================================================================== */
.termine {
  position: relative;
  width: 100%;
  background: #cacfb7;
}
.termine-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(80px, 10vh, 140px) clamp(40px, 12vw, 240px) clamp(60px, 8vh, 100px);
}
.termine .termine-head {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  text-align: center;
  margin-bottom: clamp(40px, 5vh, 72px);
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
/* termine: kicker override — centered, extra bottom margin */
.termine .kicker {
  justify-content: center;
  margin-bottom: 16px;
}
.termine .termine-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 72ch;
  margin: 0 auto;
}
.termine .termine-intro p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #3a362f;
  margin: 0;
}
.termine .termine-intro p strong {
  color: #141414;
  font-weight: 600;
}
/* Kalender-Blöcke */
.cal-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
}
.cal {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cal-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}
.cal-head .cal-name {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: bold;
  font-size: 42px;
  letter-spacing: 0.03em;
  color: #141414;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .cal-head .cal-name {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .cal-head .cal-name {
    font-size: 32px;
  }
}
.cal-head .cal-name em {
  font-style: italic;
  font-weight: 400;
  color: #62922d;
}
.cal-head .cal-hours {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b6456;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.date-tile {
  position: relative;
  aspect-ratio: 1/1.05;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--tile-free-bg);
  display: grid;
  grid-template-rows: 1fr 1fr;
  align-items: stretch;
  justify-items: center;
  font-family: 'Inter', sans-serif;
  color: #2a2823;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.date-tile:hover {
  transform: translateY(-2px);
  background: var(--tile-free-hover-bg);
  box-shadow: 0 18px 36px -20px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
/* Row 1: Day name or status label — always aligned to bottom */
.date-tile .day {
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #6b6456;
  font-weight: 500;
  align-self: end;
  padding-bottom: 6px;
}
/* Row 2: Date number — always aligned to top */
.date-tile .date {
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #2a2823;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  align-self: start;
  padding-top: 6px;
}
/* ---- Gebucht State ---- */
.date-tile.booked {
  background: var(--tile-gebucht-bg);
  cursor: not-allowed;
  pointer-events: none;
}
.date-tile.booked .booked-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: #6b6456;
  opacity: 0.5;
  align-self: end;
  padding-bottom: 6px;
}
.date-tile.booked .date {
  opacity: 0.5;
  align-self: start;
  padding-top: 6px;
}
/* ---- Optioniert State ---- */
.date-tile.optioniert {
  background: var(--tile-optioniert-bg);
  cursor: not-allowed;
  pointer-events: none;
}
.date-tile.optioniert .optioniert-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: #6b6456;
  opacity: 0.5;
  align-self: end;
  padding-bottom: 6px;
}
.date-tile.optioniert .date {
  opacity: 0.5;
  align-self: start;
  padding-top: 6px;
}
.cal-legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a8275;
}
.cal-legend .sw {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cal-legend .chip {
  width: 12px;
  height: 12px;
  display: inline-block;
}
.cal-legend .chip.free {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.cal-legend .chip.optioniert {
  background: #f4edd6;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.cal-legend .chip.booked {
  background: #ccd2c8;
}
@media (max-width: 1024px) {
  .cal-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .cal-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .date-tile .day {
    font-size: 13px;
  }
  .date-tile .date {
    font-size: 16px;
  }
}
/* ====================================================================
     FOOTER — schmal, dunkel, full-width, mit Platzhalter-Inhalten
     ==================================================================== */
.site-footer {
  position: relative;
  background: #48522d;
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 48px 28px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer .foot-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 2fr;
  gap: 64px;
  align-items: start;
}
.foot-links-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.site-footer .foot-brand {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.site-footer .foot-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Linksbündig */
}
.site-footer .foot-brand em {
  font-style: normal;
  opacity: 0.6;
  font-size: 17px;
  margin: 0 4px;
  letter-spacing: 0.12em;
}
.site-footer .foot-detail {
  text-align: left;
  /* Linksbündig */
}
.site-footer .foot-tag {
  text-align: left;
  /* Linksbündig */
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 42ch;
  margin-bottom: 24px;
  /* Abstand zur Adresse */
}
.site-footer h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 16px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer ul a,
.site-footer .foot-addr {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.6;
}
.site-footer ul a:hover {
  color: #fff;
}
.site-footer .foot-addr {
  font-style: normal;
  display: block;
}
.site-footer .foot-bottom {
  max-width: 1400px;
  margin: 48px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.site-footer .foot-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer .foot-bottom a:hover {
  color: #fff;
}
.site-footer .foot-bottom .legal {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .site-footer {
    padding: 44px 28px 24px;
  }
  .site-footer .foot-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  .site-footer .foot-brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .foot-links-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .site-footer ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
  }
  .site-footer .foot-detail {
    text-align: center;
  }
  .site-footer h4 {
    margin-bottom: 0;
  }
  .site-footer .foot-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-footer .foot-bottom .legal {
    justify-content: center;
    gap: 6px 24px;
  }
  .legal-break {
    display: block;
    flex-basis: 100%;
    height: 0;
  }
}
/* Helper to break flex lines in the legal section - hidden on desktop */
.legal-break {
  display: none;
}
@media (max-width: 767px) {
  .site-footer {
    padding: 48px 24px 32px;
  }
  .site-footer .foot-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .site-footer .foot-brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 8px;
  }
  .foot-links-row {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 48px;
    width: 100%;
  }
  .site-footer .foot-addr {
    max-width: none;
  }
  .site-footer .foot-detail {
    text-align: center;
  }
  .site-footer h4 {
    margin-bottom: 10px;
  }
  .site-footer ul {
    flex-direction: column;
    gap: 6px;
  }
  .site-footer .foot-bottom {
    margin-top: 48px;
    align-items: center;
    text-align: center;
  }
  .site-footer .foot-bottom .legal {
    justify-content: center;
    gap: 12px 24px;
  }
  /* Anfahrt & Maps Phone */
  .anfahrt {
    padding: 0 16px;
    margin-top: 80px;
  }
  .anfahrt h2 {
    margin-bottom: 20px;
  }
  .anfahrt-map-wrap {
    margin-bottom: 2rem;
  }
  .anfahrt-map-wrap iframe {
    height: 400px !important;
  }
}
/* ====== AUDIO ====== */
.custom-audio-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  /* Back-to-Top ist im DOM davor, also steht es oben */
  align-items: flex-end;
  gap: 12px;
}
#bg-audio-toggle {
  cursor: pointer;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(160, 186, 117, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
#bg-audio-toggle:hover {
  background: var(--ci-green-2);
  border-color: var(--ci-green-2);
}
#bg-audio-toggle svg {
  width: 22px;
  height: 22px;
}
#bg-audio-toggle.muted .icon-playing {
  display: none;
}
#bg-audio-toggle.playing .icon-muted {
  display: none;
}
#back-to-top {
  cursor: pointer;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}
#back-to-top:hover {
  background: var(--ci-green-2);
  border-color: var(--ci-green-2);
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
/* ====== MOBILE ====== */
@media (max-width: 768px) {
  .brand-mark {
    padding: 7px 9px;
  }
  .brand-mark .w1 {
    font-size: 17px;
  }
  .brand-mark .w2 {
    font-size: 7px;
  }
  .brand-mark .w3 {
    display: none;
  }
  /* Mobile hero becomes sticky-swipe horizontal */
  #hero-split {
    cursor: default;
  }
  .layer-a {
    clip-path: none !important;
    opacity: 1;
  }
  .seam,
  .dim {
    display: none;
  }
  .headline {
    padding: 28px 20px;
    max-width: 92vw;
  }
  .eyebrow {
    font-size: 14px;
    letter-spacing: 0.3em;
    margin-bottom: 18px;
  }
  .eyebrow::before,
  .eyebrow::after {
    width: 24px;
  }
  h1.title {
    font-size: 54px;
  }
  .sub {
    font-size: 15px;
    margin-top: 18px;
  }
  .cue-l {
    left: 12px;
  }
  .cue-r {
    right: 12px;
  }
  .cue .cue-name {
    font-size: 22px;
    letter-spacing: 0.18em;
  }
  .cue .cue-meta {
    font-size: 10px;
    letter-spacing: 0.22em;
    margin-top: 12px;
  }
  .cue .cue-dates {
    font-size: 14px;
    margin-top: 12px;
  }
  .cue .cue-hours {
    font-size: 9px;
    margin-top: 10px;
  }
  .cue .cue-arrow {
    font-size: 9px;
    margin-top: 14px;
  }
  .loc-index {
    font-size: 80px;
  }
}
/* --- MIGRATED TAILWIND CLASSES (SECTION.PHP and PUNSCHSTAND.PHP) --- */
/* Breakpoints logic from Tailwind:
   sm = 640px
   md = 768px
   lg = 1024px
*/
/* --- SECTION.PHP (Repeater Sections) --- */
.ps-section-wrap {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 6rem;
}
@media (min-width: 640px) {
  .ps-section-wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .ps-section-wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.ps-section-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .ps-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.ps-images-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .ps-images-col {
    flex-direction: row;
  }
}
.ps-image-wrap {
  width: 100%;
}
.ps-image-wrap--offset {
  width: 100%;
}
@media (min-width: 640px) {
  .ps-image-wrap {
    width: 50%;
  }
  .ps-image-wrap--offset {
    width: 50%;
    margin-top: 3rem;
  }
}
.ps-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.ps-image-desc {
  text-align: center;
  margin-top: 0.5rem;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  color: #374151;
}
.ps-text-col {
  color: #1f2937;
  font-size: 1.125rem;
  line-height: 1.625;
}
/* --- PUNSCHSTAND.PHP (Hero) --- */
.hero-main-wrapper {
  position: relative;
  z-index: 10;
  border-bottom-width: 1px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.hero-split-section {
  position: relative;
  width: 100%;
  height: 50vh;
  /* Mobile-first: kompakt */
  min-height: 320px;
  background-color: #000;
  overflow: hidden;
}
/* Desktop: volle Viewport-Höhe */
@media (min-width: 1201px) {
  .hero-split-section {
    height: 100vh;
    min-height: 640px;
  }
}
.hero-videos-container {
  position: sticky;
  top: 0;
  height: 100%;
  overflow: hidden;
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .hero-main-wrapper {
    height: auto !important;
    display: block !important;
  }
  .hero-split-section {
    height: 100vh !important;
    min-height: 600px !important;
    position: relative !important;
    display: block !important;
  }
  .hero-videos-container {
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    height: 100% !important;
    width: 100% !important;
    top: 0 !important;
  }
  .hero-video-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 50vh !important;
    inset: auto !important;
    flex: none !important;
  }
  .hero-video-wrapper.layer-a {
    clip-path: none !important;
  }
  .hero-video-element {
    position: absolute !important;
    height: 100% !important;
    width: 100% !important;
  }
  .hero-cue {
    left: 50% !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    gap: 8px;
  }
  .hero-center-content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    height: auto !important;
    z-index: 100 !important;
    display: flex !important;
    pointer-events: none;
  }
  .hero-center-inner {
    padding: 2rem !important;
    background: none !important;
  }
  .hero-center-h1 {
    font-size: 14vw !important;
    margin: 0 !important;
  }
  .hero-center-p {
    font-size: 8.4vw !important;
    margin-top: 10px !important;
  }
}
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.hero-video-element {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background-color: #000;
  pointer-events: none;
  z-index: 10;
}
/* ── HERO CUES (Location Labels) ──────────────────────────
   Mobile-first: horizontal, am unteren Rand, zentriert in Bildhälfte.
   Desktop (>1200px): per rotate() vertikal an den Seiten. */
.hero-cue {
  display: flex;
  position: absolute;
  z-index: 50;
  transition: opacity 300ms;
  cursor: pointer;
  pointer-events: all;
  /* Default: horizontal, unten positioniert */
  flex-direction: column;
  align-items: center;
  gap: 6px;
  bottom: 12%;
  top: auto;
  text-align: center;
}
.hero-cue-lamee {
  left: 25%;
  transform: translateX(-50%);
}
.hero-cue-urania {
  left: 75%;
  transform: translateX(-50%);
}
/* Desktop: per rotate() vertikal an den Seiten —
   KEIN writing-mode, das hat zu viele Seiteneffekte */
@media (min-width: 1201px) {
  .hero-cue {
    top: 50%;
    bottom: auto;
    gap: 10px;
  }
  /* Text liest von unten nach oben */
  .hero-cue-lamee {
    left: var(--edge-padding);
    transform: translateY(-50%) rotate(-90deg);
  }
  /* Text liest von oben nach unten */
  .hero-cue-urania {
    left: auto;
    right: var(--edge-padding);
    transform: translateY(-50%) rotate(90deg);
  }
}
.hero-cue-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: -10;
  margin: -40px -50px;
}
@media (min-width: 1201px) {
  .hero-cue-backdrop {
    margin: -80px -40px;
  }
}
.hero-cue-text {
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  letter-spacing: 0.18em;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
  white-space: nowrap;
  position: relative;
  z-index: 10;
}
@media (min-width: 1201px) {
  .hero-cue-text {
    font-size: 2.5vw;
    letter-spacing: 0.15em;
  }
}
/* Pfeil: immer sichtbar, bounce-animation */
.hero-cue-arrow {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  opacity: 0.9;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8));
  animation: tablet-cue-bounce 2s ease-in-out infinite;
  line-height: 1;
  position: relative;
  z-index: 10;
}
/* Desktop: Pfeil unter dem rotierten Text.
   flex-direction wechselt, damit der Pfeil in der Richtung steht
   die nach Screen-Rotation "unten" ergibt.
   Lamée (-90deg): Container-LINKS = Screen-UNTEN → row-reverse
   Urania  (+90deg): Container-RECHTS = Screen-UNTEN → row */
@media (min-width: 1201px) {
  .hero-cue-arrow {
    font-size: 1.6rem;
  }
  /* Lamée: row-reverse → Pfeil links im Container = visuell unten */
  .hero-cue-lamee {
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
  }
  .hero-cue-lamee .hero-cue-arrow {
    rotate: 90deg;
    /* Gegen-Rotation: ↓ zeigt wieder nach unten */
  }
  /* Urania: row → Pfeil rechts im Container = visuell unten */
  .hero-cue-urania {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .hero-cue-urania .hero-cue-arrow {
    rotate: -90deg;
    /* Gegen-Rotation: ↓ zeigt wieder nach unten */
  }
}
/* Mobile-Tap-CTA: nicht mehr nötig (direkter Scroll) */
.mobile-tap-cta {
  display: none;
}
/* ── HERO CENTER CONTENT (Headline + Subline) ─────────── */
.hero-center-content {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding: 0 1rem;
  width: 100%;
}
.hero-center-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 64rem;
}
@media (min-width: 1201px) {
  .hero-center-inner {
    padding: 8rem;
  }
}
.hero-center-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: -10;
}
.hero-center-h1 {
  color: #fff;
  font-size: 8vw;
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 900;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
  text-align: center;
}
@media (min-width: 768px) {
  .hero-center-h1 {
    font-size: 6vw;
  }
  .hero-center-p {
    font-size: 3.6vw;
  }
}
.hero-br-md {
  display: none;
}
@media (min-width: 768px) {
  .hero-br-md {
    display: block;
  }
}
.hero-center-p {
  color: #fff;
  font-size: 4.8vw;
  margin-top: 0.8rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 300;
  line-height: 1.375;
  max-width: 45ch;
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
  text-align: center;
  opacity: 0.9;
}
@media (min-width: 1201px) {
  .hero-center-p {
    font-size: 1.875rem;
    margin-top: 1rem;
    opacity: 1;
  }
}
/* ── Bounce-Animation für Pfeile ─────────────── */
@keyframes tablet-cue-bounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(6px);
  }
  45% {
    transform: translateY(3px);
  }
}
/* ======================================================================
   TABLET REFINEMENTS — Typografie, max-width ch, Abstände
   Benutzt min-width:600px + max-width:1024px damit diese Regeln
   nur für Tablets gelten und die mobilen Overrides (<600px / <768px)
   die weiter oben im File stehen, NICHT überschrieben werden.
   ====================================================================== */
/* 1) H2 Headlines: Clamp-Minimums für Tablets anheben
      Die vw-Werte im clamp() werden auf schmalen Tablets (768px) zu klein
      und fallen auf den Minimalwert – der ist oft zu niedrig.
      Wir setzen tablet-spezifische Minima, die besser zur Größe passen. */
@media (min-width: 600px) and (max-width: 1024px) {
  .standort-intro h2 {
    font-size: clamp(56px, 7.5vw, 80px);
    max-width: none;
    /* im Single-Column-Layout keine künstliche ch-Beschränkung */
  }
  .flow-sec h2 {
    font-size: clamp(56px, 7.5vw, 80px);
    max-width: none;
  }
  .termine h2 {
    font-size: clamp(56px, 7.5vw, 80px);
  }
  .kontakt h2 {
    font-size: clamp(56px, 7.5vw, 80px);
  }
  .anfahrt h2 {
    font-size: clamp(56px, 7.5vw, 80px);
  }
  /* 2) max-width ch: In Single-Column-Layouts keine künstliche Breiten-Begrenzung.
        ch-Units skalieren mit der Schriftgröße – auf Tablet sind sie deshalb
        oft drastisch enger als auf Desktop. */
  .standort-intro .lede,
  .standort-intro p,
  .standort-intro .closing {
    max-width: none;
  }
  .loc-entry .loc-copy {
    max-width: none;
  }
  .flow-sec .flow-text {
    max-width: none;
  }
  .flow-sec p {
    max-width: none;
  }
  /* 3) Vertikale und horizontale Abstände reduzieren.
        Wir nutzen hier den Tablet-Range (600–1024px), damit die mobilen
        Regeln weiter oben im File für <600px / <768px weiterhin greifen. */
  /* Terminkalender: 12vw Side-Padding wird auf Tablet massiv (≈90px+) → auf ~56–80px begrenzen */
  .termine-inner {
    padding: clamp(56px, 7vh, 96px) clamp(48px, 6vw, 80px) clamp(40px, 5vh, 72px);
  }
  /* Kontakt: ebenfalls 12vw Side-Padding → auf ~56–80px begrenzen */
  .kontakt {
    padding: 0 clamp(48px, 6vw, 80px);
    margin-top: 80px;
  }
  /* Flow-Sections: vertikales clamp(80px, 12vh, 160px) zu groß + seitliches Padding anpassen */
  .flow-sec {
    padding: clamp(56px, 7vh, 96px) clamp(48px, 6vw, 80px);
  }
  /* Standort Closing: Abstände komprimieren, Seitenabstand verdoppelt */
  .standort-closing {
    padding: clamp(56px, 7vh, 96px) clamp(48px, 6vw, 80px);
    /* symmetrisch top/bottom */
  }
  /* Page wrapper: Bottom-Padding verkleinern */
  .page {
    padding-bottom: 100px;
    padding-top: 0px;
  }
}
/* Spezifische Kunden-Korrektur: Zwischen 860px und 1250px top-padding bei Flow-Sections anpassen */
@media (min-width: 861px) and (max-width: 1249px) {
  #zeitraum,
  #kulinarik,
  #setup {
    padding-top: 30px;
  }
}
/* ====== DSGVO / COOKIE BANNER ====== */
.dsgvo {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
  /* JS blendet ein */
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Inter', sans-serif;
}
.dsgvo .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}
.dsgvo .clearfix {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.dsgvo p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
.dsgvo p a,
.dsgvo p a:active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.dsgvo p a:hover,
.dsgvo p a:active:hover {
  opacity: 0.75;
}
.dsgvo .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  line-height: 1;
}
.dsgvo .dsgvo-btn_3,
.dsgvo .dsgvo-btn_1 {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.dsgvo .dsgvo-btn_3:hover,
.dsgvo .dsgvo-btn_1:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.dsgvo .dsgvo-btn_2 {
  background: var(--ci-green-2);
  color: #fff;
  border: 1px solid var(--ci-green-2);
}
.dsgvo .dsgvo-btn_2:hover {
  background: var(--ci-green);
  border-color: var(--ci-green);
}
@media (max-width: 600px) {
  .dsgvo .clearfix {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .dsgvo .btn {
    width: 100%;
  }
}
/*# sourceMappingURL=punschstand.css.map */