/* ============================================================
   AUSZEIT! EVENTS — STYLES.CSS
   Statische Webseite — Mai 2026
   
   Brand: Sonia Lange · Auszeit! · Köln
   Stil: Editorial Magazine (Live-Site V9.6+ angelehnt)
   Methode: Mobile-First mit Progressive Enhancement
   
   Aufbau:
   1. RESET + BASE (allgemein)
   2. SITE-HEADER + MOBILE-NAV (Wrapper)
   3. .az FOUNDATION (Editorial Magazine — aus V9.6 Template)
   4. SECTION-SPEZIFISCH (Event, Formate, Stats, Partner, etc.)
   5. SITE-FOOTER
   6. TICKETS-MODAL
   7. STICKY-BAR
   8. COOKIE-BANNER (Klaro-Stub)
   9. UTILITIES
============================================================ */


/* ============================================================
   1. RESET + BASE
============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: #0a0a0a;
  background-color: #FAF7F2;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 64px; /* Platz für fixierten Header */
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

::selection {
  background-color: #FFD600;
  color: #0a0a0a;
}


/* ============================================================
   2. SITE-HEADER + MOBILE-NAVIGATION
============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #FAF7F2;
  border-bottom: 1px solid transparent;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.site-header.scrolled {
  border-bottom-color: rgba(10, 10, 10, 0.08);
  box-shadow: 0 2px 12px rgba(10, 10, 10, 0.04);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 24px;
  min-height: 64px;
}

.site-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  flex-shrink: 0;
}

.site-logo:hover {
  color: #E8192C;
}

/* Desktop-Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-desktop ul {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-desktop a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0a0a0a;
  transition: color 200ms ease;
  position: relative;
}

.nav-desktop a:hover {
  color: #E8192C;
}

.nav-desktop a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #E8192C;
}

.lang-switch {
  display: flex;
  gap: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-left: 24px;
  border-left: 1px solid rgba(10, 10, 10, 0.1);
  color: #666;
}

.lang-switch a.active {
  color: #0a0a0a;
  font-weight: 700;
}

.lang-switch a:hover {
  color: #E8192C;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 8px;
  background-color: #FFD600;
  color: #0a0a0a !important;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 200ms ease, background-color 200ms ease;
  white-space: nowrap;
}

.header-cta:hover {
  background-color: #0a0a0a;
  color: #FFD600 !important;
  transform: translateY(-2px);
}

/* Hamburger-Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  padding: 0;
  z-index: 151;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0a0a0a;
  transition: all 300ms cubic-bezier(0.2, 0, 0, 1);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span {
  background-color: #FAF7F2;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Mobile-Nav (Vollbild-Slide-In) */
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #0a0a0a;
  color: #FAF7F2;
  padding: 96px 32px 32px;
  z-index: 150;
  transform: translateX(100%);
  transition: transform 400ms cubic-bezier(0.2, 0, 0, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.nav-mobile[data-open="true"] {
  transform: translateX(0);
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}

.nav-mobile a {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(28px, 8vw, 40px);
  line-height: 1.1;
  padding: 12px 0;
  color: #FAF7F2;
  transition: color 200ms ease;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: #FFD600;
}

.nav-mobile-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile-footer .lang-switch {
  border-left: none;
  padding-left: 0;
  color: rgba(250, 247, 242, 0.5);
}

.nav-mobile-footer .lang-switch a.active {
  color: #FAF7F2;
}

.nav-mobile-footer .lang-switch a:hover {
  color: #FFD600;
}

.nav-mobile-footer .btn-cta-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #FFD600;
  color: #0a0a0a !important;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  transition: transform 200ms ease;
}

.nav-mobile-footer .btn-cta-mobile:hover {
  transform: translateY(-2px);
}


/* Tablet+ */
@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
  
  .nav-desktop {
    display: flex;
  }
  
  .header-cta {
    display: inline-flex;
  }
}


/* ============================================================
   3. .az FOUNDATION — Editorial Magazine V9.6 Basis
   (Aus deinem V9.6-Template extrahiert)
============================================================ */
/* THEME-RESET: Hello Elementor Defaults überschreiben */
.az,
.az *,
.az h1, .az h2, .az h3, .az h4, .az h5, .az h6,
.az p, .az span, .az div, .az a,
.az em, .az strong, .az b, .az i,
.az ul, .az ol, .az li {
  box-sizing: border-box !important;
}

.az em,
.az i,
.az .em,
.az h1 em, .az h2 em, .az h3 em, .az h4 em {
  font-style: oblique 12deg !important;
  font-synthesis: style oblique !important;
  font-weight: inherit !important;
}

.az h1, .az h2, .az h3, .az h4 {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
}

.az p, .az span, .az li, .az a, .az button {
  font-family: 'DM Sans', sans-serif !important;
}

/* Spezifisch: Headlines mit em darin */
.az-hero-title,
.az-comedy-title,
.az-erwartet-question,
.az-eindruecke-title,
.az-formate-title,
.az-mehr-title,
.az-newsletter-title {
  font-family: 'Syne', sans-serif !important;
}

.az-hero-title em,
.az-comedy-title em,
.az-eindruecke-title em,
.az-formate-title em,
.az-newsletter-title em,
.az-format-card-title em {
  font-style: italic !important;
  color: #FFD600 !important;
}

.az-formate-title em {
  color: #E8192C !important;
}

/* Container-Breite für Desktop erhöhen */
.az-formate-inner { max-width: 1400px !important; }
.az-mehr-inner { max-width: 1200px !important; }
.az-partner-carousel-wrap { max-width: 1200px !important; }

@media (min-width: 1024px) {
  .az-hero-content { max-width: 1100px !important; }
  .az-comedy-inner { max-width: 800px !important; }
  .az-erwartet-inner { max-width: 700px !important; }
  .az-newsletter-inner { max-width: 700px !important; }
  .az-stats-inner { max-width: 1100px !important; }
  
  /* Padding erhöhen für mehr Atem */
  .az-hero { padding: 60px 60px !important; }
  .az-comedy { padding: 140px 60px !important; }
  .az-erwartet { padding: 140px 60px !important; }
  .az-eindruecke { padding: 140px 0 !important; }
  .az-formate { padding: 140px 60px !important; }
  .az-mehr { padding: 140px 60px !important; }
  .az-newsletter { padding: 140px 60px !important; }
  .az-stats { padding: 140px 60px 100px !important; }
  .az-partner { padding: 100px 60px 140px !important; }
}

/* ============================================
   AUSZEIT! V9 — Desktop-optimiert + Bug-Fixes
   ============================================ */
.az * { margin: 0; padding: 0; box-sizing: border-box; }
.az { font-family: 'DM Sans', sans-serif !important; color: #0a0a0a !important; line-height: 1.6 !important; }
.az img { max-width: 100%; height: auto; display: block; }
.az a { text-decoration: none; }
.az a:not([class*="az-btn"]):not([class*="card"]):not([class*="link"]) { color: inherit; }
.az h1, .az h2, .az h3, .az h4 {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
}
.az em { font-style: oblique 12deg !important; font-synthesis: style oblique !important; }

/* ============================================
   GLOBALE BUTTONS
   ============================================ */
.az-btn-yellow {
  display: inline-block;
  background: #FFD600 !important;
  color: #0a0a0a !important;
  padding: 18px 48px;
  border-radius: 999px;
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  transition: transform 0.2s;
}
.az-btn-yellow:hover { transform: translateY(-2px); }

.az-btn-black {
  display: inline-block;
  background: #0a0a0a !important;
  color: #FFD600 !important;
  padding: 16px 40px;
  border-radius: 999px;
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: transform 0.2s;
}
.az-btn-black:hover { transform: translateY(-2px); }

.az-btn-text {
  display: inline-block;
  color: #FFD600 !important;
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 0.02em !important;
  border-bottom: 2px solid #FFD600;
  padding-bottom: 4px;
  transition: opacity 0.2s;
}
.az-btn-text:hover { opacity: 0.75; }

/* ============================================
   1. HERO (Schwarz, Vollbild)
   ============================================ */
.az-hero {
  position: relative;
  min-height: 100vh;
  background: #0a0a0a !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
  overflow: hidden;
}
.az-hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.az-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(10,10,10,0.55), rgba(10,10,10,0.85)) !important;
  z-index: 1;
}
.az-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.az-hero-logo {
  width: 110px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.az-hero-title {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(56px, 10vw, 192px) !important;
  color: #FFFFFF !important;
  line-height: 0.95 !important;
  margin-bottom: 20px;
  letter-spacing: -0.03em !important;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.az-hero-title em { color: #FFD600 !important; font-style: italic !important; }
.az-hero-formats {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(13px, 1.5vw, 16px) !important;
  color: #FFD600 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .az-hero-logo { width: 140px !important; margin-bottom: 24px !important; }
  .az-hero { padding: 120px 48px; }
}

/* ============================================
   2. MINI-BANNER (Knallgelb, schmal)
   ============================================ */
.az-banner {
  background: #FFD600 !important;
  color: #0a0a0a !important;
  padding: 16px 24px;
  text-align: center;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.5 !important;
}
.az-banner a {
  color: #0a0a0a !important;
  text-transform: uppercase !important;
  display: inline-block;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.az-banner a:hover { border-bottom-color: #0a0a0a !important; }
@media (min-width: 768px) {
  .az-banner { font-size: 14px !important; padding: 14px 24px; }
}

/* ============================================
   3. COMEDY-PREMIERE (Knallrot oben)
   ============================================ */
.az-comedy {
  background: #E8192C !important;
  color: #FFFFFF !important;
  padding: 80px 24px;
  text-align: center;
  position: relative;
}
.az-comedy-inner { max-width: 700px; margin: 0 auto; }
.az-comedy-top {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.3em !important;
  color: #FFD600 !important;
  text-transform: uppercase !important;
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}
.az-comedy-top::before, .az-comedy-top::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: rgba(255,214,0,0.4) !important;
}
.az-comedy-top::before { right: calc(100% + 12px); }
.az-comedy-top::after { left: calc(100% + 12px); }
.az-comedy-date {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #FFFFFF !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 16px;
}
.az-comedy-title {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-style: italic !important;
  font-size: clamp(36px, 6vw, 60px) !important;
  color: #FFFFFF !important;
  line-height: 0.95 !important;
  margin-bottom: 12px;
  letter-spacing: -0.025em !important;
}
.az-comedy-title em { color: #FFD600 !important; }
.az-comedy-pillars-tag {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  letter-spacing: 0.25em !important;
  color: #FFD600 !important;
  text-transform: uppercase !important;
  margin-bottom: 36px;
}
.az-comedy-meta-line {
  font-size: 14px !important;
  color: #FFFFFF !important;
  margin-bottom: 4px;
  font-weight: 500 !important;
}
.az-comedy-meta-line.bold {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #FFD600 !important;
  margin-bottom: 6px;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}
.az-comedy-divider {
  width: 60px !important;
  height: 2px !important;
  background: #FFD600 !important;
  border: none !important;
  margin: 28px auto !important;
  display: block !important;
  flex-shrink: 0 !important;
}
.az-comedy-pillars {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.25em !important;
  color: #FFFFFF !important;
  text-transform: uppercase !important;
}
@media (min-width: 1024px) {
  .az-comedy { padding: 120px 48px; }
  .az-comedy-meta-line { font-size: 16px !important; }
  .az-comedy-pillars { font-size: 13px !important; }
}

/* ============================================
   3b. WAS DICH ERWARTET (Creme unten)
   ============================================ */
.az-erwartet {
  background: #FAF7F2 !important;
  color: #0a0a0a !important;
  padding: 80px 24px;
  text-align: center;
}
.az-erwartet-inner { max-width: 600px; margin: 0 auto; }
.az-erwartet-question {
  font-family: 'Syne', sans-serif !important;
  font-style: oblique 12deg !important;
  font-weight: 800 !important;
  font-size: clamp(28px, 6vw, 56px) !important;
  color: #E8192C !important;
  line-height: 1.2 !important;
  margin-bottom: 40px;
  letter-spacing: -0.01em !important;
  text-wrap: balance;
  text-transform: none !important;
}
.az-erwartet-headline {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.25em !important;
  color: #0a0a0a !important;
  text-transform: uppercase !important;
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}
.az-erwartet-headline::before, .az-erwartet-headline::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: rgba(232,25,44,0.4) !important;
}
.az-erwartet-headline::before { right: calc(100% + 12px); }
.az-erwartet-headline::after { left: calc(100% + 12px); }
.az-erwartet-list {
  list-style: none;
  margin: 0 auto 32px;
  max-width: 480px;
  text-align: left;
}
.az-erwartet-list li {
  font-size: 15px !important;
  line-height: 1.6 !important;
  padding: 16px 0;
  border-bottom: 1px solid rgba(232,25,44,0.12);
  font-weight: 500 !important;
  color: #0a0a0a !important;
}
.az-erwartet-list li:last-child { border-bottom: none; }
.az-erwartet-price {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #E8192C !important;
  margin: 32px 0 16px;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
}
@media (min-width: 1024px) {
  .az-erwartet { padding: 120px 48px; }
  .az-erwartet-list li { font-size: 17px !important; }
}

/* ============================================
   4. EINDRÜCKE (Schwarz, Karussell)
   ============================================ */
.az-eindruecke {
  background: #0a0a0a !important;
  color: #FFFFFF !important;
  padding: 80px 0 80px;
  text-align: center;
}
.az-eindruecke-label {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.25em !important;
  color: #FFD600 !important;
  text-transform: uppercase !important;
  margin-bottom: 16px;
  padding: 0 24px;
}
.az-eindruecke-title {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-style: italic !important;
  font-size: clamp(32px, 5vw, 56px) !important;
  color: #FFFFFF !important;
  margin-bottom: 48px;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  padding: 0 24px;
}
.az-eindruecke-title em { color: #FFD600 !important; }

/* Karussell mit horizontal scroll */
.az-eindruecke-carousel-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.az-eindruecke-carousel {
  display: flex;
  gap: 24px;
  animation: scroll-fotos 40s linear infinite;
  width: max-content;
  padding: 0 24px;
}
.az-eindruecke-carousel img {
  width: 360px !important;
  height: 270px !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  object-position: center 30% !important;
  border-radius: 8px !important;
  flex-shrink: 0 !important;
  max-width: none !important;
}
@keyframes scroll-fotos {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}
.az-eindruecke-cta {
  text-align: center;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .az-eindruecke { padding: 120px 0; }
  .az-eindruecke-carousel img { width: 480px !important; height: 360px !important; aspect-ratio: 4 / 3 !important; }
}

/* ============================================
   5. UNSERE FORMATE (Creme, 3-spaltig auf Desktop)
   ============================================ */
.az-formate {
  background: #FAF7F2 !important;
  color: #0a0a0a !important;
  padding: 40px 24px 80px;
}
.az-formate-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.az-formate-label {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.25em !important;
  color: #E8192C !important;
  text-transform: uppercase !important;
  margin-bottom: 16px;
}
.az-formate-title {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(32px, 5vw, 56px) !important;
  color: #0a0a0a !important;
  margin-bottom: 16px;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
}
.az-formate-title em { color: #E8192C !important; font-style: italic !important; }
.az-formate-subtitle {
  font-size: 16px !important;
  color: #555 !important;
  margin-bottom: 56px;
}
.az-formate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.az-format-card {
  background: #FFFFFF !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.az-format-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.az-format-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.az-format-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.az-format-card-pillars {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  color: #FFD600 !important;
  text-transform: uppercase !important;
  margin-bottom: 12px;
  background: #0a0a0a !important;
  padding: 6px 12px;
  border-radius: 999px;
  align-self: flex-start;
}
.az-format-card-title {
  font-family: 'Syne', sans-serif !important;
  font-style: normal !important;
  font-weight: 800 !important;
  font-size: 26px !important;
  color: #0a0a0a !important;
  line-height: 1.1 !important;
  margin-bottom: 16px;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
}
.az-format-card-desc {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
  color: #444 !important;
  margin-bottom: 20px;
  flex: 1;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.az-format-card-link {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: #E8192C !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  border-bottom: 2px solid #E8192C;
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 0.2s;
}
.az-format-card-link:hover { color: #c41524 !important; }
@media (min-width: 768px) {
  .az-formate-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
@media (min-width: 1024px) {
  .az-formate { padding: 120px 48px; }
  .az-formate-grid { gap: 32px; }
  .az-format-card-body { padding: 28px; }
  .az-format-card-title { font-size: 32px !important; }
}

/* ============================================
   6. MEHR AUSZEIT? (Creme, Community-Events)
   ============================================ */
.az-mehr {
  background: #FAF7F2 !important;
  color: #0a0a0a !important;
  padding: 80px 24px;
  text-align: center;
  border-top: 1px solid rgba(232,25,44,0.08);
}
.az-mehr-inner { max-width: 1100px; margin: 0 auto; }
.az-mehr-title {
  font-family: 'Syne', sans-serif !important;
  font-style: italic !important;
  font-weight: 800 !important;
  font-size: clamp(32px, 5vw, 56px) !important;
  color: #E8192C !important;
  line-height: 1.1 !important;
  margin-bottom: 12px;
}
.az-mehr-subtitle {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(18px, 3vw, 24px) !important;
  color: #0a0a0a !important;
  margin-bottom: 8px;
}
.az-mehr-tagline {
  font-style: italic !important;
  font-size: 13px !important;
  color: #888 !important;
  margin-bottom: 48px;
}
.az-mehr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.az-mehr-card {
  background: linear-gradient(135deg, #ffffff 0%, #faf7f2 100%) !important;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}
.az-mehr-card-date {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  color: #E8192C !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin-bottom: 8px;
}
.az-mehr-card-name {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 22px !important;
  color: #0a0a0a !important;
  margin-bottom: 8px;
}
.az-mehr-card-desc {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  color: #555 !important;
  line-height: 1.6 !important;
  text-transform: none !important;
}
.az-mehr-disclaimer {
  font-size: 12px !important;
  font-style: italic !important;
  color: #888 !important;
}
@media (min-width: 768px) {
  .az-mehr-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
@media (min-width: 1024px) {
  .az-mehr { padding: 120px 48px; }
}

/* ============================================
   7. NEWSLETTER + SOCIAL (Schwarz)
   ============================================ */
.az-newsletter {
  background: #0a0a0a !important;
  color: #FFFFFF !important;
  padding: 80px 24px;
  text-align: center;
}
.az-newsletter-inner { max-width: 600px; margin: 0 auto; }
.az-newsletter-label {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.25em !important;
  color: #FFD600 !important;
  text-transform: uppercase !important;
  margin-bottom: 16px;
}
.az-newsletter-title {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(32px, 5vw, 56px) !important;
  color: #FFFFFF !important;
  line-height: 1.1 !important;
  margin-bottom: 16px;
  letter-spacing: -0.02em !important;
}
.az-newsletter-title em { color: #FFD600 !important; font-style: italic !important; }
.az-newsletter-desc {
  font-size: 15px !important;
  color: #FAF7F2 !important;
  opacity: 0.8;
  margin-bottom: 32px;
}
.az-newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.az-newsletter-input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.05) !important;
  color: #FFFFFF !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  outline: none;
}
.az-newsletter-input::placeholder { color: rgba(255,255,255,0.5) !important; }
.az-newsletter-input:focus { border-color: #FFD600 !important; }
.az-newsletter-submit {
  background: #FFD600 !important;
  color: #0a0a0a !important;
  border: none;
  border-radius: 999px;
  padding: 16px 28px;
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  letter-spacing: 0.05em !important;
  cursor: pointer;
  text-transform: uppercase !important;
  transition: transform 0.2s;
}
.az-newsletter-submit:hover { transform: translateY(-2px); }
.az-newsletter-bonus {
  font-size: 12px !important;
  color: #FFD600 !important;
  margin-bottom: 40px;
}
.az-newsletter-divider {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  color: rgba(255,255,255,0.4) !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  margin-bottom: 24px;
  position: relative;
}
.az-newsletter-divider::before, .az-newsletter-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.15) !important;
}
.az-newsletter-divider::before { right: calc(50% + 30px); }
.az-newsletter-divider::after { left: calc(50% + 30px); }
.az-newsletter-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.az-newsletter-social-btn {
  background: rgba(255,255,255,0.08) !important;
  color: #FFFFFF !important;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: background 0.2s, transform 0.2s;
  border: 1px solid rgba(255,255,255,0.15);
}
.az-newsletter-social-btn:hover {
  background: #FFD600 !important;
  color: #0a0a0a !important;
  border-color: #FFD600 !important;
}
.az-newsletter-handle {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  color: #FFD600 !important;
  letter-spacing: 0.05em !important;
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .az-newsletter { padding: 120px 48px; }
}
@media (max-width: 600px) {
  .az-newsletter-form { flex-direction: column; }
  .az-newsletter-input, .az-newsletter-submit { width: 100%; }
}

/* ============================================
   8. STATS + PARTNER (Weiß)
   ============================================ */
.az-stats {
  background: #FFFFFF !important;
  color: #0a0a0a !important;
  padding: 80px 24px 60px;
  text-align: center;
}
.az-stats-inner { max-width: 900px; margin: 0 auto; }
.az-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 64px;
}
.az-stats-number {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(40px, 8vw, 88px) !important;
  color: #E8192C !important;
  line-height: 1 !important;
  margin-bottom: 8px;
  letter-spacing: -0.03em !important;
}
.az-stats-label {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(11px, 1.5vw, 14px) !important;
  color: #0a0a0a !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
}

/* Partner-Bereich */
.az-partner {
  background: #FFFFFF !important;
  padding: 60px 24px 100px;
  text-align: center;
}
.az-partner-label {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.3em !important;
  color: #888 !important;
  text-transform: uppercase !important;
  margin-bottom: 24px;
}
.az-partner-main {
  margin-bottom: 24px;
}
.az-partner-main img {
  height: 80px;
  margin: 0 auto 12px;
  filter: none;
  opacity: 1;
}
.az-partner-name {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 24px !important;
  color: #0a0a0a !important;
  margin-bottom: 8px;
}
.az-partner-desc {
  font-size: 14px !important;
  color: #555 !important;
  line-height: 1.6 !important;
  max-width: 520px;
  margin: 0 auto 48px;
}
.az-partner-divider {
  width: 80px;
  height: 2px;
  background: #E8192C !important;
  margin: 0 auto 48px;
  border: none;
}
.az-partner-sponsors-label {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.3em !important;
  color: #888 !important;
  text-transform: uppercase !important;
  margin-bottom: 32px;
}
/* Logo-Schleife */
.az-partner-carousel-wrap {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto 48px;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.az-partner-carousel {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: scroll-logos 30s linear infinite;
  width: max-content;
}
.az-partner-carousel img {
  height: 50px;
  filter: grayscale(1);
  opacity: 0.6;
  flex-shrink: 0;
  transition: filter 0.3s, opacity 0.3s;
}
.az-partner-carousel img:hover {
  filter: grayscale(0);
  opacity: 1;
}
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.az-partner-cta-text {
  font-size: 13px !important;
  color: #888 !important;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .az-stats { padding: 120px 48px 80px; }
  .az-partner { padding: 80px 48px 120px; }
  .az-partner-carousel img { height: 60px; }
}


/* ============================================
   V9.5 ADDITIONS — Mobile fixes, transitions, text-transform safety
   ============================================ */

/* Force-disable text-transform on body text & headlines (theme might inject uppercase) */
.az h1, .az h2, .az h3, .az h4, .az h5, .az h6,
.az p, .az li, .az em, .az strong, .az span.az-format-card-title,
.az .az-banner, .az .az-format-card-desc, .az .az-format-card-link,
.az .az-format-card-title, .az .az-mehr-card-desc, .az .az-mehr-card-name,
.az .az-erwartet-question, .az .az-erwartet-list li,
.az .az-comedy-title, .az .az-eindruecke-title, .az .az-formate-title,
.az .az-mehr-title, .az .az-newsletter-title, .az .az-hero-title {
  text-transform: none !important;
}

/* Strengthen button text colors — beats the .az a reset */
.az a.az-btn-yellow,
.az a.az-btn-yellow:visited,
.az a.az-btn-yellow:hover { color: #0a0a0a !important; }
.az a.az-btn-black,
.az a.az-btn-black:visited,
.az a.az-btn-black:hover { color: #FFD600 !important; }
.az a.az-btn-text,
.az a.az-btn-text:visited,
.az a.az-btn-text:hover { color: #FFD600 !important; }
.az a.az-format-card-link,
.az .az-format-card-link { color: #E8192C !important; }
.az a.az-format-card,
.az a.az-format-card:visited { color: inherit !important; }

/* Stats grid: 3 columns on tablet+ */
@media (min-width: 768px) {
  .az-stats-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
  }
}

/* Format-card title: keep em italic with oblique synthesis */
.az .az-format-card-title em {
  font-style: oblique 12deg !important;
  font-synthesis: style oblique !important;
  color: #FFD600 !important;
}

/* ===== FADE-IN ON SCROLL ===== */
.az-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.az-fade-in.az-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .az-fade-in,
  .az-fade-in.az-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Subtle hover feedback on cards */
.az-format-card { transition: transform 0.25s ease, box-shadow 0.25s ease !important; }
.az-format-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10) !important;
}



/* ============================================
   V9.6 — Acts-Pille in Comedy-Section
   ============================================ */
.az-acts-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 10px 20px;
  background: #FFD600 !important;
  color: #0a0a0a !important;
  border-radius: 999px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  text-transform: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  border: 2px solid transparent !important;
}
.az-acts-pill:hover,
.az-acts-pill:focus {
  background: transparent !important;
  color: #FFD600 !important;
  border-color: #FFD600 !important;
  transform: translateY(-2px);
}
.az-acts-pill .az-acts-arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}
.az-acts-pill:hover .az-acts-arrow {
  transform: translateX(4px);
}
@media (max-width: 600px) {
  .az-acts-pill {
    font-size: 13px !important;
    padding: 9px 16px;
    margin-top: 20px;
  }
}

/* ============================================
   V9.6 — Hamsa-Atmung (Logo-Pulsation, 4s loop)
   ============================================ */
@keyframes azBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.az-hero-logo {
  animation: azBreathe 4s ease-in-out infinite;
  transform-origin: center center;
}

/* ============================================
   V9.6 — Hero-Staffelung (1.2s choreography)
   ============================================ */
@keyframes azHeroLogoIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes azHeroSlideRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes azHeroSlideLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes azHeroSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes azHeroFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes azHeroPop {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.az-hero-logo {
  opacity: 0;
  animation: azHeroLogoIn 350ms cubic-bezier(0.22, 1, 0.36, 1) 0ms forwards,
             azBreathe 4s ease-in-out 1500ms infinite;
}
.az-hero-title {
  opacity: 0;
  animation: azHeroSlideUp 450ms cubic-bezier(0.22, 1, 0.36, 1) 200ms forwards;
}
.az-hero-formats {
  opacity: 0;
  animation: azHeroFade 500ms ease-out 700ms forwards;
}
.az-hero-cta,
.az-hero .az-btn-yellow {
  opacity: 0;
  animation: azHeroPop 500ms cubic-bezier(0.34, 1.56, 0.64, 1) 850ms forwards;
}

/* Reduced motion — kill all hero animations + breathing */
@media (prefers-reduced-motion: reduce) {
  .az-hero-logo,
  .az-hero-title,
  .az-hero-formats,
  .az-hero-cta,
  .az-hero .az-btn-yellow {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   4. NEUE SECTIONS (in V9.6 nicht enthalten, aus Live-Site)
============================================================ */

/* === "Das nächste Event" Sektion === */
.az-event {
  background: #FAF7F2 !important;
  color: #0a0a0a !important;
  padding: 80px 24px 40px;
}

.az-event-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.az-event-label {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.25em !important;
  color: #0a0a0a !important;
  text-transform: uppercase !important;
  margin-bottom: 8px;
}

.az-event-label .az-event-number {
  color: #E8192C !important;
  margin-left: 8px;
}

.az-event-vibe {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.2em !important;
  color: #E8192C !important;
  text-transform: uppercase !important;
  margin-bottom: 16px;
}

.az-event-title {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(36px, 6vw, 64px) !important;
  color: #0a0a0a !important;
  line-height: 1.05 !important;
  margin-bottom: 40px;
  letter-spacing: -0.025em !important;
}

.az-event-title em {
  font-style: italic !important;
  color: #FFD600 !important;
  background-color: #0a0a0a !important;
  padding: 0 12px;
}

.az-event-card {
  background: #FFFFFF !important;
  border: 2px solid #0a0a0a !important;
  padding: 32px 24px;
  margin-bottom: 32px;
  display: grid;
  gap: 32px;
}

.az-event-meta {
  display: grid;
  gap: 24px;
}

.az-event-meta-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.az-event-meta-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.az-event-meta-label {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  color: #888 !important;
  text-transform: uppercase !important;
  padding-top: 4px;
}

.az-event-meta-value {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #0a0a0a !important;
  line-height: 1.4 !important;
}

.az-event-meta-value a {
  color: #0a0a0a !important;
  border-bottom: 1px solid #0a0a0a;
  padding-bottom: 1px;
  transition: color 200ms ease, border-color 200ms ease;
}

.az-event-meta-value a:hover {
  color: #E8192C !important;
  border-bottom-color: #E8192C;
}

.az-event-desc {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #444 !important;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.az-event-vibes {
  background: #0a0a0a !important;
  color: #FAF7F2 !important;
  padding: 32px 24px;
  margin-bottom: 32px;
}

.az-event-vibes-label {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.25em !important;
  color: #FFD600 !important;
  text-transform: uppercase !important;
  margin-bottom: 16px;
}

.az-event-vibes-list {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-style: italic !important;
  font-size: clamp(24px, 4vw, 36px) !important;
  line-height: 1.1 !important;
  color: #FAF7F2 !important;
  margin-bottom: 16px;
}

.az-event-dj {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  color: rgba(250, 247, 242, 0.7) !important;
  font-style: italic !important;
}

/* Features 3-er Pillars (Open Air · Auszeit-Area · Kebap Auszeit!) */
.az-event-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.az-event-pillar {
  background: #FFFFFF !important;
  border: 1px solid rgba(10, 10, 10, 0.08);
  padding: 20px 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.az-event-pillar-num {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  color: #E8192C !important;
}

.az-event-pillar-text {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #0a0a0a !important;
}

.az-event-trust {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.2em !important;
  color: #0a0a0a !important;
  text-transform: uppercase !important;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.az-event-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.az-event-trust span::before {
  content: "✓";
  color: #E8192C;
}

.az-event-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.az-event-price {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 28px !important;
  color: #0a0a0a !important;
}

.az-event-price-small {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #888 !important;
}

.az-event-discount {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  color: #666 !important;
  line-height: 1.5 !important;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(10, 10, 10, 0.1);
}

@media (min-width: 768px) {
  .az-event { padding: 100px 48px; }
  .az-event-card { padding: 48px; }
  .az-event-pillars { grid-template-columns: repeat(3, 1fr); }
  .az-event-meta-row { grid-template-columns: 140px 1fr; }
}

@media (min-width: 1024px) {
  .az-event { padding: 140px 60px; }
}


/* ============================================================
   5. SITE-FOOTER
============================================================ */

.site-footer {
  background-color: #0a0a0a;
  color: rgba(250, 247, 242, 0.7);
  padding: 80px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
}

.footer-brand .footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: #FAF7F2;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
  margin-bottom: 4px;
}

.footer-claim {
  font-family: 'Syne', sans-serif;
  font-style: italic;
  font-size: 18px;
  color: #FAF7F2;
  margin-bottom: 24px;
}

.footer-email {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #FAF7F2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 2px;
  transition: border-color 200ms ease, color 200ms ease;
}

.footer-email:hover {
  border-bottom-color: #FFD600;
  color: #FFD600;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #FAF7F2 !important;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 15px;
  color: rgba(250, 247, 242, 0.7);
  transition: color 200ms ease;
}

.footer-col a:hover {
  color: #FFD600;
}

.footer-bottom {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13px;
  color: rgba(250, 247, 242, 0.5);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-legal a:hover {
  color: #FFD600;
}

@media (min-width: 768px) {
  .site-footer-inner {
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}


/* ============================================================
   6. TICKETS-MODAL (Rausgegangen-Widget-Embed)
============================================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: stretch;
  justify-content: center;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: modalFadeIn 250ms ease;
}

.modal-content {
  position: relative;
  z-index: 1;
  background-color: #FAF7F2;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  animation: modalSlideUp 400ms cubic-bezier(0.2, 0, 0, 1);
}

.modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  background-color: #FAF7F2;
}

.modal-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.modal-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 300;
  color: #0a0a0a;
  transition: color 200ms ease;
}

.modal-close:hover {
  color: #E8192C;
}

.modal-body {
  flex: 1;
  padding: 24px;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideUp {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (min-width: 768px) {
  .modal {
    padding: 40px;
    align-items: center;
  }
  
  .modal-content {
    max-width: 720px;
    height: auto;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  }
  
  .modal-header {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
}


/* ============================================================
   7. STICKY-BAR (unten am Bildschirm, nach Hero-Scroll)
============================================================ */

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: #0a0a0a;
  color: #FAF7F2;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 2px solid #FFD600;
  transform: translateY(0);
  transition: transform 300ms ease;
}

.sticky-bar.is-hidden {
  transform: translateY(100%);
}

.sticky-bar-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.sticky-bar-title {
  font-family: 'Syne', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 15px;
  color: #FAF7F2;
  letter-spacing: -0.01em;
}

.sticky-bar-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(250, 247, 242, 0.6);
  margin-top: 2px;
}

.sticky-bar-btn {
  flex-shrink: 0;
  background-color: #FFD600;
  color: #0a0a0a !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 200ms ease;
}

.sticky-bar-btn:hover {
  transform: translateY(-2px);
}

body.has-sticky-bar {
  padding-bottom: 72px;
}

@media (min-width: 768px) {
  .sticky-bar {
    bottom: 24px;
    right: 24px;
    left: auto;
    max-width: 380px;
    border-radius: 999px;
    border-top: none;
    border: 2px solid #FFD600;
    padding: 12px 12px 12px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  
  body.has-sticky-bar {
    padding-bottom: 0;
  }
}


/* ============================================================
   8. COOKIE-BANNER (Klaro-Stub)
============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 175;
  background-color: #0a0a0a;
  color: #FAF7F2;
  padding: 24px;
  transform: translateY(100%);
  transition: transform 400ms cubic-bezier(0.2, 0, 0, 1);
}

.cookie-banner[data-visible="true"] {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-banner-text a {
  color: #FFD600;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-banner button {
  padding: 10px 20px;
  border-radius: 999px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 200ms ease;
}

.cookie-btn-accept {
  background-color: #FFD600;
  color: #0a0a0a !important;
}

.cookie-btn-essential {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FAF7F2 !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-settings {
  background-color: transparent;
  color: #FFD600 !important;
  text-decoration: underline;
}

.cookie-banner button:hover {
  transform: translateY(-2px);
}


/* ============================================================
   9. UTILITIES
============================================================ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.no-scroll {
  overflow: hidden;
}

.text-center { text-align: center; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ============================================================
   10. ZUSÄTZLICHE LIVE-SITE KLASSEN
   (Auf der Live-Site neu, in V9.6 nicht enthalten)
============================================================ */

/* === HERO ERWEITERUNGEN === */
.az-hero-kicker {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  color: #FFD600 !important;
  text-transform: uppercase !important;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.az-hero-subline {
  font-family: 'DM Sans', sans-serif !important;
  font-size: clamp(15px, 2vw, 18px) !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.92) !important;
  line-height: 1.5 !important;
  margin-bottom: 32px;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.az-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
}

.az-hero-claim {
  font-family: 'Syne', sans-serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  color: rgba(255,255,255,0.75) !important;
  line-height: 1.4 !important;
  max-width: 44ch;
  margin: 32px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.az-hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 0.3em !important;
  color: rgba(255,255,255,0.6) !important;
  text-transform: uppercase !important;
  z-index: 3;
}

/* Hero CTA Buttons-Layout für Tablet+ */
@media (min-width: 640px) {
  .az-hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

/* Outline-Button für "Mehr erfahren" im Hero */
.az-btn-outline {
  display: inline-block;
  background: transparent !important;
  color: #FFFFFF !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  transition: all 200ms ease;
}

.az-btn-outline:hover {
  border-color: #FFFFFF !important;
  background: rgba(255,255,255,0.1) !important;
  transform: translateY(-2px);
}


/* === FORMAT CARDS ERWEITERUNGEN === */
.az-format-card-label {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  color: #E8192C !important;
  text-transform: uppercase !important;
  margin-bottom: 12px;
}

.az-format-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  list-style: none;
}

.az-format-card-features li {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: #444 !important;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.az-format-card-features li:last-child {
  border-bottom: none;
}

.az-format-card-features strong {
  color: #0a0a0a;
  font-weight: 600;
}


/* === EINDRÜCKE ERWEITERUNGEN === */
.az-eindruecke-subtitle {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,0.7) !important;
  max-width: 600px;
  margin: 0 auto 48px;
  padding: 0 24px;
}


/* === STATS NEUE STRUKTUR (4 Stats wie Live-Site) === */
.az-stats-section-label {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.25em !important;
  color: #888 !important;
  text-transform: uppercase !important;
  margin-bottom: 16px;
}

.az-stats-item-label {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
  color: #666 !important;
  line-height: 1.4 !important;
  max-width: 200px;
  margin: 0 auto;
}

.az-stats-item-label strong {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: #0a0a0a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  display: block;
  margin-bottom: 4px;
}

/* Stats 4 Spalten auf Desktop, 2 auf Tablet, 1 auf Mobile */
@media (min-width: 640px) {
  .az-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 900px) {
  .az-stats-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}


/* === HINTER AUSZEIT! (Über-Teaser auf Startseite) === */
.az-about {
  background: #FAF7F2 !important;
  color: #0a0a0a !important;
  padding: 80px 24px;
}

.az-about-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.az-about-tagline {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.2em !important;
  color: #E8192C !important;
  text-transform: uppercase !important;
  margin-bottom: 8px;
}

.az-about-label {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.25em !important;
  color: #888 !important;
  text-transform: uppercase !important;
  margin-bottom: 16px;
}

.az-about-title {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(32px, 5vw, 56px) !important;
  color: #0a0a0a !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 48px;
  max-width: 800px;
}

.az-about-title em {
  font-style: italic !important;
  color: #E8192C !important;
}

.az-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.az-about-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e8e6e0;
}

.az-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.az-about:hover .az-about-image img {
  transform: scale(1.03);
}

.az-about-text p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #333 !important;
  margin-bottom: 24px;
}

.az-about-text strong {
  font-weight: 700;
  color: #0a0a0a;
}

.az-about-quote {
  font-family: 'Syne', sans-serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  font-size: clamp(18px, 2.2vw, 22px) !important;
  line-height: 1.4 !important;
  color: #E8192C !important;
  padding: 24px 0;
  border-top: 1px solid rgba(232, 25, 44, 0.2);
  border-bottom: 1px solid rgba(232, 25, 44, 0.2);
  margin: 32px 0;
}

.az-btn-text-dark {
  display: inline-block;
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #0a0a0a !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  border-bottom: 2px solid #0a0a0a;
  padding-bottom: 4px;
  transition: color 200ms ease, border-color 200ms ease;
}

.az-btn-text-dark:hover {
  color: #E8192C !important;
  border-bottom-color: #E8192C;
}

@media (min-width: 768px) {
  .az-about { padding: 100px 48px; }
  .az-about-grid {
    grid-template-columns: 5fr 7fr;
    gap: 64px;
  }
}

@media (min-width: 1024px) {
  .az-about { padding: 140px 60px; }
}


/* ============================================================
   11. LAYOUT-FIXES (Iteration 2.1 — nach Sonias Feedback)
============================================================ */

/* === Fix 1: HERO KOMPAKTER (Action-Buttons above the fold) === */
.az-hero {
  padding: 32px 24px 48px !important;
  min-height: calc(100vh - 64px) !important;
}

.az-hero-content {
  max-width: 900px !important;
  padding: 16px 0 !important;
}

.az-hero-logo {
  width: 72px !important;
  margin-bottom: 16px !important;
}

.az-hero-kicker {
  margin-bottom: 12px !important;
  font-size: 12px !important;
}

.az-hero-title {
  font-size: clamp(56px, 10vw, 192px) !important;
  line-height: 1.0 !important;
  margin-bottom: 16px !important;
}

.az-hero-subline {
  margin-bottom: 16px !important;
  font-size: clamp(14px, 1.6vw, 16px) !important;
}

.az-hero-formats {
  margin-bottom: 20px !important;
  font-size: 14px !important;
}

.az-hero-cta {
  margin-bottom: 20px !important;
}

.az-hero-claim {
  margin-top: 20px !important;
  padding-top: 16px !important;
  font-size: 14px !important;
}

.az-hero-scroll {
  bottom: 16px !important;
  font-size: 10px !important;
}

/* Auf Desktop (große Bildschirme) noch kompakter */
@media (min-width: 1024px) and (min-height: 800px) {
  .az-hero {
    padding: 48px 24px 64px !important;
  }
  .az-hero-logo {
    width: 88px !important;
  }
  .az-hero-title {
    font-size: clamp(40px, 6.5vw, 80px) !important;
  }
}


/* === Fix 2: FORMAT-CARDS SEKTION ZENTRIERT === */
.az-formate-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.az-formate-title {
  text-align: center !important;
}

.az-formate-label,
.az-formate-subtitle {
  text-align: center !important;
}

.az-formate-grid {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  justify-content: center !important;
}


/* === Fix 3: IN ZAHLEN VIBES-TEXT SCHMALER (kein 4-zeiliger Umbruch) === */
.az-stats-item-label {
  max-width: 240px !important;
  font-size: 14px !important;
}


/* ============================================================
   12. SUBPAGE STYLES (Iteration 3-11)
============================================================ */

/* === SUBPAGE-HERO (kleiner als Startseiten-Hero) === */
.az-subhero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 24px 48px;
  background: #0a0a0a;
  color: #FAF7F2;
  overflow: hidden;
}

.az-subhero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
}

.az-subhero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 100%);
  z-index: 2;
}

.az-subhero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  text-align: left;
}

.az-subhero-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #FFD600;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.az-subhero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 10vw, 192px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #FAF7F2;
}

.az-subhero-title em {
  font-style: italic;
  color: #FFD600;
}

.az-subhero-subline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.5;
  color: rgba(250,247,242,0.85);
  max-width: 60ch;
  margin-bottom: 28px;
}

.az-subhero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(250,247,242,0.8);
  text-transform: uppercase;
}

.az-subhero-meta span {
  display: inline-flex;
  align-items: center;
}

.az-subhero-meta span::before {
  content: "·";
  margin-right: 8px;
  color: #FFD600;
  font-size: 16px;
}

.az-subhero-meta span:first-child::before {
  content: none;
}

/* Mobile: USPs vertikal stapeln, keine Bullets */
@media (max-width: 767px) {
  .az-subhero-meta {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .az-subhero-meta span::before {
    display: none;
  }
}

/* === FAQ-SEKTION === */
.az-faq {
  background: #FAF7F2;
  padding: 80px 24px;
}

.az-faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.az-faq-label {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}

.az-faq-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  text-align: center;
}

.az-faq-title em {
  font-style: italic;
  color: #E8192C;
}

.az-faq-item {
  border-bottom: 1px solid rgba(10,10,10,0.1);
}

.az-faq-item:first-child {
  border-top: 1px solid rgba(10,10,10,0.1);
}

.az-faq-question {
  width: 100%;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.4;
  color: #0a0a0a;
  padding: 24px 48px 24px 0;
  position: relative;
  transition: color 200ms ease;
  background: none;
  border: none;
  cursor: pointer;
}

.az-faq-question::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 300;
  color: #E8192C;
  transition: transform 300ms ease;
}

.az-faq-item[data-open="true"] .az-faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.az-faq-question:hover {
  color: #E8192C;
}

.az-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.az-faq-item[data-open="true"] .az-faq-answer {
  max-height: 800px;
  padding: 0 0 24px 0;
}

/* === DREI WERTE (Über-Seite) === */
.az-values {
  background: #FAF7F2;
  padding: 80px 24px;
}

.az-values-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.az-values-label {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}

.az-values-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  text-align: center;
}

.az-values-title em {
  font-style: italic;
  color: #E8192C;
}

.az-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.az-value-card {
  background: #FFFFFF;
  border: 2px solid #0a0a0a;
  padding: 32px 24px;
  text-align: left;
}

.az-value-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #E8192C;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.az-value-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
  color: #0a0a0a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.az-value-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

@media (min-width: 768px) {
  .az-values-grid { grid-template-columns: repeat(3, 1fr); }
}

/* === BIOGRAFIE-SEKTION (Über) === */
.az-bio {
  background: #FAF7F2;
  padding: 80px 24px;
}

.az-bio-inner {
  max-width: 800px;
  margin: 0 auto;
}

.az-bio-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.az-bio-text strong {
  font-weight: 700;
  color: #0a0a0a;
}

.az-bio-quote {
  font-family: 'Syne', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.4;
  color: #E8192C;
  padding: 32px 0;
  border-top: 1px solid rgba(232, 25, 44, 0.2);
  border-bottom: 1px solid rgba(232, 25, 44, 0.2);
  margin: 32px 0;
}

/* === CTA-BLOCK === */
.az-cta-block {
  background: #0a0a0a;
  color: #FAF7F2;
  padding: 80px 24px;
  text-align: center;
}

.az-cta-block-inner {
  max-width: 800px;
  margin: 0 auto;
}

.az-cta-block-label {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #FFD600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.az-cta-block-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  color: #FAF7F2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.az-cta-block-title em {
  font-style: italic;
  color: #FFD600;
}

.az-cta-block-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.5;
  color: rgba(250,247,242,0.7);
  margin-bottom: 32px;
}

/* === FIRMEN-MODULE === */
.az-firmen-modules {
  background: #FAF7F2;
  padding: 80px 24px;
}

.az-firmen-modules-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.az-firmen-modules-label {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}

.az-firmen-modules-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  text-align: center;
}

.az-firmen-modules-title em {
  font-style: italic;
  color: #E8192C;
}

.az-firmen-module {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
  align-items: center;
}

.az-firmen-module:last-child {
  margin-bottom: 0;
}

.az-firmen-module-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8e6e0;
}

.az-firmen-module-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.az-firmen-module-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  color: #FFD600;
  -webkit-text-stroke: 2px #0a0a0a;
  margin-bottom: 16px;
}

.az-firmen-module-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #E8192C;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.az-firmen-module-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  color: #0a0a0a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.az-firmen-module-title em {
  font-style: italic;
  color: #E8192C;
}

.az-firmen-module-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.az-firmen-module-features {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  list-style: none;
}

.az-firmen-module-features li::before {
  content: "✓ ";
  color: #E8192C;
  font-weight: 700;
  margin-right: 4px;
}

@media (min-width: 768px) {
  .az-firmen-module {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .az-firmen-module:nth-child(even) .az-firmen-module-image {
    order: 2;
  }
}

/* === KONTAKT-FORM === */
.az-form-section {
  background: #FAF7F2;
  padding: 80px 24px;
}

.az-form-inner {
  max-width: 700px;
  margin: 0 auto;
}

.az-form-row {
  margin-bottom: 24px;
}

.az-form-label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.az-form-input,
.az-form-textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #0a0a0a;
  background: #FFFFFF;
  border: 2px solid rgba(10,10,10,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  transition: border-color 200ms ease;
}

.az-form-input:focus,
.az-form-textarea:focus {
  border-color: #E8192C;
  outline: none;
}

.az-form-textarea {
  min-height: 140px;
  resize: vertical;
}

.az-form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.az-form-radio-option {
  flex: 1;
  min-width: 140px;
  position: relative;
}

.az-form-radio-option input {
  position: absolute;
  opacity: 0;
}

.az-form-radio-option label {
  display: block;
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #0a0a0a;
  background: #FFFFFF;
  border: 2px solid rgba(10,10,10,0.1);
  border-radius: 8px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 200ms ease;
  text-transform: uppercase;
}

.az-form-radio-option input:checked + label {
  background: #0a0a0a;
  color: #FFD600;
  border-color: #0a0a0a;
}

.az-form-radio-option label:hover {
  border-color: #E8192C;
}

.az-form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.az-form-checkbox-row input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.az-form-checkbox-row label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  cursor: pointer;
}

.az-form-checkbox-row a {
  color: #E8192C;
  text-decoration: underline;
}

.az-form-submit {
  background: #FFD600;
  color: #0a0a0a;
  border: none;
  padding: 16px 40px;
  border-radius: 999px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 200ms ease, background-color 200ms ease;
  display: inline-block;
}

.az-form-submit:hover {
  transform: translateY(-2px);
  background: #0a0a0a;
  color: #FFD600;
}

.az-form-success {
  background: #FFD600;
  border: 2px solid #0a0a0a;
  padding: 24px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #0a0a0a;
  margin-bottom: 32px;
  display: none;
}

.az-form-error {
  background: #E8192C;
  color: #FAF7F2;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  margin-bottom: 24px;
  display: none;
}

/* === LEGAL-CONTAINER (Pflichtseiten) === */
.az-legal {
  background: #FAF7F2;
  padding: 64px 24px 80px;
  min-height: calc(100vh - 64px);
}

.az-legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.az-legal-label {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #E8192C;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.az-legal-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  color: #0a0a0a;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.az-legal-content h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 24px);
  color: #0a0a0a;
  margin-top: 40px;
  margin-bottom: 12px;
}

.az-legal-content h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #0a0a0a;
  margin-top: 24px;
  margin-bottom: 8px;
}

.az-legal-content p,
.az-legal-content li {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

.az-legal-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}

.az-legal-content a {
  color: #E8192C;
  text-decoration: underline;
}

.az-legal-content strong {
  font-weight: 700;
  color: #0a0a0a;
}

.az-legal-meta {
  font-size: 13px;
  color: #888;
  border-top: 1px solid rgba(10,10,10,0.1);
  padding-top: 24px;
  margin-top: 48px;
}



/* ============================================================
   13. COOKIE-SETTINGS-MODAL (DSGVO-Konfiguration)
============================================================ */
.cookie-settings-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: cookieModalFadeIn 200ms ease-out;
}

@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.cookie-settings-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  cursor: pointer;
}

.cookie-settings-content {
  position: relative;
  z-index: 1;
  background: #FAF7F2;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 2px solid #0a0a0a;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(10,10,10,0.1);
}

.cookie-settings-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 24px);
  color: #0a0a0a;
  margin: 0;
  letter-spacing: -0.01em;
}

.cookie-settings-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #0a0a0a;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-settings-close:hover {
  color: #E8192C;
}

.cookie-settings-body {
  padding: 20px 24px;
}

.cookie-settings-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.cookie-setting-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(10,10,10,0.08);
}

.cookie-setting-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cookie-setting-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 8px;
  user-select: none;
}

.cookie-setting-toggle input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #E8192C;
  flex-shrink: 0;
}

.cookie-setting-toggle input:disabled {
  cursor: default;
  opacity: 0.6;
}

.cookie-setting-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #0a0a0a;
}

.cookie-setting-name em {
  font-style: italic;
  color: #888;
  font-weight: 400;
  font-size: 13px;
}

.cookie-setting-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0 0 0 30px;
}

.cookie-settings-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 24px;
  border-top: 1px solid rgba(10,10,10,0.1);
  background: rgba(10,10,10,0.03);
}

.cookie-settings-footer button {
  flex: 1;
  min-width: 130px;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid #0a0a0a;
  transition: all 200ms ease;
}

.cookie-settings-footer .cookie-btn-essential {
  background: transparent;
  color: #0a0a0a !important;
}

.cookie-settings-footer .cookie-btn-essential:hover {
  background: rgba(10,10,10,0.05);
}

.cookie-settings-footer .cookie-btn-settings {
  background: #0a0a0a;
  color: #FAF7F2;
}

.cookie-settings-footer .cookie-btn-settings:hover {
  background: #333;
}

.cookie-settings-footer .cookie-btn-accept {
  background: #FFD600;
  color: #0a0a0a;
  border-color: #FFD600;
}

.cookie-settings-footer .cookie-btn-accept:hover {
  background: #FFC700;
}

@media (max-width: 480px) {
  .cookie-settings-footer button {
    min-width: 100%;
  }
}



/* ============================================================
   14. ITERATION 13 — HERO + FORMAT-CARDS REFINEMENTS
============================================================ */

/* Hamsa-Symbol größer */
.az-hero-logo {
  width: 180px !important;
  height: auto;
  display: block;
  margin: 0 auto 24px;
}

@media (max-width: 640px) {
  .az-hero-logo {
    width: 140px !important;
  }
}

/* Hero-Headline (Subline als H1, dezent gestaltet) */
/* Format-Sektion: Texte links, Cards-Wrapper zentriert */
.az-formate-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.az-formate-label,
.az-formate-title,
.az-formate-subtitle {
  text-align: left !important;
}

.az-formate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  justify-items: center;
  margin: 48px auto 0;
  max-width: 1100px;
}

.az-format-card {
  max-width: 520px;
  width: 100%;
}

@media (min-width: 900px) {
  .az-formate-grid {
    grid-template-columns: 1fr 1fr;
    justify-items: stretch;
  }
  .az-format-card { max-width: none; }
}

/* Format-Cards: erweiterte Inhalte */
.az-format-card-meta {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #0a0a0a;
  margin-bottom: 6px;
  line-height: 1.4;
}

.az-format-card-age {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.4;
}

.az-format-card-features li {
  margin-bottom: 14px;
  line-height: 1.55;
  list-style: none;
}

.az-format-card-features li strong {
  display: block;
  color: #0a0a0a;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.az-format-card-features li span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #555;
}

/* Pillars-Detail (Subpages: erweiterte USP-Darstellung) */
.az-event-pillars-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .az-event-pillars-detail {
    grid-template-columns: repeat(3, 1fr);
  }
}

.az-event-pillars-detail .az-event-pillar {
  background: #FFFFFF;
  border: 2px solid #0a0a0a;
  padding: 28px 24px;
  display: block;
  text-align: left;
}

.az-event-pillars-detail .az-event-pillar-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #E8192C;
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 12px;
}

.az-event-pillars-detail .az-event-pillar-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  color: #0a0a0a;
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.az-event-pillars-detail .az-event-pillar-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #444;
}



/* ============================================================
   15. ALIAS-REGELN für EN-Versionen
   (EN nutzt: .az-hero-symbol statt .az-hero-logo,
              .az-formate-card statt .az-format-card)
============================================================ */

.az-hero-symbol {
  width: 180px !important;
  height: auto;
  display: block;
  margin: 0 auto 24px;
}

@media (max-width: 640px) {
  .az-hero-symbol {
    width: 140px !important;
  }
}

/* EN Format-Cards: gleiche Stile wie DE */
.az-formate-card {
  max-width: 520px;
  width: 100%;
}

.az-formate-card-content .az-formate-card-meta {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #0a0a0a;
  margin-bottom: 6px;
  line-height: 1.4;
}

.az-formate-card-content .az-formate-card-age {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.4;
}

.az-formate-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.az-formate-card-features li {
  margin-bottom: 14px;
  line-height: 1.55;
  list-style: none;
}

.az-formate-card-features li strong {
  display: block;
  color: #0a0a0a;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.az-formate-card-features li span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #555;
}



/* ============================================================
   16. ACCESSIBILITY — Skip-to-Content + Focus-States
============================================================ */

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: #FFD600;
  color: #0a0a0a;
  padding: 12px 24px;
  z-index: 9999;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid #0a0a0a;
  transition: top 200ms ease;
}

.skip-to-content:focus {
  top: 0;
  outline: 3px solid #E8192C;
  outline-offset: 2px;
}

/* Sichtbare Focus-States für alle interaktiven Elemente */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #FFD600;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Bei dunklen Hintergründen: Rot statt Gelb */
.site-header a:focus-visible,
.nav-mobile a:focus-visible,
.site-footer a:focus-visible,
.sticky-bar a:focus-visible {
  outline-color: #E8192C;
}

/* visually-hidden Utility-Klasse */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ============================================================
   EVENT-RECAP — "Eindrücke des letzten Events" mit YouTube-Video
   ============================================================ */
.az-recap {
  background: #0a0a0a;
  color: #FAF7F2;
  padding: 80px 24px;
}
.az-recap-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.az-recap-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #FFD600;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.az-recap-title {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-style: italic;
  font-size: clamp(36px, 5.5vw, 72px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em;
  color: #FAF7F2;
  margin-bottom: 40px;
}
.az-recap-title em {
  font-style: italic;
  color: #FFD600;
}
.az-recap-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.az-recap-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (min-width: 768px) {
  .az-recap { padding: 100px 48px; }
}
@media (min-width: 1024px) {
  .az-recap { padding: 120px 60px; }
}

/* ============================================================
   FIRMEN — Eindrücke (Galerie + YouTube)
   ============================================================ */
.az-firmen-impressions {
  background: #0a0a0a;
  color: #FAF7F2;
  padding: 80px 24px;
}
.az-firmen-impressions-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.az-firmen-impressions-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #FFD600;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.az-firmen-impressions-title {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-style: italic;
  font-size: clamp(32px, 5vw, 64px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em;
  color: #FAF7F2;
  margin-bottom: 16px;
}
.az-firmen-impressions-title em {
  font-style: italic;
  color: #FFD600;
}
.az-firmen-impressions-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.5;
  color: rgba(250, 247, 242, 0.85);
  max-width: 60ch;
  margin: 0 auto 40px;
}
.az-firmen-video {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 48px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.az-firmen-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.az-firmen-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.az-firmen-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}
@media (min-width: 600px) {
  .az-firmen-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .az-firmen-impressions { padding: 120px 60px; }
  .az-firmen-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* ============================================================
   STICKY BAR — Close Button
   ============================================================ */
.sticky-bar-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0a0a0a;
  color: #FFD600;
  border: 2px solid #FFD600;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 10;
  transition: transform 200ms ease, background 200ms ease;
}
.sticky-bar-close:hover {
  background: #FFD600;
  color: #0a0a0a;
  transform: scale(1.1);
}
.sticky-bar-close:focus-visible {
  outline: 2px solid #FFD600;
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .sticky-bar-close {
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    font-size: 16px;
  }
}

/* === HERO HEADLINE FINAL OVERRIDE === */
main.az section.az-hero h1.az-hero-headline,
.az-hero-headline {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(48px, 7vw, 128px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.03em !important;
  color: #FAF7F2 !important;
  max-width: 800px !important;
  margin: 16px auto 24px !important;
  text-align: center !important;
}

main.az section.az-hero h1.az-hero-headline em,
.az-hero-headline em {
  font-style: italic !important;
  color: #FFD600 !important;
  font-weight: 800 !important;
}
