/* 
  DIESW DATEI IST NUR FÜR DIE PUNSCHSTAND SEITE
  UND WIRD EIGENSTÄNDIG KOMPILIERT ZU PUNSCHSTAND.CSS
  UND NUR DIESE WIRD AUF DER PUNSCH SEITE GELADEN
   */
:root {
  --ink: #0b0b0b;
  --paper: #f3efe6;
  --ci-green: #4b5d3a;
  --ci-green-2: #62922d;
  --accent: #c24a2a;
  --line: rgba(255, 255, 255, 0.14);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  background: #000;
  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;
}
/* 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);
  pointer-events: none;
  transition: background 0.4s;
}
.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-cta {
    display: none;
  }
}
/* ====== HERO SPLIT ====== */
#hero-split {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #000;
  cursor: ew-resize;
}
.layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  will-change: clip-path, filter;
}
.layer-b {
  z-index: 1;
}
.layer-a {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
/* Slight pre-grade on both — crush blacks, boost shadow warmth */
.layer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, 0.55) 100%);
}
/* Dimming overlays (one per side — the inactive side gets darker) */
.dim {
  position: absolute;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out;
  z-index: 3;
}
.dim-l {
  left: 0;
  width: 50%;
}
.dim-r {
  right: 0;
  width: 50%;
}
/* The visible curtain seam */
.seam {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  left: 50%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.45) 14%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0.45) 86%, transparent 100%);
  z-index: 4;
  pointer-events: none;
  will-change: left;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}
.seam::before,
.seam::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}
.seam::before {
  top: calc(50% - 14px);
  background: rgba(0, 0, 0, 0.25) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'><path d='M9 6l-6 6 6 6M15 6l6 6-6 6'/></svg>") center / 16px no-repeat;
}
.seam::after {
  display: none;
}
/* ====== VERTICAL CUES (location labels) — BIG, readable ======
     Use writing-mode: vertical-rl for natural vertical text flow. Children
     with display:block stack as consecutive rows (reading down the column). */
.cue {
  position: absolute;
  top: 50%;
  z-index: 20;
  cursor: pointer;
  user-select: none;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  font-feature-settings: "tnum";
}
.cue-l {
  left: 22px;
  transform: translate(0, -50%) rotate(180deg);
}
.cue-r {
  right: 22px;
  transform: translate(0, -50%);
}
/* On shorter viewports, hide the least-critical items so the stack fits */
@media (max-height: 820px) {
  .cue .cue-meta {
    display: none;
  }
  .cue .cue-meta + .divider {
    display: none;
  }
}
@media (max-height: 700px) {
  .cue .cue-hours {
    display: none;
  }
  .cue .cue-hours + .divider,
  .cue .divider + .cue-hours ~ .divider {
    display: none;
  }
}
.cue > * {
  display: flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}
.cue .cue-arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.75;
  gap: 10px;
}
.cue .cue-arrow .arrow {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.cue .cue-arrow .arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.cue .cue-name {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 44px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.cue .cue-dates {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 30px;
  letter-spacing: 0.08em;
  opacity: 1;
}
.cue .cue-meta {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
  gap: 10px;
}
.cue .cue-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
  flex-shrink: 0;
}
.cue .cue-hours {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}
.cue .divider {
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  display: inline-block;
  flex-shrink: 0;
}
/* ====== CENTRAL HEADLINE BLOCK ====== */
.headline {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  text-align: center;
  padding: 56px 80px;
  max-width: 900px;
  pointer-events: none;
}
/* radial-vignetted dark backdrop (+ blur where supported) */
.headline::before {
  content: "";
  position: absolute;
  inset: -80px -40px;
  background: radial-gradient(ellipse 60% 70% at center, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0) 92%);
  z-index: -1;
  pointer-events: none;
}
@supports (backdrop-filter: blur(10px)) {
  .headline::after {
    content: "";
    position: absolute;
    inset: -40px;
    backdrop-filter: blur(32px) saturate(1.2);
    -webkit-backdrop-filter: blur(32px) saturate(1.2);
    -webkit-mask-image: radial-gradient(ellipse 55% 65% at center, black 0%, black 35%, transparent 75%);
    mask-image: radial-gradient(ellipse 55% 65% at center, black 0%, black 35%, transparent 75%);
    z-index: -1;
    pointer-events: none;
  }
}
.eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.28em;
  line-height: 1;
  color: #fff;
  opacity: 0.95;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 56px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}
/* Title block — the whole thing is one continuous gradient mask.
     Gradient: 120°, white → soft sage green. Letters "cut through" that
     gradient (background-clip:text). Applied to the WRAPPER so all four
     lines share a single continuous gradient across the full block. */
.title-block {
  display: inline-block;
  background-image: linear-gradient(120deg, #ffffff 0%, #f6f4ea 22%, #d9dcc4 48%, #a9b893 72%, #7e9269 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.35));
}
h1.title {
  font-weight: 400;
  line-height: 0.9;
}
h1.title .line {
  display: block;
}
h1.title .line-bebas {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: clamp(64px, 9vw, 148px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.92;
}
h1.title .line-script {
  font-family: 'Allura', 'Cormorant Garamond', cursive;
  font-size: clamp(72px, 9vw, 150px);
  line-height: 0.75;
  letter-spacing: 0.005em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  padding: 0 0.04em;
  margin: 0.02em 0;
}
/* SUB — facts row, readable, centered, with nicely spaced dividers */
.sub {
  margin-top: 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.95;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.sub .sep {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
  flex-shrink: 0;
}
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}
.scroll-hint .bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
  animation: drip 2.4s ease-in-out infinite;
}
@keyframes drip {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.01% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* Top chrome gradient removed — nav has its own background */
.chrome-top {
  display: none;
}
/* Cinematic scroll fade overlay */
#hero-scroll-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  z-index: 30;
}
/* Index indicator (01/02) */
.loc-index {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 18;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 140px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  letter-spacing: 0;
  pointer-events: none;
  transition: color 0.3s;
}
.loc-index.l {
  left: 8%;
}
.loc-index.r {
  right: 8%;
}
/* Active state — apply scale + opacity via .cue-active / .cue-inactive */
.cue.cue-inactive {
  opacity: 0.28;
}
/* When a curtain is locked (click-opened), center block fades out */
#hero-split.locked .headline,
#hero-split.locked .scroll-hint {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
}
#hero-split.locked .seam {
  opacity: 0;
  transition: opacity 0.4s;
}
/* ===================================================================
     SEKTION 02 — STANDORTE  (sticky intro left, track right)
     =================================================================== */
.standorte {
  position: relative;
  background: #0b0b0b;
  color: #f3efe6;
  padding: 0;
}
.standorte .sektion-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 80px 48px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sektion-num {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.22);
}
.sektion-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.sektion-title {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 400;
  font-size: clamp(44px, 4vw, 72px);
  line-height: 1;
  letter-spacing: 0.015em;
  margin: 14px 0 0;
  text-transform: uppercase;
  color: #fff;
  max-width: 22ch;
}
.sektion-title em {
  font-style: italic;
  color: #ffd888;
}
.sektion-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
  line-height: 1.8;
}
.sektion-meta b {
  color: #fff;
  font-weight: 500;
}
/* Pinned layout: left intro sticks while right column scrolls through */
.standorte .pinned {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: flex-start;
}
.pinned-left {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 80px 48px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.pinned-left .eyebrow-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffd888;
  margin-bottom: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.pinned-left .eyebrow-mono .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffd888;
}
.pinned-left h2 {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 400;
  font-size: clamp(60px, 5.5vw, 110px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.pinned-left h2 em {
  font-style: italic;
  color: #ffd888;
  font-weight: 400;
}
.pinned-left .intro-copy {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
  margin-top: 28px;
}
.pinned-left .quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 40px;
}
.pinned-left .quick-stats .stat {
  padding: 22px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.pinned-left .quick-stats .stat:last-child {
  border-right: none;
}
.pinned-left .quick-stats .stat .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.pinned-left .quick-stats .stat .v {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  margin-top: 8px;
}
.pinned-left .quick-stats .stat .v em {
  color: #ffd888;
  font-style: italic;
}
.pinned-left .footnote {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 28px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.pinned-left .footnote .ln {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}
/* right column — location cards */
.pinned-right {
  padding: 80px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.loc {
  position: relative;
}
.loc .loc-media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.loc .loc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 0.8, 0.36, 1), filter 0.6s;
}
.loc:hover .loc-media img {
  transform: scale(1.04);
  filter: brightness(1.08);
}
.loc .loc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.65) 100%);
}
.loc .loc-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}
.loc .loc-badge .num {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #ffd888;
}
.loc .loc-badge .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.loc .loc-pin {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.loc .loc-pin::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ec47a;
  box-shadow: 0 0 0 3px rgba(126, 196, 122, 0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(126, 196, 122, 0.25);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(126, 196, 122, 0);
  }
}
.loc .loc-name {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}
.loc .loc-name small {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 400;
}
.loc-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  margin-top: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.loc-body .desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.loc-body .desc .lead {
  font-size: 19px;
  line-height: 1.45;
  color: #fff;
  font-weight: 500;
  margin-bottom: 14px;
  display: block;
}
.loc-specs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.spec-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.spec-row:first-child {
  border-top: none;
  padding-top: 0;
}
.spec-row .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 2px;
}
.spec-row .v {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.4;
  color: #fff;
}
.spec-row .v b {
  color: #ffd888;
  font-weight: 600;
}
.loc-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}
.loc-cta .primary {
  flex: 1;
  padding: 18px 24px;
  background: #ffd888;
  color: #0b0b0b;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.loc-cta .primary:hover {
  background: #fff;
  transform: translateY(-1px);
}
.loc-cta .primary .arrow {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.loc-cta .primary .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.loc-cta .ghost {
  padding: 18px 22px;
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.25s;
}
.loc-cta .ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
/* Booking-strip showing available weeks at a glance */
.week-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 22px;
}
.week-grid .week {
  padding: 10px 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.3;
  background: rgba(255, 255, 255, 0.02);
}
.week-grid .week b {
  display: block;
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}
.week-grid .week.full {
  background: rgba(194, 74, 42, 0.15);
  border-color: rgba(194, 74, 42, 0.4);
  color: #e8a590;
}
.week-grid .week.full b {
  color: #e8a590;
}
.week-grid .week.limited {
  background: rgba(255, 216, 136, 0.08);
  border-color: rgba(255, 216, 136, 0.35);
  color: #ffd888;
}
.week-grid .week.limited b {
  color: #ffd888;
}
/* Mobile */
@media (max-width: 1024px) {
  .standorte .pinned {
    grid-template-columns: 1fr;
  }
  .pinned-left {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
@media (max-width: 768px) {
  .standorte .sektion-head {
    grid-template-columns: 1fr;
    padding: 56px 22px 36px;
    gap: 12px;
  }
  .sektion-meta {
    text-align: left;
  }
  .sektion-title {
    font-size: 44px;
  }
  .pinned-left {
    padding: 56px 22px;
  }
  .pinned-left .quick-stats {
    grid-template-columns: 1fr 1fr;
  }
  .pinned-left .quick-stats .stat:nth-child(2) {
    border-right: none;
  }
  .pinned-right {
    padding: 56px 22px;
    gap: 56px;
  }
  .loc-body {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .loc .loc-name {
    font-size: 32px;
  }
  .week-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .loc-cta {
    flex-direction: column;
    align-items: stretch;
  }
}
/* ====================================================================
     STANDORT SECTION — 50/50 sticky left, scrolling right
     ==================================================================== */
.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);
}
.standort-intro .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;
}
.standort-intro .kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}
.standort-intro h2 {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 400;
  font-size: clamp(44px, 5vw, 84px);
  line-height: 0.92;
  letter-spacing: 0.015em;
  color: #141414;
  text-transform: uppercase;
  margin: 0;
  max-width: 14ch;
}
.standort-intro h2 em {
  font-style: italic;
  font-weight: 400;
  color: #62922d;
}
.standort-intro .lede {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.45;
  color: #2a2823;
  max-width: 44ch;
  font-style: italic;
  margin: 0;
}
.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: 400;
  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: 400;
  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: 400;
  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;
}
.loc-entry .loc-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 18px;
  margin-top: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.loc-entry .loc-meta .m {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.loc-entry .loc-meta .k {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a8275;
}
.loc-entry .loc-meta .v {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: #141414;
}
/* Closing statement — full-bleed, centered, above scrolling locations' parent */
.standort-closing {
  width: 100%;
  padding: clamp(80px, 10vh, 140px) clamp(32px, 5vw, 80px) clamp(100px, 14vh, 180px);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  text-align: center;
}
.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: 400;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #141414;
  display: block;
}
.standort-closing .text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.75;
  color: #3a362f;
  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 32px;
  }
  .standort-scroll {
    padding: 72px 32px;
    gap: 96px;
  }
  .standort-closing {
    grid-template-columns: 1fr;
    padding: 60px 32px 100px;
  }
}
.page {
  position: relative;
  background: transparent;
  color: #141414;
  padding: 120px 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: 4/3;
  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;
}
.flow-sec .flow-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;
}
.flow-sec .flow-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}
.flow-sec .flow-kicker b {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #141414;
  letter-spacing: 0.04em;
}
.flow-sec h2 {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 400;
  font-size: clamp(44px, 5vw, 84px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #141414;
  text-transform: uppercase;
  margin: 0;
  max-width: 14ch;
}
.flow-sec .flow-lede {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.45;
  color: #2a2823;
  font-style: italic;
  margin: 0;
}
.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;
}
.flow-sec .flow-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 22px;
  margin-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.flow-sec .flow-meta .m {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.flow-sec .flow-meta .k {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a8275;
}
.flow-sec .flow-meta .v {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: #141414;
}
/* 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;
}
.page-head {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 90px;
  text-align: center;
  position: relative;
}
.page-head .eyebrow-dark {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #141414;
  opacity: 0.7;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.page-head .eyebrow-dark::before,
.page-head .eyebrow-dark::after {
  content: "";
  width: 46px;
  height: 1px;
  background: rgba(0, 0, 0, 0.35);
}
.page-head h1.page-title {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 7vw, 112px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #141414;
  text-transform: uppercase;
}
.stack {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 140px;
  position: relative;
}
/* Each section is a polaroid cluster on the left + copy card on the right */
.block {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
  position: relative;
}
.block.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}
.block.reverse .polaroids {
  order: 2;
}
.block.reverse .paper-card {
  order: 1;
}
/* --- polaroid cluster --- */
.polaroids {
  position: relative;
  min-height: 360px;
  padding: 20px 0;
}
.polaroid {
  position: absolute;
  background: #fff;
  padding: 14px 14px 54px;
  box-shadow: 0 22px 45px -18px rgba(0, 0, 0, 0.35), 0 6px 14px -6px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.5s cubic-bezier(0.22, 0.8, 0.36, 1), box-shadow 0.5s;
}
.polaroid:hover {
  z-index: 10;
  transform: translateY(-6px) rotate(var(--r, 0deg)) scale(1.04) !important;
  box-shadow: 0 30px 55px -18px rgba(0, 0, 0, 0.45), 0 8px 18px -6px rgba(0, 0, 0, 0.25);
}
.polaroid .ph {
  width: 100%;
  aspect-ratio: 4/3;
  background: #222 center / cover no-repeat;
  display: block;
}
.polaroid figcaption {
  position: absolute;
  bottom: 16px;
  left: 18px;
  right: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
}
/* individual placement inside cluster — 2 or 3 polaroids stacked */
.cluster-2 .polaroid:nth-child(1) {
  left: 0;
  top: 20px;
  width: 58%;
  --r: -4deg;
  transform: rotate(-4deg);
}
.cluster-2 .polaroid:nth-child(2) {
  right: 4%;
  top: 60px;
  width: 56%;
  --r: 3deg;
  transform: rotate(3deg);
}
.cluster-3 .polaroid:nth-child(1) {
  left: 2%;
  top: 10px;
  width: 46%;
  --r: -5deg;
  transform: rotate(-5deg);
}
.cluster-3 .polaroid:nth-child(2) {
  left: 30%;
  top: 90px;
  width: 46%;
  --r: 2deg;
  transform: rotate(2deg);
  z-index: 2;
}
.cluster-3 .polaroid:nth-child(3) {
  right: 2%;
  top: 180px;
  width: 42%;
  --r: 6deg;
  transform: rotate(6deg);
}
/* --- paper card (the "sheet" with copy) --- */
.paper-card {
  position: relative;
  background: #fdfcf8;
  padding: 56px 56px 56px;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.25), 0 6px 16px -6px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.paper-card .sec-kicker {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8a8275;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.paper-card .sec-kicker::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
}
.paper-card h2 {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #141414;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.paper-card .sub-lede {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: #4a463e;
  margin: 0 0 22px;
  font-style: italic;
}
.paper-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.65;
  color: #2a2823;
  margin: 0 0 16px;
}
.paper-card p:last-child {
  margin-bottom: 0;
}
.paper-card p strong {
  font-weight: 600;
  color: #141414;
}
.paper-card .highlight {
  background: linear-gradient(180deg, transparent 58%, rgba(255, 216, 120, 0.55) 58%, rgba(255, 216, 120, 0.55) 88%, transparent 88%);
  padding: 0 2px;
}
/* Facts row inside card */
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.facts .fact {
  padding-right: 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.facts .fact:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 16px;
}
.facts .fact:nth-child(2) {
  padding-left: 16px;
}
.facts .fact .k {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a8275;
  margin-bottom: 8px;
}
.facts .fact .v {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #141414;
}
/* Section index marker (02, 03…) floating next to each block */
.block-index {
  position: absolute;
  top: -60px;
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 180px;
  line-height: 0.8;
  color: rgba(0, 0, 0, 0.05);
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.block .block-index.left {
  left: -20px;
}
.block .block-index.right {
  right: -20px;
}
/* --- KONTAKT --- */
.kontakt {
  max-width: 1000px;
  margin: 160px auto 0;
  padding: 0 48px;
  text-align: center;
  position: relative;
}
.kontakt h2 {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #141414;
  text-transform: uppercase;
  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: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  text-align: left;
  background: #fdfcf8;
  padding: 44px;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.25), 0 6px 16px -6px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.kontakt form .field.full {
  grid-column: 1/-1;
}
.kontakt label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a8275;
  margin-bottom: 8px;
}
.kontakt input,
.kontakt textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding: 8px 0 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #141414;
  outline: none;
  transition: border-color 0.2s;
}
.kontakt textarea {
  min-height: 120px;
  resize: vertical;
}
.kontakt input:focus,
.kontakt textarea:focus {
  border-bottom-color: #141414;
}
.kontakt button {
  grid-column: 1/-1;
  justify-self: center;
  margin-top: 16px;
  padding: 18px 44px;
  background: #141414;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.kontakt button:hover {
  background: #c24a2a;
  transform: translateY(-2px);
}
.kontakt button .arrow {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.kontakt button .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}
/* Anfahrt */
.anfahrt {
  max-width: 1200px;
  margin: 120px auto 0;
  padding: 0 48px;
}
.anfahrt h2 {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 68px);
  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: "Klyo 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;
}
.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: 80px 0 100px;
  }
  .flow-sec {
    grid-template-columns: 1fr;
    padding: 72px 32px;
    gap: 40px;
  }
  .flow-sec.reverse .flow-text,
  .flow-sec.reverse .flow-media {
    order: initial;
  }
  .page-head {
    padding: 0 22px 60px;
  }
  .stack {
    padding: 0 22px;
    gap: 90px;
  }
  .block,
  .block.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .block.reverse .polaroids,
  .block.reverse .paper-card {
    order: initial;
  }
  .polaroids {
    min-height: 320px;
  }
  .paper-card {
    padding: 36px 28px;
  }
  .facts {
    grid-template-columns: 1fr;
  }
  .facts .fact {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px 0 !important;
  }
  .facts .fact:last-child {
    border-bottom: none;
  }
  .kontakt {
    margin-top: 90px;
    padding: 0 22px;
  }
  .kontakt form {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
  .block-index {
    font-size: 110px;
    top: -40px;
  }
}
/* ====================================================================
     TERMINKALENDER — zwei Kalender (Klyo, Lamée), ombre date-tiles
     ==================================================================== */
.termine {
  position: relative;
  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 .termine-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;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}
.termine .termine-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}
.termine .termine-kicker b {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #141414;
  letter-spacing: 0.04em;
}
.termine h2 {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 400;
  font-size: clamp(44px, 5vw, 84px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #141414;
  text-transform: uppercase;
  margin: 0;
}
.termine .termine-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.termine .termine-intro .lede {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.45;
  color: #2a2823;
  font-style: italic;
  margin: 0;
}
.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: 400;
  font-size: clamp(28px, 2.4vw, 40px);
  letter-spacing: 0.03em;
  color: #141414;
  text-transform: uppercase;
}
.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: #e3e7d5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  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.03);
}
.date-tile:hover {
  transform: translateY(-2px);
  background: #d6dec1;
  box-shadow: 0 18px 36px -20px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.date-tile .day {
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #6b6456;
  font-weight: 500;
}
.date-tile .date {
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #2a2823;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.date-tile.booked {
  background: #ece8de;
  cursor: not-allowed;
  pointer-events: none;
}
.date-tile.booked .day,
.date-tile.booked .date {
  color: #b3ad9f;
}
.date-tile.booked .day::after {
  content: "";
  display: none;
}
.date-tile.booked .booked-label {
  position: absolute;
  top: 26%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #b3ad9f;
  font-weight: 500;
}
.date-tile.booked .day {
  visibility: hidden;
  height: 0;
  margin: 0;
}
.date-tile.booked .date {
  opacity: 0.55;
}
.cal-legend {
  display: flex;
  gap: 24px;
  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: #e3e7d5;
}
.cal-legend .chip.booked {
  background: #ece8de;
}
@media (max-width: 1024px) {
  .cal-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
@media (max-width: 560px) {
  .cal-grid {
    grid-template-columns: repeat(3, 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: #0b0b0b;
  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.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.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 em {
  font-style: normal;
  opacity: 0.6;
  font-size: 17px;
  margin: 0 4px;
  letter-spacing: 0.12em;
}
.site-footer .foot-tag {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  max-width: 38ch;
}
.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;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  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: 860px) {
  .site-footer {
    padding: 44px 22px 24px;
  }
  .site-footer .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .site-footer .foot-brand-col {
    grid-column: 1/-1;
  }
  .site-footer .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ====== AUDIO ====== */
.custom-audio-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  font-size: 0;
}
#bg-audio-toggle {
  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;
}
#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;
}
/* ====== 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;
    height: 100svh;
  }
  .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);
  padding-bottom: 3rem;
}
.hero-split-section {
  position: relative;
  width: 100%;
  height: 200vh;
  background-color: #000;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-split-section {
    height: 100vh;
  }
}
.hero-videos-container {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: block;
  width: 100%;
}
.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-cue {
  display: flex;
  position: absolute;
  top: 50%;
  z-index: 50;
  transition: opacity 300ms;
  /* Removed transform to prevent swing-in bug */
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hero-cue-lamee {
  left: var(--edge-padding);
  writing-mode: vertical-lr;
  transform: translateY(-50%) rotate(180deg);
}
.hero-cue-klyo {
  right: var(--edge-padding);
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}
.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: -80px -40px;
}
.hero-cue-text {
  color: #fff;
  font-size: 1.875rem;
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  letter-spacing: 0.15em;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
  white-space: nowrap;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .hero-cue-text {
    font-size: 2.5vw;
  }
}
.mobile-tap-cta {
  position: absolute;
  bottom: 8vh;
  left: 50%;
  transform: translateX(-50%) scale(0.5);
  z-index: 100;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
  pointer-events: none;
}
@media (min-width: 1025px) {
  .mobile-tap-cta {
    display: none;
  }
}
.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-left: 1rem;
  padding-right: 1rem;
  width: 100vw;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .hero-center-content {
    justify-content: flex-end;
    padding-bottom: 20vh;
  }
}
@media (min-width: 768px) {
  .hero-center-content {
    width: 100%;
  }
}
.hero-center-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem;
  max-width: 64rem;
}
@media (min-width: 768px) {
  .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: 2.25rem;
  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: 3.75rem;
  }
}
@media (min-width: 1024px) {
  .hero-center-h1 {
    font-size: 4vw;
  }
}
.hero-br-md {
  display: none;
}
@media (min-width: 768px) {
  .hero-br-md {
    display: block;
  }
}
.hero-center-p {
  color: #fff;
  font-size: 1.25rem;
  margin-top: 1rem;
  font-family: 'Inter', 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;
}
@media (min-width: 768px) {
  .hero-center-p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-center-p {
    font-size: 1.875rem;
  }
}
