/* =============================================================
   LEBLER EVENTS – Design System
   Dunkel · Event · Emotional · Responsiv
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0a0c;
  --bg-2: #0f0f13;
  --panel: #15151a;
  --panel-2: #1a1a21;
  --line: rgba(255, 255, 255, .08);
  --line-strong: rgba(255, 255, 255, .16);
  --text: #f4f4f6;
  --muted: #9a9aa3;
  --muted-2: #6e6e78;
  --accent: #ff4d2e;
  --accent-2: #ffb020;
  --grad: linear-gradient(135deg, #ff4d2e 0%, #ff8a3d 100%);
  --grad-soft: linear-gradient(135deg, rgba(255,77,46,.16), rgba(255,176,32,.12));
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow-lg: 0 30px 80px rgba(0,0,0,.5);
  --shadow-glow: 0 12px 34px rgba(255,77,46,.32);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Arial Black", "Segoe UI Black", "Inter", system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --header-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -.02em; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

::selection { background: var(--accent); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a33; border-radius: 8px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #3a3a45; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.section { padding-block: 96px; }
.section-dark { background: var(--bg-2); position: relative; }
.section-narrow .container { max-width: 860px; }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 48px;
}
.section-head-inline { margin-bottom: 28px; }
.section-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px);
  text-transform: uppercase; letter-spacing: -.01em; font-weight: 900;
}
.section-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px;
  color: var(--muted); border-bottom: 1px solid transparent; padding-bottom: 2px; transition: color .25s, border-color .25s; white-space: nowrap;
}
.section-link:hover { color: var(--accent); border-color: var(--accent); }
.section-link svg { transition: transform .25s; }
.section-link:hover svg { transform: translateX(4px); }

/* ---------- Skip-Link ---------- */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--accent); color: #fff; padding: 10px 18px; border-radius: 8px;
  font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 15px; line-height: 1; padding: 15px 28px;
  border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease, filter .25s ease;
  white-space: nowrap;
}
.btn svg { transition: transform .25s; }
.btn:hover svg { transform: translateX(3px); }
.btn-accent { background: var(--grad); color: #fff; box-shadow: var(--shadow-glow); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(255,77,46,.45); filter: brightness(1.05); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--accent); border-color: rgba(255,77,46,.5); }
.btn-outline:hover { background: rgba(255,77,46,.1); border-color: var(--accent); transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 13px; }
.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Scroll-Progress ---------- */
.m-scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 120;
  transform-origin: 0 50%; transform: scaleX(0);
  background: var(--grad);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(10, 10, 12, .72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled {
  background: rgba(8, 8, 10, .92);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong {
  font-family: var(--font-display); font-size: 21px; font-weight: 900;
  letter-spacing: .01em; text-transform: uppercase;
}
.logo-text small {
  font-size: 9.5px; font-weight: 700; letter-spacing: .5em; color: var(--accent);
  text-transform: uppercase; margin-top: 4px; padding-left: 2px;
}

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav ul a {
  position: relative; display: inline-block; padding: 10px 13px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted); transition: color .25s;
}
.main-nav ul a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px;
  background: var(--grad); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .28s ease;
}
.main-nav ul a:hover, .main-nav ul a.is-active { color: var(--text); }
.main-nav ul a:hover::after, .main-nav ul a.is-active::after { transform: scaleX(1); }
.header-cta { margin-left: 12px; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line-strong);
  background: var(--panel); border-radius: 12px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle-line { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; transform: translateX(-6px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile-Menü */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: rgba(10,10,12,.98);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu-inner { padding: 90px 28px 40px; overflow-y: auto; height: 100%; display: flex; flex-direction: column; }
.mobile-menu nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  display: flex; align-items: baseline; gap: 16px; padding: 15px 4px;
  font-family: var(--font-display); font-size: clamp(30px, 8vw, 44px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.02em; color: var(--text);
  border-bottom: 1px solid var(--line); transition: color .25s, padding-left .25s;
}
.mobile-menu nav a:hover { color: var(--accent); padding-left: 12px; }
.mm-num { font-family: var(--font); font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: .2em; }
.mobile-menu-foot { margin-top: auto; padding-top: 36px; display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.mobile-social { display: flex; gap: 24px; }
.mobile-social a { font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); transition: color .25s; }
.mobile-social a:hover { color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 90px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; background: var(--bg); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; will-change: transform; }
.hero-orb-1 { width: 46vw; height: 46vw; min-width: 420px; min-height: 420px; top: -12%; right: -8%;
  background: radial-gradient(circle at 30% 30%, rgba(240,255,0,.6), rgba(240,255,0,0) 62%); animation: drift 26s ease-in-out infinite alternate; }
.hero-orb-2 { width: 38vw; height: 38vw; min-width: 360px; min-height: 360px; bottom: -10%; left: -6%;
  background: radial-gradient(circle at 60% 40%, rgba(255,230,0,.4), rgba(255,230,0,0) 60%); animation: drift 32s ease-in-out infinite alternate-reverse; }
.hero-orb-3 { width: 24vw; height: 24vw; min-width: 220px; min-height: 220px; top: 18%; left: 30%;
  background: radial-gradient(circle at 50% 50%, rgba(222,255,0,.3), rgba(222,255,0,0) 60%); animation: drift 20s ease-in-out infinite alternate; }
@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(3%, 4%, 0) scale(1.08); }
}
.hero-grid {
  position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 0%, transparent 75%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-stroke {
  position: absolute; top: 24px; right: 0; display: flex; flex-direction: column; align-items: flex-end;
  gap: 6px; font-size: 11px; letter-spacing: .34em; color: var(--muted-2); text-transform: uppercase;
  writing-mode: horizontal-tb; text-align: right;
}
.hero-stroke span { opacity: 0; animation: fadeUp .8s ease forwards; }
.hero-stroke span:nth-child(2) { animation-delay: .25s; }
.hero-stroke span:nth-child(3) { animation-delay: .5s; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px;
  font-size: 13px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}
.hero-kicker::before { content: ""; width: 34px; height: 2px; background: var(--grad); border-radius: 2px; }
.hero-title {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(64px, 15vw, 196px); line-height: .86; letter-spacing: -.04em;
  display: flex; flex-direction: column; margin-bottom: 30px; position: relative;
}
.hero-name { color: var(--text); }
.hero-eye { display: flex; align-items: center; gap: clamp(12px, 2.4vw, 30px); color: var(--text); }
.hero-eye .accent-note {}
.hero-dot { width: clamp(14px, 2.2vw, 30px); height: clamp(14px, 2.2vw, 30px); border-radius: 50%;
  background: var(--grad); box-shadow: 0 0 30px rgba(255,77,46,.8); display: inline-block; flex-shrink: 0; }
.hero-logo-halo {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: clamp(340px, 64vw, 840px); height: clamp(340px, 64vw, 840px);
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(240,255,0,.4) 0%, rgba(240,255,0,.15) 42%, rgba(240,255,0,0) 68%);
}
.hero-logo {
  width: clamp(240px, 40vw, 560px); height: auto; align-self: center; margin-inline: auto;
  position: relative; z-index: 1;
  filter: drop-shadow(0 0 28px rgba(240,255,0,.55)) drop-shadow(0 0 80px rgba(240,255,0,.35));
  animation: logoGlow 3.6s ease-in-out infinite;
}
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 24px rgba(240,255,0,.5)) drop-shadow(0 0 70px rgba(240,255,0,.32)) drop-shadow(0 18px 50px rgba(240,255,0,.2)); }
  50%      { filter: drop-shadow(0 0 42px rgba(240,255,0,.9)) drop-shadow(0 0 120px rgba(240,255,0,.6)) drop-shadow(0 18px 60px rgba(240,255,0,.35)); }
}
.hero-claim {
  font-size: clamp(20px, 3vw, 34px); font-weight: 800; letter-spacing: -.01em;
  color: var(--text); margin-bottom: 14px;
}
.claim-text { position: relative; }
.claim-text::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 10px;
  background: linear-gradient(90deg, rgba(255,77,46,.35), rgba(255,176,32,.06)); border-radius: 4px;
  z-index: -1;
}
.hero-tagline { max-width: 560px; color: var(--muted); font-size: clamp(15px, 1.6vw, 18px); margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 52px; }

.hero-next {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 14px 22px; border: 1px solid var(--line); border-radius: 16px;
  background: rgba(255,255,255,.03); transition: border-color .25s, transform .25s, background .25s;
  max-width: 100%;
}
.hero-next:hover { border-color: rgba(255,77,46,.5); background: rgba(255,77,46,.06); transform: translateY(-2px); }
.hero-next-label { font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); }
.hero-next-name { font-weight: 800; font-size: 16px; white-space: nowrap; }
.hero-next-date { font-size: 12px; color: var(--muted); white-space: nowrap; }
.hero-next svg { margin-left: auto; color: var(--accent); flex-shrink: 0; }

.hero-equalizer {
  position: absolute; right: clamp(24px, 5vw, 80px); bottom: 110px; z-index: 2;
  display: flex; align-items: flex-end; gap: 5px; height: 54px;
}
.hero-equalizer span {
  width: 4px; border-radius: 3px; height: 16px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  animation: eq 1.25s ease-in-out infinite; transform-origin: bottom;
  animation-delay: var(--d, 0s);
}
@keyframes eq {
  0%, 100% { transform: scaleY(.35); opacity: .7; }
  50% { transform: scaleY(1); opacity: 1; }
}

.scroll-indicator {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
  color: var(--muted);
}
.scroll-mouse { width: 24px; height: 38px; border: 2px solid var(--muted-2); border-radius: 14px; padding: 5px 0; display: flex; justify-content: center; }
.scroll-mouse span { width: 3px; height: 8px; border-radius: 3px; background: var(--accent); animation: scrollWheel 1.8s ease-in-out infinite; }
@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  70%, 100% { transform: translateY(12px); opacity: 0; }
}
.scroll-text { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--bg-2); padding-block: 20px; }
.marquee-track { display: flex; width: max-content; margin-inline: auto; will-change: transform; }
.marquee-group { display: flex; align-items: center; }
.marquee-item {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(20px, 3vw, 32px);
  text-transform: uppercase; letter-spacing: .02em; color: var(--text); padding: 0 22px;
}
.marquee-star { color: var(--accent); font-size: 18px; }

/* ---------- Featured / Spotlight ---------- */
.featured-card {
  display: grid; grid-template-columns: 1.15fr 1fr; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line); background: var(--panel);
  box-shadow: var(--shadow-lg);
}
.featured-media { position: relative; overflow: hidden; min-height: 320px; }
.featured-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.featured-card:hover .featured-media img { transform: scale(1.05); }
.featured-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(10,10,12,.55)); }
.featured-cat, .event-card-cat, .event-hero-cat {
  position: absolute; z-index: 3; top: 18px; left: 18px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; padding: 7px 14px; border-radius: 999px;
  background: var(--catcolor, var(--accent));
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.featured-body { padding: 46px 44px; display: flex; flex-direction: column; justify-content: center; }
.featured-label { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(255,77,46,.6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,77,46,.55); }
  70% { box-shadow: 0 0 0 11px rgba(255,77,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,46,0); }
}
.featured-title { font-family: var(--font-display); font-size: clamp(30px, 4.4vw, 48px); font-weight: 900; text-transform: uppercase; margin-bottom: 18px; }
.featured-meta { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-bottom: 20px; }
.featured-meta span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.featured-meta svg { color: var(--accent); flex-shrink: 0; }
.featured-desc { color: var(--muted); margin-bottom: 28px; }
.featured-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Event-Karten ---------- */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.event-card {
  display: flex; flex-direction: column; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--panel); overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.event-card:hover { transform: translateY(-6px); border-color: rgba(255,77,46,.4); box-shadow: var(--shadow-lg); }
.event-card-media { position: relative; display: block; aspect-ratio: 3/2; overflow: hidden; }
.event-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.event-card:hover .event-card-img { transform: scale(1.08); }
.event-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,10,12,.4)); }
.event-card-ticket {
  position: absolute; z-index: 3; top: 18px; right: 18px;
  display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text);
  background: rgba(10,10,12,.72); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 7px 12px;
}
.event-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.event-card-meta { display: flex; align-items: center; gap: 12px; font-weight: 700; margin-bottom: 10px; }
.event-card-date, .event-card-time { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; letter-spacing: .06em; color: var(--accent); text-transform: uppercase; }
.event-card-time { color: var(--muted); }
.event-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 8px; }
.event-card-loc { display: flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--muted); margin-bottom: 12px; }
.event-card-loc svg { color: var(--accent); flex-shrink: 0; }
.event-card-desc { font-size: 14px; color: var(--muted); margin-bottom: 18px; flex: 1; }
.event-card-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .08em; color: var(--text);
  border-bottom: 2px solid transparent; padding-bottom: 3px; align-self: flex-start;
  transition: color .25s, border-color .25s;
}
.event-card-link svg { color: var(--accent); transition: transform .25s; }
.event-card:hover .event-card-link { color: var(--accent); border-color: rgba(255,77,46,.4); }
.event-card:hover .event-card-link svg { transform: translateX(3px); }

/* ---------- Vermietung ---------- */
.rentals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.rental-card {
  display: flex; flex-direction: column; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--panel); overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.rental-card:hover { transform: translateY(-6px); border-color: rgba(255,77,46,.4); box-shadow: var(--shadow-lg); }
.rental-media { aspect-ratio: 3/2; overflow: hidden; }
.rental-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.rental-card:hover .rental-media img { transform: scale(1.06); }
.rental-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.rental-title { font-family: var(--font-display); font-size: 21px; font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 10px; color: var(--text); }
.rental-desc { font-size: 14.5px; color: var(--muted); line-height: 1.65; }
.rental-note {
  margin-top: 46px; padding: 30px 34px; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 18px; border: 1px solid var(--line);
  border-radius: var(--radius); background: linear-gradient(135deg, rgba(255,77,46,.08), rgba(255,176,32,.04));
}
.rental-note p { color: var(--muted); flex: 1; min-width: 240px; }

/* ---------- Filter ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  border: 1px solid var(--line-strong); background: var(--panel); cursor: pointer;
  transition: all .25s;
}
.chip:hover { color: var(--text); border-color: var(--muted-2); transform: translateY(-1px); }
.chip.is-active {
  color: #fff; border-color: transparent;
  background: var(--grad); box-shadow: var(--shadow-glow);
}

/* ---------- Empty-State ---------- */
.empty-state { text-align: center; padding: 70px 20px; border: 1px dashed var(--line-strong); border-radius: var(--radius-lg); }
.empty-state h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 8px; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }
.empty-ring {
  display: inline-grid; place-items: center; width: 74px; height: 74px; border-radius: 50%;
  font-size: 28px; color: var(--accent); border: 1px solid rgba(255,77,46,.4);
  box-shadow: 0 0 40px rgba(255,77,46,.22); margin-bottom: 22px;
}

/* ---------- Über mich Teaser ---------- */
.about-teaser-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.portrait-frame { position: relative; display: inline-block; }
.portrait-placeholder {
  width: 100%; max-width: 400px; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #23232c, #141419);
  border: 1px solid var(--line-strong); overflow: hidden; display: grid; place-items: center;
}
.portrait-placeholder svg { width: 60%; opacity: .85; }
.portrait-img {
  max-width: 400px; width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-lg); border: 1px solid var(--line-strong);
}
.portrait-badge {
  position: absolute; bottom: -14px; left: 20px; padding: 9px 18px; border-radius: 999px;
  background: var(--grad); color: #fff; font-weight: 800; font-size: 13px; letter-spacing: .06em;
  box-shadow: var(--shadow-glow);
}
.about-teaser-quote, .about-lead {
  font-size: clamp(18px, 2.2vw, 23px); font-weight: 600; line-height: 1.5; color: var(--text);
  border-left: 3px solid var(--accent); padding-left: 18px; margin-block: 20px;
}
.about-teaser-body { color: var(--muted); margin-bottom: 26px; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative; padding: 30px 28px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--panel); overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.service-card:hover { border-color: rgba(255,77,46,.4); transform: translateY(-4px); }
.service-card::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--catcolor, var(--accent)), var(--accent-2)); transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-size: 13px; font-weight: 700; letter-spacing: .14em; color: var(--accent); }
.service-card h3 { font-family: var(--font-display); font-size: 21px; font-weight: 900; text-transform: uppercase; margin: 14px 0 8px; }
.service-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.service-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--text); }
.service-link svg { color: var(--accent); transition: transform .25s; }
.service-link:hover { color: var(--accent); }
.service-link:hover svg { transform: translateX(3px); }

/* ---------- CTA Band ---------- */
.cta-band { position: relative; padding: 110px 0; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 90% at 20% 50%, rgba(255,77,46,.22), transparent 60%),
    radial-gradient(ellipse 50% 80% at 85% 60%, rgba(255,176,32,.14), transparent 55%),
    var(--bg-2);
}
.cta-inner { text-align: center; }
.cta-title { font-family: var(--font-display); font-size: clamp(34px, 6vw, 64px); font-weight: 900; text-transform: uppercase; margin-bottom: 16px; }
.cta-text { max-width: 580px; margin: 0 auto 34px; color: var(--muted); font-size: 17px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ---------- Page Hero ---------- */
.page-hero { position: relative; padding: calc(var(--header-h) + 70px) 0 70px; overflow: hidden; }
.page-hero-compact { padding-bottom: 40px; }
.page-hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255,77,46,.14), transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,176,32,.08), transparent 55%),
    var(--bg);
}
.page-hero-title { font-family: var(--font-display); font-size: clamp(40px, 7vw, 76px); font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; margin-bottom: 14px; }
.page-hero-sub { max-width: 640px; color: var(--muted); font-size: clamp(16px, 2vw, 18px); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: minmax(300px, 440px) 1fr; gap: 64px; align-items: start; }
.about-portrait { position: sticky; top: calc(var(--header-h) + 24px); }
.portrait-frame-lg .portrait-placeholder { max-width: 440px; width: 100%; }
.portrait-frame-lg .portrait-img { max-width: 440px; }
.about-portrait-name { margin-top: 34px; display: flex; flex-direction: column; }
.about-portrait-name strong { font-size: 20px; font-weight: 800; }
.about-portrait-name span { color: var(--muted); font-size: 14px; }
.about-lead { margin-top: 22px; }
.prose { color: var(--muted); font-size: 16.5px; }
.prose p + p { margin-top: 16px; }
.prose strong { color: var(--text); }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { padding: 28px 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--panel); transition: border-color .3s, transform .3s; }
.value-card:hover { border-color: rgba(255,77,46,.4); transform: translateY(-4px); }
.value-num { font-size: 12px; font-weight: 700; letter-spacing: .16em; color: var(--accent); }
.value-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 900; text-transform: uppercase; margin: 14px 0 8px; }
.value-card p { font-size: 14px; color: var(--muted); }

.doing-list { display: grid; gap: 14px; }
.doing-item {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
  padding: 26px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel);
  transition: border-color .3s, transform .3s;
}
.doing-item:hover { border-color: rgba(255,77,46,.4); transform: translateX(4px); }
.doing-num { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: transparent; -webkit-text-stroke: 1.4px var(--accent); }
.doing-item h3 { font-size: 19px; font-weight: 800; margin-bottom: 4px; }
.doing-item p { color: var(--muted); font-size: 15px; }

.quote-band { position: relative; padding: 100px 0; overflow: hidden; }
.quote-bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 55% 90% at 50% 40%, rgba(255,77,46,.16), transparent 60%), var(--bg);
}
.big-quote { max-width: 860px; margin: 0 auto; text-align: center; position: relative; }
.quote-mark {
  position: absolute; top: -56px; left: 50%; transform: translateX(-50%);
  font-family: Georgia, serif; font-size: 130px; line-height: 1; color: rgba(255,77,46,.25);
}
.big-quote p { font-size: clamp(22px, 3.4vw, 34px); font-weight: 700; line-height: 1.45; }
.big-quote em { color: var(--accent); font-style: normal; }
.big-quote cite { display: block; margin-top: 24px; font-style: normal; color: var(--muted); font-size: 15px; letter-spacing: .06em; }

/* ---------- Kontakt ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.contact-intro { color: var(--muted); margin-bottom: 28px; }
.contact-cards { display: grid; gap: 14px; }
.contact-card {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--panel);
  transition: border-color .25s, transform .25s;
}
.contact-card:hover { border-color: rgba(255,77,46,.45); transform: translateX(4px); }
.contact-card-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--accent);
}
.contact-card span:last-child { display: flex; flex-direction: column; }
.contact-card small { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.contact-card strong { font-size: 15.5px; font-weight: 700; }
.contact-address { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--muted); font-size: 14px; }
.contact-address svg { color: var(--accent); }

.contact-form-wrap {
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--panel); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.form-group label em, .form-check em { color: var(--accent); font-style: normal; }
.form-group .optional { color: var(--muted-2); font-weight: 500; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 15px;
  border: 1px solid var(--line-strong); background: var(--bg-2); color: var(--text);
  font-family: inherit; transition: border-color .25s, box-shadow .25s;
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,77,46,.16);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted-2); }
.form-check { display: flex; gap: 12px; align-items: flex-start; margin: 6px 0 24px; }
.form-check input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.form-check label { font-size: 14px; color: var(--muted); line-height: 1.5; }
.form-check a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.form-note { font-size: 12.5px; color: var(--muted-2); margin-top: 16px; text-align: center; }
.form-errors {
  border: 1px solid rgba(255,77,46,.4); background: rgba(255,77,46,.08);
  border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 22px; font-size: 14px;
}
.form-errors strong { color: #ffb3a3; }
.form-errors ul { margin-top: 6px; display: grid; gap: 4px; color: #ffb3a3; }
.form-errors li::before { content: "• "; color: var(--accent); }
.form-success { text-align: center; padding: 30px 10px; }
.form-success h3 { font-size: 26px; font-weight: 800; margin-bottom: 10px; }
.form-success p { color: var(--muted); margin-bottom: 28px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Event Detail ---------- */
.event-hero { position: relative; min-height: 78svh; display: flex; align-items: flex-end; padding: calc(var(--header-h) + 40px) 0 60px; overflow: hidden; }
.event-hero-media { position: absolute; inset: 0; z-index: 0; }
.event-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.event-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,12,.55) 0%, rgba(10,10,12,.68) 55%, rgba(10,10,12,.94) 100%); }
.event-hero-inner { position: relative; z-index: 2; }
.event-past-banner {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px;
  padding: 8px 14px; border-radius: 999px; background: rgba(10,10,12,.6);
  border: 1px solid var(--line-strong); font-size: 12.5px; font-weight: 600; color: var(--muted);
}
.event-past-banner svg { color: var(--accent); }
.event-hero-cat { position: static; display: inline-block; margin-bottom: 18px; }
.event-hero-title { font-family: var(--font-display); font-size: clamp(40px, 8vw, 92px); font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; line-height: .95; margin-bottom: 22px; text-shadow: 0 10px 40px rgba(0,0,0,.5); }
.event-hero-facts { display: flex; flex-wrap: wrap; gap: 12px 30px; margin-bottom: 30px; }
.hero-fact { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600; color: var(--text); }
.hero-fact svg { color: var(--accent); flex-shrink: 0; }
.event-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.event-layout { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.event-lead { font-size: clamp(17px, 2vw, 20px); font-weight: 600; color: var(--text); margin: 20px 0 26px; line-height: 1.6; }
.event-side { display: grid; gap: 20px; position: sticky; top: calc(var(--header-h) + 24px); }
.side-card {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); padding: 26px;
}
.side-card-accent { border-color: rgba(255,77,46,.35); background: linear-gradient(160deg, rgba(255,77,46,.1), rgba(255,176,32,.05)), var(--panel); }
.side-card-title { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.side-list { display: grid; gap: 14px; }
.side-list div { display: grid; grid-template-columns: 96px 1fr; gap: 12px; }
.side-list dt { font-size: 13px; font-weight: 600; color: var(--muted-2); }
.side-list dd { font-size: 14px; font-weight: 600; }
.side-card-accent p { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.side-note { font-size: 12.5px; color: var(--muted-2); margin-top: 14px; line-height: 1.5; }
.side-links { display: grid; gap: 8px; }
.side-link {
  display: flex; align-items: center; justify-content: space-between; padding: 12px 16px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  transition: border-color .25s, background .25s;
}
.side-link:hover { border-color: rgba(255,77,46,.45); background: rgba(255,77,46,.05); }
.side-link svg { color: var(--accent); }
.side-map-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--accent); }
.side-map-link svg { transition: transform .25s; }
.side-map-link:hover svg { transform: translateX(3px); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { position: relative; border: 0; padding: 0; background: none; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: "⤢"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 26px; color: #fff; background: rgba(10,10,12,.45); opacity: 0; transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(6,6,8,.94);
  display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 88vw; max-height: 82vh; border-radius: 12px; box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 22px; right: 26px; font-size: 34px; line-height: 1; color: var(--text);
  background: none; border: 0; cursor: pointer; opacity: .8; transition: opacity .2s, transform .2s;
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px;
  border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(255,255,255,.04);
  color: var(--text); font-size: 26px; cursor: pointer; display: grid; place-items: center; transition: background .2s, border-color .2s;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-nav:hover { background: rgba(255,77,46,.2); border-color: var(--accent); }
.lightbox-count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font-size: 13px; letter-spacing: .12em; color: var(--muted); }

/* ---------- Rechtliches ---------- */
.legal-box {
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--panel); padding: 44px clamp(22px, 5vw, 56px);
}
.legal-box h2 { font-size: 20px; font-weight: 800; margin: 34px 0 10px; }
.legal-box h2:first-child { margin-top: 0; }
.legal-box p { color: var(--muted); font-size: 15px; line-height: 1.75; }
.legal-box a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-note { border: 1px solid rgba(255,176,32,.35); background: rgba(255,176,32,.07); border-radius: var(--radius-sm); padding: 16px 18px; color: #ffd98f !important; margin-bottom: 26px; }

/* ---------- 404 ---------- */
.notfound { text-align: center; }
.notfound-code {
  font-family: var(--font-display); font-size: clamp(90px, 20vw, 200px); font-weight: 900; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--accent); display: block; margin-bottom: 20px;
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { margin-bottom: 18px; }
.footer-claim { font-weight: 800; font-size: 18px; color: var(--text); margin-bottom: 10px; }
.footer-about { color: var(--muted); font-size: 14px; max-width: 320px; }
.footer-title { display: block; font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 14.5px; transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact li span { color: var(--muted); font-size: 14.5px; }
.footer-social a { display: inline-flex; align-items: center; gap: 9px; }
.footer-social svg { color: var(--accent); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line); padding: 22px 0; color: var(--muted-2); font-size: 13px;
}
.footer-legal { display: inline-flex; gap: 20px; }
.footer-legal a { color: var(--muted); transition: color .25s; }
.footer-legal a:hover { color: var(--accent); }
.footer-admin {
  margin-left: auto; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted-2); opacity: .55; transition: color .25s, opacity .25s;
}
.footer-admin:hover { color: var(--accent); opacity: 1; }

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 150;
  max-width: 520px; margin: 0 auto; padding: 20px 22px; border-radius: var(--radius);
  background: var(--panel-2); border: 1px solid var(--line-strong); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr auto; gap: 10px 16px; align-items: center;
  font-size: 13.5px; color: var(--muted);
  transform: translateY(140%); transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { line-height: 1.55; }
.cookie-banner strong { color: var(--text); }
.cookie-banner a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; grid-column: 1; }
.cookie-banner .btn { grid-column: 2; grid-row: 1 / span 2; }

/* ---------- Nach-oben-Button ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 140;
  width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .3s ease, transform .3s cubic-bezier(.22,1,.36,1), visibility .3s;
}
.to-top:hover { background: var(--accent); filter: brightness(.92); }
.to-top:active { transform: translateY(0) scale(.94); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Reveal Animationen ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); transition-delay: calc(var(--i, 0) * 70ms); }
.reveal.revealed { opacity: 1; transform: none; }

/* ---------- Glass-Karten ---------- */

/* Glassmorphism: halbtransparent + Backdrop-Blur, Glanz-Gradient, Lichtkante oben */
.event-card, .rental-card, .featured-card, .service-card,
.value-card, .doing-item, .side-card, .contact-card {
  background:
    radial-gradient(120% 55% at 50% 0%, rgba(255,255,255,.075), rgba(255,255,255,0) 58%),
    linear-gradient(165deg, rgba(255,255,255,.05), rgba(255,255,255,0) 45%),
    rgba(21,21,26,.72);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09);
}
.event-card::after, .rental-card::after, .featured-card::after,
.service-card::after, .value-card::after, .doing-item::after,
.side-card::after, .contact-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  pointer-events: none;
}
/* Sanfter Hover-Glow in Akzentfarbe (Karten-Lichtquelle) */
.event-card:hover, .rental-card:hover, .service-card:hover,
.value-card:hover, .doing-item:hover, .side-card:hover, .contact-card:hover {
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255,255,255,.12),
    0 14px 44px rgba(255,77,46,.16);
}
/* Karten mit eigener Kategorie-Farbe bekommen ihren Glow aus der Kartenfarbe */
.service-card, .event-card { box-shadow: inset 0 1px 0 rgba(255,255,255,.09); }
.service-card:hover, .event-card:hover {
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255,255,255,.12),
    0 14px 44px color-mix(in srgb, var(--catcolor, #ff4d2e) 28%, transparent);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .rentals-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-media { min-height: 380px; }
  .featured-media::after { background: linear-gradient(180deg, transparent 40%, rgba(10,10,12,.6)); }
  .main-nav ul a { padding: 10px 9px; font-size: 12.5px; }
  .header-cta { display: none; }
}

@media (max-width: 920px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .section { padding-block: 72px; }
  .about-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .event-layout { grid-template-columns: 1fr; }
  .event-side { position: static; }
  .hero-equalizer { display: none; }
}

@media (max-width: 640px) {
  .container { padding-inline: 18px; }
  .section { padding-block: 60px; }
  .events-grid { grid-template-columns: 1fr; }
  .rentals-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stroke { display: none; }
  .featured-media { min-height: 260px; }
  .featured-body { padding: 30px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; grid-template-columns: 1fr; }
  .cookie-banner .btn { grid-column: 1; grid-row: auto; }
  .to-top { right: 16px; bottom: 16px; width: 46px; height: 46px; }
  .contact-form-wrap { padding: 26px 20px; }
  .hero-actions .btn-lg { width: 100%; }
  .cta-actions .btn-lg { width: 100%; }
  .doing-item { grid-template-columns: 1fr; gap: 10px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-link { order: 2; }
  .hero-next { flex-wrap: wrap; gap: 10px 16px; }
  .hero-next-name { white-space: normal; }
}

/* Tablet hochformat (641–920px) – PC-Look bleibt unberührt */
@media (min-width: 641px) and (max-width: 920px) {
  .events-grid, .rentals-grid, .services-grid, .values-grid { gap: 18px; }
  .about-teaser-inner { gap: 40px; }
  .contact-layout { gap: 40px; }
  .event-layout { gap: 36px; }
  .featured-body { padding: 34px 30px; }
  .section-head { margin-bottom: 36px; }
}

/* Smartphones (≤520px) */
@media (max-width: 520px) {
  .container { padding-inline: 16px; }
  .hero { padding: calc(var(--header-h) + 26px) 0 64px; }
  .hero-logo { width: clamp(200px, 64vw, 300px); }
  .hero-kicker { font-size: 11.5px; letter-spacing: .18em; }
  .hero-actions { gap: 12px; }
  .hero-next { gap: 10px 14px; padding: 14px 16px; }
  .page-hero { padding: calc(var(--header-h) + 42px) 0 46px; }
  .page-hero-title { font-size: clamp(32px, 11vw, 42px); }
  .event-hero { min-height: auto; align-items: flex-end; padding: calc(var(--header-h) + 26px) 0 38px; }
  .event-hero-title { font-size: clamp(30px, 10vw, 46px); margin-bottom: 16px; }
  .event-hero-facts { gap: 10px 20px; margin-bottom: 22px; }
  .hero-fact { font-size: 14px; }
  .event-hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .event-hero-actions .btn-lg { width: 100%; }
  .featured-body { padding: 26px 20px; }
  .featured-media { min-height: 220px; }
  .featured-meta { gap: 10px 16px; }
  .featured-actions { display: grid; grid-template-columns: 1fr; }
  .featured-actions .btn { width: 100%; }
  .event-card-body { padding: 18px 18px 20px; }
  .gallery-grid { gap: 10px; }
  .side-card { padding: 20px 18px; }
  .side-list div { grid-template-columns: 84px 1fr; gap: 10px; }
  .legal-box { padding: 28px 20px; }
  .doing-item { padding: 22px 20px; gap: 14px; }
  .value-card, .service-card { padding: 24px 20px; }
  .rental-note { padding: 24px 20px; }
  .quote-band { padding: 70px 0; }
  .quote-mark { font-size: 88px; top: -44px; }
  .cta-band { padding: 84px 0; }
  .contact-form-wrap { padding: 24px 18px; }
  .mobile-menu-inner { padding: 78px 20px 30px; }
  .mobile-menu nav a { font-size: clamp(25px, 9vw, 36px); padding: 13px 4px; gap: 12px; }
  .portrait-badge { left: 10px; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 22px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 16px; right: 18px; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .hero-orb { animation: none; }
}