/* ============================================================
   LORBASS – main.css
   Shared across all pages
   ============================================================ */

@font-face {
  font-family: 'DirtyHeadline';
  src: url('../fonts/Dirty_Headline.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ── Selbst gehostete Schriften (DSGVO-freundlich, kein externer Google-Aufruf) ── */
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Serif Display';
  src: url('../fonts/dm-serif-display-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Variables ── */
:root {
  --bg:          #0d0d0d;
  --surface:     #161616;
  --surface2:    #1e1e1e;
  --border:      #2a2a2a;
  --accent:      #c8a96e;
  --accent-dim:  #7a6440;
  --accent-hover:#e0c080;
  --text:        #e8e4dc;
  --muted:       #6b6b6b;
  --red:         #cc0000;
  --red-dim:     #3a0606;
  --radius:      12px;
  --radius-sm:   8px;
  --header-h:    70px;
  --transition:  0.22s ease;

  /* Scroll-driven hero lighting (0 = resting/dark, 1 = fully lit).
     Updated by main.js; stays at 0 if JS is unavailable. */
  --scroll-progress: 0;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  min-height: 100dvh;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
hr  { border: none; border-top: 1px solid var(--border); margin: 28px 0; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
}
h1 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h2 { font-size: clamp(1.2rem, 3vw, 1.6rem); color: var(--accent); margin-bottom: 12px; }
h3 { font-size: clamp(1rem, 2.5vw, 1.25rem); color: var(--accent); margin-bottom: 8px; }
p  { margin-bottom: 14px; text-align: justify; text-justify: inter-word; }
p:last-child { margin-bottom: 0; }

b, strong { font-weight: 500; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/* Logo */
.site-logo {
  position: relative;
  text-align: center;
}

/* Stage-light glow: a single pure-CSS radial gradient sitting behind the
   wordmark. Its opacity/position are read straight off --scroll-progress,
   so it brightens and drifts as one continuous gesture tied to scroll —
   "the houselights coming up behind the sign". GPU-only properties
   (opacity, transform) so it never triggers layout/repaint. */
.site-logo::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 230px;
  height: 120px;
  margin: -60px 0 0 -115px;
  background: radial-gradient(ellipse at center,
    rgba(204,0,0,0.30) 0%,
    rgba(200,160,90,0.16) 40%,
    rgba(200,160,90,0) 72%);
  opacity: calc(0.12 + (var(--scroll-progress) * 0.65));
  transform: translate3d(0, calc(var(--scroll-progress) * -3px), 0)
             scale(calc(0.94 + (var(--scroll-progress) * 0.1)));
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
/* will-change is only switched on while the hero is actually in view
   (toggled via .hero-active on <html> by main.js), so the browser doesn't
   keep a composited layer alive for the rest of the session. */
html.hero-active .site-logo::before {
  will-change: opacity, transform;
}

.site-logo .logo-name,
.site-logo .logo-sub {
  position: relative;
  z-index: 1;
}
.site-logo .logo-name {
  font-family: 'DirtyHeadline', sans-serif;
  font-size: 2.1rem;
  font-weight: normal;
  color: var(--red);
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
  display: block;
  /* "Lit signage": the red deepens/saturates in step with the glow behind
     it — the wordmark reacts to its environment, it doesn't animate on
     its own. No drop-shadows/halos/3D — keeps the gritty Dirty Headline
     letterforms flat and graphic, like a printed sign under stage light. */
  filter: saturate(calc(0.55 + (var(--scroll-progress) * 0.45)))
          brightness(calc(0.86 + (var(--scroll-progress) * 0.14)));
}
.site-logo .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

/* Hamburger */
.menu-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 300;
  transition: border-color var(--transition);
}
.menu-btn:hover { border-color: var(--accent-dim); }
.menu-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg);  background: var(--accent); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--accent); }

/* ── Side Menu ── */
.side-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(300px, 88vw);
  height: 100dvh;
  background: #111;
  border-left: 1px solid var(--border);
  z-index: 250;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding-top: 84px;
  padding-bottom: 32px;
  overflow-y: auto;
}
.side-menu.open { transform: translateX(0); }

.side-menu-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 28px 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}
.side-menu nav a {
  display: block;
  padding: 13px 28px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), padding-left var(--transition);
}
.side-menu nav a:hover,
.side-menu nav a.active { color: var(--accent); padding-left: 36px; }

/* ── Overlay ── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 240;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.overlay.open { opacity: 1; pointer-events: all; }

/* ============================================================
   PAGE HEADER  (non-index pages)
   ============================================================ */
.page-header {
  padding: 48px 24px 36px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--accent);
}
.page-header p {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 0;
  text-align: center;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.site-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* ── Content sections ── */
.content-section {
  margin-bottom: 48px;
}
.content-section:last-child { margin-bottom: 0; }

/* Hero headline: catches the light very gently as the user scrolls into
   it — a brightness readout of the same --scroll-progress value, never an
   independent animation, never a flicker. */
#hero h2 {
  filter: brightness(calc(0.95 + (var(--scroll-progress) * 0.05)));
}

/* ── Info cards (Öffnungszeiten, Anfahrt etc.) ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.info-card h3 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}
.info-card p, .info-card li { font-size: 0.9rem; line-height: 1.7; text-align: left; }
.info-card ul { list-style: none; }
.info-card ul li::before { content: '–  '; color: var(--accent-dim); }

/* ── Opening hours table ── */
.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day  {
  color: var(--muted);
  flex: 0 0 180px;   /* feste Breite -> alle Tage linksbündig in einer Flucht */
  text-align: left;
}
.hours-list .time { color: var(--text); text-align: left; }
.hours-list .closed { color: var(--text); font-style: italic; }

/* ── Quick links row ── */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
}
.btn-primary:hover {
  background: var(--accent);
  color: #0d0d0d;
  border-color: var(--accent);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
}
.btn-outline:hover {
  background: var(--accent);
  color: #0d0d0d;
  border-color: var(--accent);
}

/* ── Social Media ── */
.social-section { text-align: center; }
.social-intro {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 480px;
  margin: 0 auto;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  min-width: 235px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.social-card:hover {
  border-color: var(--accent);
  background: var(--surface2);
  color: var(--accent);
}
.social-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--accent);
  transition: color var(--transition);
}
.social-card:hover .social-icon { color: var(--accent-hover); }
.social-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.3;
}
.social-name { font-size: 0.92rem; font-weight: 500; }
.social-handle { font-size: 0.78rem; color: var(--muted); transition: color var(--transition); }
.social-card:hover .social-handle { color: var(--accent); }

/* ============================================================
   EVENTS – Accordion
   ============================================================ */
.event-list { display: flex; flex-direction: column; gap: 20px; }

/* Einheitliche Event-Box (für wiederkehrende UND Datenbank-Events) */
.event-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  transition: border-color var(--transition);
}
.event-box:hover { border-color: var(--accent-dim); }

.event-box-title {
  font-family: 'DM Serif Display', serif;
  color: var(--accent);
  font-weight: 400;
  text-align: center;
  font-size: clamp(1.27rem, 3.16vw, 1.58rem); /* ~+26% gegenüber Standard-h3 (10% + weitere 15%) */
  margin: 2px 0;
}
.event-box-sub {
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin: 2px 0;
}
.event-box-cat {
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 3px;
}
.event-box-img {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 8px auto 0;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--surface2);
}

/* Aufklappbare Beschreibung (wiederkehrende Events) */
.event-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  padding: 12px 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.event-toggle:hover { border-color: var(--accent-dim); color: var(--accent); }
.event-toggle::after { content: '▾'; transition: transform var(--transition); }
.event-toggle.active::after { transform: rotate(180deg); }

.event-desc {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.event-desc.open { grid-template-rows: 1fr; }
.event-desc > .event-desc-inner { overflow: hidden; }
.event-desc-inner > p:first-child { margin-top: 14px; }
.event-desc-inner p {
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 14px;
  padding: 0 6px;
}
.event-desc-inner b { color: var(--text); }
.event-desc-inner i { color: var(--accent); font-style: italic; }

/* Statische Beschreibung (Datenbank-Events, kurz) */
.event-desc-static {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.6;
  white-space: pre-line;
  margin: 12px 6px 4px;
}
.event-cal-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 6px;
}
.btn-cal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  padding: 8px 16px;
  letter-spacing: 0.04em;
}
.btn-cal svg { flex-shrink: 0; }

/* ============================================================
   JOBS
   ============================================================ */
.job-section { margin-bottom: 36px; }
.job-section h2 { margin-bottom: 16px; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
  justify-content: center;
}
.tag {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 0.75rem;
  color: var(--text);
  letter-spacing: 0.05em;
}

.requirements-list, .benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.requirements-list li, .benefits-list li {
  padding: 11px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.requirements-list li::before { content: '✕'; color: var(--accent-dim); flex-shrink: 0; font-size: 0.75rem; margin-top: 2px; }
.benefits-list    li::before { content: '✓'; color: var(--accent);     flex-shrink: 0; font-size: 0.75rem; margin-top: 2px; }

.contact-box {
  background: var(--surface);
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius);
  padding: 24px 20px;
  margin-top: 32px;
  text-align: center;
}
.contact-box h3 { margin-bottom: 10px; }
.contact-box p  { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; text-align: center; }

/* ============================================================
   IMPRESSUM
   ============================================================ */
.legal-section { margin-bottom: 36px; }
.legal-section h2 { margin-bottom: 14px; }
.legal-section p  { font-size: 0.88rem; line-height: 1.75; }
.legal-section a  { color: var(--accent); word-break: break-all; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 20px;
  text-align: center;
}
.footer-logo {
  font-family: 'DirtyHeadline', sans-serif;
  font-size: 1.6rem;
  color: var(--red);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-bottom: 18px;
}
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  font-size: 0.65rem;
  color: #333;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.4s ease forwards; }

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 600px) {
  .info-grid { grid-template-columns: 1fr; }
  .site-main  { padding: 28px 16px 60px; }

  /* Smaller viewport → smaller, recentred glow so it never competes with
     the stacked text below the header for attention or contrast. */
  .site-logo::before {
    width: 170px;
    height: 90px;
    margin: -45px 0 0 -85px;
    filter: blur(16px);
  }
}

/* ============================================================
   REDUCED MOTION
   The hero simply renders in its final "lit" state — no ramp, no
   transition, no JS-driven updates (main.js bails out early too).
   Visual identity is fully preserved, only the motion is removed.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  :root { --scroll-progress: 1; }
}

/* Trennlinie zwischen wiederkehrenden und kommenden Events */
.event-divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 680px;
  margin: 40px auto 10px;
}

/* ============================================================
   INTRO OVERLAY  (1980 → NOW hero sequence)
   ============================================================ */
#intro-overlay {
  position: fixed;
  inset: 0;
  background: #020202;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Barrel vignette — turns the flat screen into a room */
#intro-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 42%,
    transparent 28%,
    rgba(0,0,0,0.55) 68%,
    rgba(0,0,0,0.93) 100%);
  pointer-events: none;
  z-index: 8;
}

/* ---- Ambient bloom ---- */
.h-bloom {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -55%);
  width: min(900px, 130vw);
  height: min(450px, 80vw);
  border-radius: 50%;
  background: radial-gradient(ellipse,
    rgba(200,169,110,0.22) 0%,
    rgba(180,95,20,0.09) 48%,
    transparent 72%);
  filter: blur(55px);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 1.4s ease;
}
.h-bloom.on { opacity: 1; }

/* Warmer accent bloom */
.h-bloom-accent {
  position: absolute;
  left: 50%; top: 42%;
  transform: translate(-50%, -50%);
  width: min(420px, 85vw);
  height: min(210px, 42vw);
  border-radius: 50%;
  background: radial-gradient(ellipse,
    rgba(200,130,30,0.14) 0%,
    transparent 68%);
  filter: blur(38px);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 1.1s ease 0.5s;
}
.h-bloom-accent.on { opacity: 1; }

/* ---- Impact flare ---- */
.h-flare {
  position: absolute;
  left: 50%; top: 50%;
  width: 160vmax;
  height: 160vmax;
  border-radius: 50%;
  background: radial-gradient(ellipse,
    rgba(255,215,100,0.70) 0%,
    rgba(230,155,40,0.28) 28%,
    rgba(190,80,10,0.10) 52%,
    transparent 68%);
  filter: blur(40px);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 6;
}

/* ---- Wordmark ---- */
.h-wordmark {
  font-family: 'DirtyHeadline', Impact, 'Arial Black', Arial, sans-serif;
  font-size: clamp(2.2rem, 7.5vw, 4.6rem);
  font-weight: normal;
  letter-spacing: 0.14em;
  color: var(--red-dim);
  line-height: 1;
  position: relative;
  z-index: 9;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.55s ease,
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              color 1s ease,
              text-shadow 1s ease;
}
.h-wordmark.in  { opacity: 1; transform: translateY(0); }
.h-wordmark.lit {
  color: var(--red);
  text-shadow:
    0 0  25px rgba(204,  0,  0, 0.65),
    0 0  70px rgba(204,  0,  0, 0.30),
    0 0 130px rgba(160,  0,  0, 0.14);
}

/* ---- Seit subline ---- */
.h-seit {
  font-size: clamp(0.48rem, 1.3vw, 0.68rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #3a3a3a;
  margin-top: 5px;
  position: relative;
  z-index: 9;
  opacity: 0;
  transition: opacity 0.55s ease 0.22s;
}
.h-seit.in { opacity: 1; }

/* ---- Year: floats freely, no background box ---- */
.h-year-stage {
  background: transparent;
}

.h-year {
  font-family: 'DirtyHeadline', Impact, 'Arial Black', Arial, sans-serif;
  font-size: clamp(5.8rem, 31vw, 18rem);
  font-weight: normal;
  color: var(--accent);
  letter-spacing: -0.015em;
  line-height: 1;
  display: block;
  font-variant-numeric: tabular-nums;
  text-shadow:
    0 0 10px rgba(0,0,0,.8),
    0 0 25px rgba(0,0,0,.6),
    0 0 50px rgba(200,169,110,.25);
  opacity: 0;
  transform: scale(1.08) translateY(5px);
  transition: opacity 0.55s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: filter, transform;
}
.h-year.in { opacity: 1; transform: scale(1) translateY(0); }

/* ---- 45 JAHRE stamp ---- */
.h-jahre {
  font-size: clamp(0.7rem, 2.4vw, 1.15rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  position: relative;
  z-index: 9;
  opacity: 0;
  transform: scale(0.93) translateY(5px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  text-shadow: 0 0 35px rgba(200,169,110,0.55);
}
.h-jahre.in { opacity: 1; transform: scale(1) translateY(0); }

/* ---- Skip hint ---- */
.h-skip {
  position: absolute;
  bottom: max(26px, env(safe-area-inset-bottom, 26px));
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #252525;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.h-skip.off { opacity: 0; }

/* ---- Exit ---- */
#intro-overlay.exiting {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
#intro-overlay.gone { display: none; }

@media (prefers-reduced-motion: reduce) {
  #intro-overlay { display: none !important; }
}