:root {
  color-scheme: light !important;
  --clr-bg:        #FAF8F5;
  --clr-surface:   #FFFFFF;
  --clr-ink:       #161513;
  --clr-muted:     #4A4744;
  --clr-border:    rgba(0, 0, 0, 0.08);
  --clr-rule:      rgba(0, 0, 0, 0.08);
  --clr-white:     #FFFFFF;
  --clr-accent:    #BA5D45;

  --ff-instrument: 'Instrument Sans', 'Söhne', 'Sohne', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
  --ff-head: var(--ff-instrument);
  --ff-sans: var(--ff-instrument);

  --max-w:        1260px;
  --site-padding: 2.5rem;
  --dur:          150ms;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--ff-instrument) !important;
}

html {
  color-scheme: light !important;
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 64px;
  background-color: #FAF8F5 !important;
  color: #161513 !important;
  font-family: var(--ff-instrument) !important;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

body {
  color-scheme: light !important;
  font-family: var(--ff-instrument) !important;
  background-color: #FAF8F5 !important;
  color: #161513 !important;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; font-family: var(--ff-instrument) !important; }
ul  { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6, p, button, input, select, textarea, span, label {
  font-family: var(--ff-instrument) !important;
}
h1, h2, h3, h4 {
  font-family: var(--ff-sans);
  font-weight: 700;
  line-height: 1.18;
  color: #FFFFFF;
}a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 700;
  line-height: 1.18;
  color: var(--clr-ink);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-family: var(--ff-head); font-weight: 700; }
h4 { font-size: 1.15rem; font-family: var(--ff-head); font-weight: 700; }

em, i, dfn, cite { font-style: normal; }

.link-editorial {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.link-editorial:hover {
  color: #000;
}

/* ── LAYOUT & SECTIONS ───────────────────────────────────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 2rem 3.5rem 2rem;
}

section {
  scroll-margin-top: 64px;
  border-bottom: none;
  box-sizing: border-box;
}

/* ── SECTION COLOR BLOCKS (BRIGHTON POP & STREET ART) ────────── */
#hero {
  background-color: #FAF8F5 !important;
  color: #2C2A29 !important;
}

.section-header {
  margin-bottom: 1.8rem;
}

.section-number {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-deck {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--clr-muted);
  max-width: 54ch;
  margin-top: 1.2rem;
  line-height: 1.65;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  cursor: pointer;
  border: 1px solid var(--clr-border);
  background: transparent;
  color: var(--clr-ink);
  border-radius: 24px;
  transition: background var(--dur) ease, color var(--dur) ease, border-color var(--dur) ease, transform 120ms ease;
}

.btn-primary {
  background: var(--clr-ink);
  color: var(--clr-white);
}

.btn-primary:hover {
  background: #333333;
  color: var(--clr-white);
}

.btn-outline:hover {
  background: var(--clr-ink);
  color: var(--clr-white);
}

.btn-whatsapp {
  background: var(--clr-ink);
  color: var(--clr-white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--clr-ink);
}

.btn-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #FFFFFF;
}

.btn-instagram {
  background: transparent;
  color: var(--clr-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--clr-border);
}

.btn-instagram:hover {
  background: var(--clr-ink);
  color: var(--clr-white);
}

/* ALWAYS VISIBLE STICKY TOP NAVBAR */
#main-nav,
.main-nav {
  position: sticky !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.94) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

#main-nav .nav-logo,
#main-nav .logo-text,
#main-nav .nav-links a,
#main-nav .nav-link,
#main-nav .lang-btn,
#main-nav .nav-cta,
#main-nav .nav-ig-link {
  color: #22201D !important;
}

.nav-inner {
  max-width: var(--max-w) !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.section-inner,
.site-container {
  max-width: var(--max-w) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--site-padding) !important;
  padding-right: var(--site-padding) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.nav-logo {
  font-family: var(--ff-sans);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #22201D !important;
  transition: color var(--dur) ease;
}

.nav-logo:hover {
  color: #C89660 !important;
  text-decoration: none;
}

.logo-dot {
  color: #C89660;
  font-weight: 700;
  font-family: var(--ff-sans);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  color: #22201D !important;
  opacity: 0.9 !important;
  transition: color var(--dur) ease, opacity var(--dur) ease, background var(--dur) ease;
}

.nav-links a:hover {
  color: #C89660 !important;
  opacity: 1 !important;
  text-decoration: none;
}

/* OBVIOUS PRIMARY NAVIGATION ACTION BUTTON */
.nav-links a.nav-cta-btn {
  background: #C89660 !important;
  color: #161513 !important;
  font-weight: 700 !important;
  padding: 0.42rem 1.15rem !important;
  border-radius: 20px !important;
  opacity: 1 !important;
  box-shadow: 0 4px 14px rgba(200, 150, 96, 0.28) !important;
  transition: all 200ms ease !important;
}

.nav-links a.nav-cta-btn:hover {
  background: #D8A670 !important;
  color: #161513 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(200, 150, 96, 0.38) !important;
}

/* HERO INLINE EDITORIAL BRAND BUTTON HOVER EFFECT */
.hero-inline-pill:hover {
  background: #D4C5AE !important;
  color: #161513 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 14px rgba(197, 181, 158, 0.4) !important;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-ig-link {
  display: flex;
  align-items: center;
  color: #22201D !important;
  opacity: 0.9 !important;
  transition: color var(--dur) ease, opacity var(--dur) ease;
}

.nav-ig-link:hover {
  color: #C89660 !important;
  opacity: 1 !important;
}
  color: #C0392B;
}

.lang-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.85rem;
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #FFFFFF;
}

.lang-opt {
  color: rgba(255, 255, 255, 0.6);
}

.lang-opt.active {
  color: #FFFFFF;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lang-sep {
  color: rgba(255, 255, 255, 0.3);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
}

.mobile-menu {
  display: none;
  padding: 1.2rem 1.5rem;
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.85rem; }
.mobile-menu a { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: #FFFFFF; }

/* SECTION DIVIDERS & UNIFIED HERO BACKGROUND */
section {
  background-color: #111111 !important;
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
}

/* ── HERO ── */
#hero {
  padding-top: 64px;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #111111 !important;
  color: #FFFFFF !important;
  border-top: none;
}

.hero-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4.5rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9C4A2B; /* rich terracotta accent */
  margin-bottom: 1.4rem;
}

.hero-text h1,
.hero-serif-title {
  font-family: var(--ff-sans);
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #181716;
  margin-bottom: 1.2rem;
}

.hero-lead-text {
  font-family: var(--ff-sans);
  font-size: 1.08rem;
  font-weight: 400;
  color: #444444;
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 48ch;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-bullets li {
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  color: #333333;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.6;
}

.hero-bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #9C4A2B;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ── HERO SYNCHRONIZED FLOURISH ANIMATION (SNAPPY 0.35s IN SYNC) ── */
.hero-anim-kicker {
  opacity: 0;
  animation: heroFadeIn 300ms ease-out forwards;
}

.hero-anim-title {
  opacity: 0;
  animation: heroSlideInLeft 380ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-anim-subquestion,
.hero-anim-bullets,
.hero-anim-actions {
  opacity: 0;
  animation: heroFadeUp 500ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 2500ms; /* Fade in buttons smoothly right after "Ja." appears */
}

/* ── HERO SEQUENTIAL SENTENCE APPEARANCE ── */
#hero,
#hero-heading,
.hero-sentence-block,
.hero-sentence {
  font-family: var(--ff-instrument) !important;
  letter-spacing: -0.02em;
}

.hero-sentence-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  text-align: left !important;
  gap: 0.35rem;
  font-family: var(--ff-instrument) !important;
}

.hero-sentence {
  display: block;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  font-family: var(--ff-instrument) !important;
}

#hero {
  background-color: #FAF8F5 !important;
  color: #2C2A29 !important;
}

.hero-s1 {
  color: #F4F0E8 !important;
}

.hero-s2 {
  color: #B686F5 !important;
}

.hero-s3 {
  color: #F4F0E8 !important;
  font-style: normal !important;
}

.hero-s4 {
  color: #F4F0E8 !important;
  font-style: normal !important;
  font-weight: 700;
}

/* ── REFINED HERO EDITORIAL BUTTONS ── */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.32) !important;
  border-radius: 40px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.hero-btn-primary:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: #FFFFFF !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  border-radius: 40px;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-designer-primary:hover {
  background: #403C39 !important;
  color: #FAF8F5 !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(44, 42, 41, 0.25) !important;
}

.btn-designer-secondary:hover {
  background: rgba(44, 42, 41, 0.06) !important;
  border-color: #2C2A29 !important;
  color: #2C2A29 !important;
  transform: translateY(-2px);
}

.designer-card:hover {
  transform: scale(1.03) rotate(0deg) !important;
  z-index: 10 !important;
  box-shadow: 0 32px 85px rgba(0, 0, 0, 0.18) !important;
}

@keyframes heroSentenceReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

/* SETH GODIN STYLE FRAMELESS PORTRAIT */
.hero-portrait {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: heroFadeUp 380ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.portrait-frameless {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4/5;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: none;
  background: transparent;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.portrait-frameless img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  border: none;
  box-shadow: none;
}

/* SINGLE-LINE COMPACT GLASSMORPHISM CAPSULE BADGE */
.glass-caption-bar {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(17, 17, 17, 0.85) !important;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  padding: 0.35rem 0.75rem;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: #FFFFFF !important;
  letter-spacing: 0.02em;
  z-index: 5;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── SIMPLE ABOUT SECTION (POLISHED EDITORIAL DESIGN) ────────── */
#about {
  padding: 0;
}

.simple-about-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}

/* FLOATING QUOTE PILL TAG UNDER PHOTO */
.bio-quote-pill-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.bio-quote-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 0.55rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  max-width: 100%;
}

.bio-quote-pill:hover {
  transform: translateY(-2px);
  border-color: #9C4A2B;
  box-shadow: 0 6px 20px rgba(17, 17, 17, 0.07);
}

.pill-icon {
  font-size: 0.95rem;
}

.pill-quote-text {
  font-family: var(--ff-sans) !important;
  font-size: 0.98rem;
  font-style: normal;
  color: #D0CEC7 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
  transition: opacity 250ms ease;
}

.pill-source-tag {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: #9C4A2B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bio-texte-expand-link {
  background: transparent;
  border: none;
  padding: 0;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: #777777;
  cursor: pointer;
  transition: color 150ms ease;
}

.bio-texte-expand-link:hover {
  color: #181716;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-portrait-col .portrait-frameless {
  max-width: 280px;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.07);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.about-text-col {
  display: flex;
  flex-direction: column;
}

.section-badge {
  display: none !important;
}

.about-lead {
  font-family: var(--ff-sans);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
  color: #FFFFFF !important;
  border-left: 3px solid #C0392B;
  padding-left: 1.4rem;
  margin-bottom: 2rem;
}

.bio-text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.bio-abstract-lead,
.bio-abstract-body {
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  line-height: 1.8;
  color: #D0CEC7 !important;
  font-weight: 400;
}

.link-editorial {
  color: #C0392B !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 150ms ease;
}

.link-editorial:hover {
  color: #FFFFFF !important;
}

@media (max-width: 860px) {
  .simple-about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-portrait-col .portrait-frameless {
    max-width: 240px;
    margin: 0 auto;
  }
}

.bio-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* EDITORIAL MARGIN CARD FOR SUBSTACK ARTICLE */
.editorial-margin-card {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  color: #FFFFFF !important;
}

.margin-card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  overflow: hidden;
  background: #1C1C1C !important;
}

.margin-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.margin-card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--clr-ink);
  color: var(--clr-white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
}

/* SUBTLE PHOTO CREDIT FOOTNOTE OVERLAY */
.photo-credit-micro {
  position: absolute;
  bottom: 6px;
  right: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.62rem;
  font-family: var(--ff-sans);
  padding: 0.2rem 0.5rem;
  backdrop-filter: blur(4px);
  border-radius: 2px;
}

.photo-credit-micro a {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.margin-card-content {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.margin-card-title {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  line-height: 1.3;
}

.margin-card-quote {
  font-family: var(--ff-head);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--clr-ink);
  border-left: 2px solid var(--clr-border);
  padding-left: 0.8rem;
  margin: 0.3rem 0;
  font-style: normal;
}

.margin-card-btn {
  width: 100%;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.75rem;
  margin-top: 0.4rem;
}

.bio-facts {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  border-top: 1px solid var(--clr-rule);
  padding-top: 1.8rem;
}

.bio-fact dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-muted);
  margin-bottom: 0.4rem;
}

.bio-fact dd {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--clr-ink);
}

/* ── FORMATE & ANGEBOTE — SEAMLESS EDITORIAL FLOW ───────────── */
.pillars-editorial-flow {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--clr-border);
}

.pillar-block {
  padding: 4rem 0;
  border-bottom: 1px solid var(--clr-rule);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pillar-header-row {
  display: flex;
  align-items: baseline;
  gap: 2.5rem;
}

.pillar-num-badge {
  font-family: var(--ff-sans);
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-ink);
  line-height: 1;
}

.pillar-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pillar-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-muted);
}

.pillar-title-group h3 {
  font-size: 2rem;
  line-height: 1.25;
}

.pillar-body-content {
  padding-left: 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 68ch;
}

.pillar-action {
  margin-top: 0.8rem;
}

.moderation-subtle-note {
  font-size: 0.95rem;
  color: var(--clr-muted);
  border-left: 2px solid var(--clr-border);
  padding-left: 1rem;
  margin-top: 0.4rem;
}

.moderation-subtle-note em {
  color: var(--clr-ink);
  font-weight: 600;
  font-style: normal;
}

/* ── COMPACT HORIZONTAL 1-ROW SLIDING EPISODES BANNER TICKER ── */
.episodes-horizontal-banner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.banner-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--clr-rule);
  padding-bottom: 0.5rem;
}

/* ── 3-COLUMNS MINIMALIST FORMAT OVERVIEW MENU ───────────────── */
.formats-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  margin-top: 3rem;
}

.format-tile-card {
  border-top: none;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.2rem;
  transition: transform 200ms ease;
}

.format-tile-card:hover {
  transform: translateY(-2px);
}

/* ── ART-GALLERY EXHIBITION CARDS ───────────────────────────── */
.gallery-exhibition-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 250ms ease, border-color 250ms ease;
  position: relative;
  overflow: hidden;
  color: #FFFFFF !important;
}

.gallery-exhibition-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
  border-color: #9C4A2B;
}

.gallery-card-index {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #9C4A2B;
  text-transform: uppercase;
}

/* ── STAGE & SPOTLIGHT AMBIENT GLOW ──────────────────────────── */
.stage-spotlight-card {
  position: relative;
}

.stage-spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(380px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(235, 218, 185, 0.5), transparent 75%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
  z-index: 1;
}

.stage-spotlight-card:hover::before {
  opacity: 1;
}

.stage-spotlight-card * {
  position: relative;
  z-index: 2;
}

.tile-title {
  font-family: var(--ff-sans) !important;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
  color: #FFFFFF !important;
  margin-top: 0.2rem;
}

.tile-title-link {
  color: inherit;
  text-decoration: none;
}

.tile-title-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tile-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--clr-muted);
  flex-grow: 1;
}

.tile-action {
  margin-top: 0.8rem;
}

.tile-link {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9C4A2B;
  text-decoration: none;
  transition: opacity 150ms ease;
}

.tile-link:hover {
  text-decoration: underline;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .formats-menu-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

#ws-dates-detail {
  display: block;
  opacity: 1;
}

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

.detail-block-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-muted);
  max-width: 68ch;
  margin-top: 1rem;
}

.banner-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-ink);
}

.banner-hint {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-muted);
}

.episodes-banner-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.episodes-banner-track::-webkit-scrollbar {
  height: 4px;
}
.episodes-banner-track::-webkit-scrollbar-thumb {
  background: var(--clr-border);
}

.episode-banner-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) ease;
}

.episode-banner-card:hover {
  transform: translateY(-3px);
}

.banner-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
  background: #EFEFEA;
}

.banner-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--clr-ink);
  color: var(--clr-white);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
}

.banner-card-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.banner-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-muted);
  border-bottom: 1px solid var(--clr-rule);
  padding-bottom: 0.4rem;
}

.banner-card-num {
  color: var(--clr-ink);
}

.banner-card-title {
  font-family: var(--ff-head);
  font-size: 1.08rem;
  line-height: 1.3;
}

.banner-card-quote {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--clr-ink);
  border-left: 2px solid var(--clr-border);
  padding-left: 0.6rem;
  margin: 0;
  font-style: normal;
}

/* DARKENED MOOD TONE FOR UPCOMING EPISODE 05 CARD (SAVE THE DATE) */
.episode-upcoming-dark-card {
  background: var(--clr-ink);
  border-color: var(--clr-ink);
  color: var(--clr-white);
}

.dark-teaser-graphic {
  background: #1C1C1A;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #333333;
}

.dark-teaser-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: #D4AF37; /* gold accent */
}

.dark-teaser-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.dark-teaser-sub {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}

.dark-badge {
  background: #D4AF37;
  color: var(--clr-ink);
}

.dark-meta {
  border-bottom-color: #333333;
}

.dark-num {
  color: #D4AF37;
}

.dark-tba {
  color: rgba(255, 255, 255, 0.65);
}

.dark-title {
  color: var(--clr-white);
}

.dark-save-date-block {
  border-left: 2px solid #D4AF37;
  padding-left: 0.7rem;
  margin-top: 0.2rem;
}

.dark-date-label {
  font-family: var(--ff-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: #D4AF37;
  line-height: 1.4;
  display: block;
}

/* ── STADTARCHIV HERO GRID ───────────────────────────────────── */
.stadtarchiv-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.official-poster-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.poster-image-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
  background: #151F6D;
}

.poster-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-caption {
  font-size: 0.8rem;
  color: var(--clr-muted);
  border-top: 1px solid var(--clr-rule);
  padding-top: 0.6rem;
}

.poster-caption span {
  font-weight: 600;
  color: var(--clr-ink);
}

.stadtarchiv-overview h3 {
  font-size: 1.55rem;
  margin-bottom: 1.2rem;
}

.overview-text {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--clr-ink);
  margin-bottom: 1.8rem;
}

.fact-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--clr-border);
  margin-bottom: 2rem;
}

.fact-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--clr-rule);
  gap: 1rem;
}

.fact-row dt {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-muted);
}

.fact-row dd {
  font-size: 0.98rem;
  color: var(--clr-ink);
}

/* ── ANTI-CV / FAILURE CV EDITORIAL LABEL ───────────────────── */
.bio-anti-cv-label {
  font-family: var(--ff-head);
  font-size: 0.78rem;
  font-weight: 500;
  font-style: italic;
  color: var(--clr-muted);
  letter-spacing: 0.04em;
  padding-left: 0.75rem;
  border-left: 2px solid var(--clr-rule);
  margin-bottom: 1.1rem;
  display: block;
}

/* ── PUBLICATIONS SECTION & FILTER PILLS ─────────────────────── */
.text-filter-pills {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.filter-pill {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #D0CEC7 !important;
  padding: 0.55rem 1.3rem;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 24px;
  transition: all 200ms ease;
}

.filter-pill:hover,
.filter-pill.active {
  background: #C0392B !important;
  color: #FFFFFF !important;
  border-color: #C0392B !important;
}

.publications-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-height: 680px;
  overflow-y: auto;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #C0392B #1C1C1C;
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  transition: max-height 350ms ease, mask-image 350ms ease;
}

.publications-list::-webkit-scrollbar {
  width: 6px;
}

.publications-list::-webkit-scrollbar-track {
  background: #1C1C1C;
  border-radius: 3px;
}

.publications-list::-webkit-scrollbar-thumb {
  background: #C0392B;
  border-radius: 3px;
}

.publications-list.filter-expanded {
  max-height: none;
  overflow-y: visible;
  -webkit-mask-image: none;
          mask-image: none;
}

.pub-row {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 14px;
  padding: 1.8rem 2rem;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2.2rem;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  color: #FFFFFF !important;
}

.pub-row:hover {
  transform: translateY(-2px);
  border-color: #9C4A2B;
  box-shadow: 0 6px 24px rgba(17, 17, 17, 0.04);
}

.pub-highlight-badge {
  display: inline-block;
  background: #9C4A2B;
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-top: 0.4rem;
  align-self: flex-start;
}

.pub-row.hidden-item {
  display: none !important;
}

.pub-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pub-outlet {
  font-family: var(--ff-sans) !important;
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF !important;
}

.pub-year {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #C0392B !important;
  text-transform: uppercase;
}

.pub-main {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pub-title {
  font-family: var(--ff-sans) !important;
  font-size: 1.32rem;
  font-weight: 700;
  color: #FFFFFF !important;
  line-height: 1.4;
}

.pub-excerpt {
  font-family: var(--ff-sans);
  font-size: 0.98rem;
  color: #2D2C2A;
  line-height: 1.7;
}

.pub-link {
  align-self: flex-start;
  font-size: 0.85rem !important;
  padding: 0.5rem 1.1rem !important;
}

.pub-note {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-muted);
}

@media (max-width: 768px) {
  .pub-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.4rem;
  }
}

/* ── CONTACT & ABOUT ────────────────────────────────────────── */
.contact-inner {
  display: flex;
  flex-direction: column;
  max-width: 860px;
  margin: 0 auto;
}

/* Conversational reach note */
.contact-reach-note {
  margin-top: 1.6rem;
  margin-bottom: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-reach-text {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--clr-ink);
}

.contact-reach-alt {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--clr-muted);
}

/* Inline channel links within prose */
.contact-inline-link {
  color: var(--clr-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity 150ms ease;
}

.contact-inline-link:hover {
  opacity: 0.65;
}

/* Pronouns field */
.contact-pronouns-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFFFFF !important;
}

.contact-optional-tag {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0;
  color: #D0CEC7 !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  padding: 0.15rem 0.55rem;
  border-radius: 12px;
}

.required-asterisk {
  color: #C0392B !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  margin-left: 0.25rem !important;
  display: inline-block !important;
}

.contact-pronouns-hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: #D0CEC7;
  line-height: 1.55;
  font-style: italic;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #161513 !important;
}

.form-group input,
.form-group textarea {
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  background: #FAF8F5 !important;
  color: #161513 !important;
  border-radius: 0px !important;
  outline: none;
  transition: all 200ms ease;
  box-shadow: none !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #88857F !important;
  opacity: 1 !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:focus-visible,
.form-group textarea:focus-visible {
  border-color: #BA5D45 !important;
  box-shadow: 0 0 0 2px rgba(186, 93, 69, 0.15) !important;
  background: #FFFFFF !important;
  outline: none !important;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #BA5D45 !important;
  background: rgba(186, 93, 69, 0.04) !important;
}

.form-error-msg {
  display: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: #FF6B6B;
  margin-top: 0.25rem;
}

.form-group.has-error .form-error-msg {
  display: block;
}

.about-col {
  border-top: none;
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.about-portrait {
  width: 100%;
  max-width: 250px;
  aspect-ratio: 4/5;
  border: none;
  background: transparent;
  overflow: hidden;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h3 {
  margin-bottom: 0.6rem;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--clr-muted);
}

.about-social {
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 3rem 0 !important;
  background: #0A0A0A !important;
  color: #D0CEC7 !important;
  scroll-snap-align: end;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-name { font-family: var(--ff-head); font-weight: 700; }
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a:hover { text-decoration: underline; }
.footer-copy { color: var(--clr-muted); }

.legal-cancel-pill:hover,
.legal-cancel-pill:focus-visible {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: #FFFFFF !important;
  color: #FFFFFF !important;
  transform: translateY(-1px) !important;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 850px) {
  .hero-inner,
  .bio-grid,
  .pillar-header-row,
  .stadtarchiv-hero-grid,
  .contact-inner,
  .direct-channels-grid,
  .pub-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pillar-body-content {
    padding-left: 0;
  }

  .form-row { grid-template-columns: 1fr; }
}



/* ═══════════════════════════════════════════════════════════════
   WORKSHOP DATE CARDS
   ═══════════════════════════════════════════════════════════════ */

.workshop-dates-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.workshop-dates-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-muted);
  margin-bottom: 0.4rem;
}

.workshop-date-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding: 1.4rem 1.6rem;
  background: rgba(255, 255, 255, 0.04) !important;
  transition: background 200ms ease, box-shadow 200ms ease;
  color: #FFFFFF !important;
}

.workshop-date-card:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.ws-card-waitlist {
  background: rgba(255, 255, 255, 0.02) !important;
  opacity: 0.82;
}

.ws-card-left {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
}

.ws-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  border: 1.5px solid var(--clr-border);
  padding: 0.6rem 0.9rem;
  gap: 0.15rem;
}

.ws-day {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--clr-ink);
}

.ws-month-year {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-muted);
}

.ws-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ws-card-top-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ws-status-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
}

.ws-open {
  background: #1A3A1A;
  color: #B8E8B0;
}

.ws-waitlist {
  background: #3A2A0A;
  color: #E8C86A;
}

.ws-spots-left {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-muted);
}

.ws-full {
  color: #C44A4A;
}

.ws-card-title {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--clr-ink);
}

.ws-card-details {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ws-detail {
  font-size: 0.8rem;
  color: var(--clr-muted);
}

.ws-price {
  font-weight: 700;
  color: var(--clr-ink);
}

.ws-card-action {
  display: flex;
  align-items: center;
}

.btn-waitlist {
  background: transparent;
  border: 1px solid var(--clr-muted);
  color: var(--clr-muted);
  padding: 0.6rem 1.2rem;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: normal;
  border-radius: 20px;
  cursor: pointer;
  transition: all 150ms ease;
  white-space: nowrap;
}

.btn-waitlist:hover {
  border-color: var(--clr-ink);
  color: var(--clr-ink);
}

/* ═══════════════════════════════════════════════════════════════
   WORKSHOP REGISTRATION MODAL
   ═══════════════════════════════════════════════════════════════ */

.ws-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: ws-overlay-in 250ms ease both;
}

.ws-modal-overlay.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 999999 !important;
}

.ws-modal-overlay[hidden] {
  display: none !important;
}

@keyframes ws-overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.ws-modal {
  background: #181716 !important;
  color: #FFFFFF !important;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: ws-modal-in 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 16px !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8) !important;
}

@keyframes ws-modal-in {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.ws-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #D0CEC7 !important;
  line-height: 1;
  padding: 0.25rem 0.4rem;
  transition: color 150ms ease;
  z-index: 10;
}

.ws-modal-close:hover {
  color: #FFFFFF !important;
}

.ws-modal-header {
  padding: 2.2rem 2.2rem 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.ws-modal-mode-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: #C0392B !important;
  color: #FFFFFF !important;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.8rem;
  border-radius: 4px;
}

.ws-modal-mode-badge.ws-waitlist-badge {
  background: #3A2A0A;
  color: #E8C86A;
}

.ws-modal-title {
  font-family: var(--ff-sans) !important;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF !important;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.ws-modal-subtitle {
  font-size: 0.92rem;
  color: #D0CEC7 !important;
  line-height: 1.55;
}

/* INFO STRIP */
.ws-modal-info-strip {
  display: flex;
  gap: 2rem;
  padding: 1rem 2.2rem;
  background: rgba(255, 255, 255, 0.05) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  flex-wrap: wrap;
  color: #FFFFFF !important;
}

.ws-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #FFFFFF !important;
}

.ws-info-icon {
  font-size: 1rem;
}

/* WAITLIST NOTICE BANNER */
.ws-modal-waitlist-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 2.2rem;
  background: rgba(212, 175, 55, 0.1) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
  color: #FFFFFF !important;
}

.ws-modal-waitlist-notice[hidden] {
  display: none !important;
}

.ws-waitlist-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ws-modal-waitlist-notice strong {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.2rem;
}

.ws-modal-waitlist-notice p {
  font-size: 0.85rem;
  color: #6B5A20;
  line-height: 1.55;
  margin: 0;
}

/* FORM */
.ws-form {
  padding: 2rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.ws-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.ws-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ws-form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-ink);
}

.ws-form-group input,
.ws-form-group textarea {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  color: var(--clr-ink);
  border-radius: 0;
  outline: none;
  transition: border-color 150ms ease;
}

.ws-form-group input:focus,
.ws-form-group textarea:focus {
  border-color: var(--clr-ink);
  outline: 2px solid rgba(17,17,17,0.1);
  outline-offset: 1px;
}

/* CUSTOM CHECKBOX */
.ws-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--clr-ink);
}

.ws-checkbox-label[hidden] {
  display: none !important;
}

.ws-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ws-checkbox-custom {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--clr-border);
  background: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: background 150ms ease;
}

.ws-checkbox-label input:checked + .ws-checkbox-custom {
  background: var(--clr-ink);
}

.ws-checkbox-label input:checked + .ws-checkbox-custom::after {
  content: '';
  width: 4px;
  height: 8px;
  border: 2px solid var(--clr-white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}

/* FORM FOOTER */
.ws-form-footer {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
  border-top: 1px solid var(--clr-rule);
  padding-top: 1.4rem;
}

.ws-submit-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ws-privacy-note {
  font-size: 0.75rem;
  color: var(--clr-muted);
  line-height: 1.5;
}

.ws-spinner {
  display: inline-block;
  animation: ws-spin 600ms linear infinite;
}

@keyframes ws-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* SUCCESS / WAITLIST SUCCESS STATES */
.ws-success-state {
  text-align: center;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.ws-success-state[hidden] {
  display: none !important;
}

.ws-success-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.4rem;
}

.ws-success-state h3 {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
}

.ws-success-state p {
  font-size: 0.95rem;
  color: var(--clr-muted);
  line-height: 1.6;
  max-width: 360px;
}

.ws-waitlist-success .ws-success-icon {
  color: var(--clr-ink);
}

/* ── RESPONSIVE ADJUSTMENTS ─────────────────────────────────── */
@media (max-width: 600px) {
  .workshop-date-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .ws-card-action {
    justify-content: flex-start;
  }
  .ws-form-row {
    grid-template-columns: 1fr;
  }
  .ws-modal {
    max-height: 95vh;
  }
  .ws-modal-header,
  .ws-form {
    padding: 1.5rem;
  }
  .ws-modal-info-strip {
    padding: 1rem 1.5rem;
    gap: 1rem;
  }
}


/* ── SLOT MACHINE ─────────────────────────────────────────────── */
.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

#angebote {
  padding-top: 0 !important;
}

#angebote .section-inner {
  padding-top: 1.2rem !important;
}

#angebote .section-header {
  margin-bottom: 1.8rem !important;
}

#ws-dates-detail {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 2.5rem 0 0 0;
  box-shadow: none;
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: none;
}

/* SETH GODIN INSPIRED 3-COURSES EXPANDABLE GRID */
.ws-seth-godin-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  align-items: stretch !important;
  margin-top: 1.8rem !important;
  margin-bottom: 2.5rem !important;
}

@media (max-width: 992px) {
  .ws-seth-godin-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
}

.ws-module-accordion summary {
  list-style: none !important;
}

.ws-module-accordion summary::-webkit-details-marker {
  display: none !important;
}

.ws-module-accordion[open] .ws-expand-icon {
  transform: rotate(180deg) !important;
}

.ws-expand-trigger:hover {
  opacity: 0.85;
}

/* BÜHNENGESPRÄCHE / EVENTS EDITORIAL GRID */
@media (max-width: 992px) {
  .events-editorial-grid,
  .contact-editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
  }
}

/* WORKSHOP PRICING & FORMAT BANNER */
.workshop-pricing-banner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* WORKSHOP FORMAT & REASSURANCE TRUST PILLS */
.ws-trust-pill {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing-pill-container {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 30px;
  padding: 0.55rem 1.2rem;
  flex-wrap: wrap;
  color: #FFFFFF !important;
}

.pricing-pill {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: #D0CEC7 !important;
}

.pricing-pill.highlight {
  color: #C0392B !important;
  font-weight: 700;
}

.pricing-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* VARIABLE DATE BADGE PILL IN CARDS */
.date-variable-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 20px;
  padding: 0.4rem 0.85rem;
  align-self: flex-start;
  margin-top: 1rem;
  color: #FFFFFF !important;
}

.date-variable-badge .date-icon {
  font-size: 0.85rem;
}

.date-variable-badge .seth-course-meta {
  border-top: none;
  padding-top: 0;
  font-size: 0.78rem;
  color: #D0CEC7 !important;
}

/* FULL-WIDTH RECTANGULAR WORKSHOP EXPANSION PANEL */
.ws-fullwidth-panel {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 14px;
  padding: 2.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  animation: fadeIn 300ms ease forwards;
  color: #FFFFFF !important;
}
  animation: fadeIn 300ms ease forwards;
}

.ws-panel-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.panel-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.panel-tag {
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #9C4A2B;
  text-transform: uppercase;
}

.panel-title {
  font-family: var(--ff-sans) !important;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF !important;
}

.panel-lead {
  font-family: var(--ff-sans);
  font-size: 1.02rem;
  line-height: 1.7;
  color: #2D2C2A;
}

.panel-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.panel-list li {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  color: #181716;
  position: relative;
  padding-left: 1.4rem;
}

.panel-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #9C4A2B;
  font-weight: 700;
}

.panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* SECTION 03 EVENTS & STADTARCHIV STYLING */
#events {
  display: block !important;
}

.events-epic-section {
  position: relative;
  background: #FAF8F5 !important;
  padding-top: 4rem;
  padding-bottom: 6rem;
  border: none !important;
  color: #161513 !important;
}

.epic-poster-shadow {
  position: relative;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.epic-poster-shadow:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
}

/* ROTATING STAGE SPOTLIGHT STYLING */
.rotating-stage-spotlight {
  position: relative;
  border-radius: 0px !important;
  overflow: hidden !important;
  background: #FFFFFF !important;
  height: 480px !important;
  min-height: 480px !important;
  max-height: 480px !important;
  display: flex;
  flex-direction: column;
}

.spotlight-image-container {
  position: relative;
  width: 100% !important;
  height: 100% !important;
  flex: 1;
  overflow: hidden !important;
}

#spotlight-active-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: opacity 750ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

@media (max-width: 768px) {
  .rotating-stage-spotlight {
    height: 380px !important;
    min-height: 380px !important;
    max-height: 380px !important;
  }
}

.spotlight-slide.active {
  opacity: 1;
  visibility: visible;
  display: block;
  z-index: 5;
}

.spotlight-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.spotlight-slide .poster-caption {
  height: 48px;
  padding: 0.75rem 1.2rem;
  background: #1C1C1C !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  display: flex;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 500;
  color: #D0CEC7 !important;
}

.spotlight-nav-dots {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  display: flex;
  gap: 0.4rem;
  background: rgba(24, 23, 22, 0.65);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.6rem;
  border-radius: 20px;
}

.spotlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 250ms ease, transform 250ms ease;
}

.spotlight-dot.active {
  background: #FFFFFF;
  transform: scale(1.25);
}

.epic-overview-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  color: #FFFFFF !important;
}

/* COOL VIP EVENT TICKET PASS BANNER STYLING */
.event-ticket-pass-box {
  background: #1C1A18;
  color: #FAF8F5;
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  border: 1px dashed rgba(226, 163, 126, 0.4);
  box-shadow: 0 12px 32px rgba(24, 23, 22, 0.18);
  position: relative;
  overflow: hidden;
}

.ticket-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.ticket-badge {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: #E8A87C;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticket-episode-tag {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: #FAF8F5;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}

.ticket-date-title {
  font-family: var(--ff-sans) !important;
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 1rem;
}

.ticket-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ticket-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ticket-label {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.ticket-value {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: #FAF8F5;
  line-height: 1.35;
}

.ticket-map-link {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: #E8A87C;
  text-decoration: none;
  background: rgba(232, 168, 124, 0.12);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(232, 168, 124, 0.25);
  transition: all 250ms ease;
}

.ticket-map-link:hover {
  background: rgba(232, 168, 124, 0.25);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.ticket-action-btn {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: #FAF8F5;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 250ms ease;
}

.ticket-action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.whatsapp-btn {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.35);
}

.whatsapp-btn:hover {
  background: #25D366;
  color: #181716;
  border-color: #25D366;
}

.google-cal-btn {
  background: rgba(232, 168, 124, 0.15);
  color: #E8A87C;
  border-color: rgba(232, 168, 124, 0.3);
}

.google-cal-btn:hover {
  background: #E8A87C;
  color: #181716;
  border-color: #E8A87C;
}

.epic-tag {
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #9C4A2B;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.epic-title {
  font-family: var(--ff-sans) !important;
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  font-weight: 700;
  color: #FFFFFF !important;
  line-height: 1.25;
  margin-bottom: 1.1rem;
}

.epic-fact-list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.2rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.seth-course-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.8rem;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.seth-course-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.seth-course-top {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.seth-course-index {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #C0392B !important;
  text-transform: uppercase;
}

.seth-course-title {
  font-family: var(--ff-sans);
  font-size: 1.48rem;
  font-weight: 700;
  font-style: normal;
  color: #FFFFFF !important;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-top: 0.6rem;
  margin-bottom: 1.4rem;
  transition: color 200ms ease;
}

.seth-course-card:hover .seth-course-title {
  color: #C0392B !important;
}

.seth-course-desc {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  color: #D0CEC7 !important;
  line-height: 1.65;
}

.seth-course-bottom {
  display: flex;
  flex-direction: column;
}

.seth-course-meta {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: #666666;
  padding-top: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .seth-godin-courses-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #9C4A2B;
  text-transform: uppercase;
}

.ws-date-name {
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: #181716;
}

.ws-date-meta {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  color: #555555;
  margin-bottom: 0.6rem;
}

.ws-date-btn {
  font-size: 0.85rem !important;
  padding: 0.55rem 1.1rem !important;
  align-self: flex-start;
}

#ws-dates-detail h3 {
  font-family: var(--ff-sans) !important;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ws-subhead {
  font-family: var(--ff-sans) !important;
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin-top: 2.6rem;
  margin-bottom: 1.1rem;
  padding-left: 1rem;
  border-left: 3px solid #C0392B;
}

.detail-block-desc {
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  line-height: 1.85;
  color: #2D2C2A;
  font-weight: 400;
  max-width: 68ch;
  margin-top: 1rem;
}

.ws-bullets-list {
  list-style: none;
  margin-top: 1.2rem;
  margin-bottom: 1.8rem;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ws-bullets-list li {
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2D2C2A;
  position: relative;
  padding-left: 1.8rem;
}

.ws-bullets-list li::before {
  content: "•";
  position: absolute;
  left: 0.3rem;
  color: #9C4A2B;
  font-size: 1.3rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.slot-machine-outer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.slot-machine {
  background: #1A1A1A !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px;
  overflow: hidden;
  width: 280px;
  font-family: var(--ff-sans);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  position: relative;
  color: #FFFFFF !important;
}

/* ── Marquee ────────────────────────────────────────────────── */
.slot-marquee {
  background: #111111 !important;
  padding: 0.8rem 1rem 0.6rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
}

.slot-lights-strip {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  margin: 0.25rem 0;
}

.slot-bulb {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C0392B;
  box-shadow: 0 0 4px rgba(192, 57, 43, 0.6);
  animation: bulbPulse 2.4s ease-in-out infinite;
}

.slot-bulb:nth-child(odd) {
  animation-delay: 1.2s;
}

@keyframes bulbPulse {
  0%, 100% { opacity: 0.9; }
  50%       { opacity: 0.35; }
}

.slot-machine-title {
  text-align: center;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0.1rem 0;
}

/* ── LED Score Display ──────────────────────────────────────── */
.slot-score-display {
  background: #181818 !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.score-label {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: #D0CEC7 !important;
  text-transform: uppercase;
  font-family: var(--ff-sans);
  font-weight: 600;
  white-space: nowrap;
}

.score-seg {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: #C0392B !important;
  letter-spacing: 0.04em;
  text-align: right;
  flex: 1;
}

/* ── Reel Window ────────────────────────────────────────────── */
.slot-body {
  padding: 1rem 1rem 0.8rem;
  background: #111111 !important;
}

.slot-reel-frame {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #1A1A1A !important;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
}

.reel-strip-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.reel-strip {
  will-change: transform;
  transform: translateY(0);
}

.reel-item {
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0.4rem 1rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  text-align: center;
  color: #FFFFFF !important;
}

.reel-item-fach {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF !important;
  line-height: 1.2;
}

.reel-item-score {
  font-family: var(--ff-sans);
  font-size: 1.55rem;
  font-weight: 700;
  color: #C0392B !important;
  line-height: 1;
}

.reel-item-exam {
  font-size: 0.58rem;
  color: #D0CEC7 !important;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Top & bottom fade masks */
.reel-fade-top,
.reel-fade-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 68px;
  z-index: 2;
  pointer-events: none;
}

.reel-fade-top {
  top: 0;
  background: linear-gradient(to bottom, #1A1A1A 25%, transparent);
}

.reel-fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, #1A1A1A 25%, transparent);
}

/* Center selection line */
.reel-center-indicator {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  height: 80px;
  border-top: 2px solid #C0392B;
  border-bottom: 2px solid #C0392B;
  z-index: 3;
  pointer-events: none;
}

/* ── Bottom Panel ───────────────────────────────────────────── */
.slot-bottom-panel {
  background: #111111 !important;
  border-top: 2px solid rgba(255, 255, 255, 0.15) !important;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slot-brand {
  font-size: 0.5rem;
  color: #666666;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coin-slot {
  display: flex;
  align-items: center;
}

.coin-slot-hole {
  width: 20px;
  height: 4px;
  background: #111111;
  border-radius: 2px;
}

/* ── SIDE LEVER MECHANISM ────────────────────────────────────── */
.slot-lever-btn {
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 10;
  outline: none;
}

.lever-mount {
  width: 14px;
  height: 38px;
  background: #111111;
  border-radius: 0 4px 4px 0;
  position: relative;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
}

.lever-arm {
  position: absolute;
  left: 6px;
  bottom: 12px;
  transform-origin: bottom center;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lever-rod {
  width: 6px;
  height: 95px;
  background: linear-gradient(to right, #999, #DDD, #777);
  border: 1px solid #111111;
  border-radius: 3px;
}

.lever-ball {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #D66340 0%, #9C4A2B 65%, #6B2E17 100%);
  border: 2px solid #111111;
  box-shadow: 0 4px 10px rgba(156, 74, 43, 0.35);
  position: absolute;
  top: -24px;
  left: -21px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 150ms ease;
}

.slot-lever-btn:hover .lever-ball {
  transform: scale(1.08);
}

.lever-text {
  font-family: var(--ff-head);
  font-size: 0.55rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Lever pull down animation state */
.lever-arm.lever-pulled {
  transform: rotate(52deg) translateY(12px);
}

/* Jackpot / Low Score Highlights */
.slot-machine.jackpot {
  border-color: #9C4A2B;
}

.slot-machine.jackpot .score-seg {
  color: #9C4A2B;
  font-weight: 900;
}

/* ── DURCHGEFALLEN STAMP BANNER (< 4 Pkt) ─────────────────────── */
.durchgefallen-stamp {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: scale(2.8) rotate(-14deg);
  transition: opacity 150ms ease, transform 280ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stamp-text {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: #C62828;
  background: rgba(255, 255, 255, 0.94);
  border: 3px double #C62828;
  padding: 0.35rem 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(198, 40, 40, 0.25);
}

.slot-machine.durchgefallen .durchgefallen-stamp {
  opacity: 1;
  transform: scale(1) rotate(-14deg);
}

.slot-machine.durchgefallen .score-seg {
  color: #C62828 !important;
  font-weight: 800;
}

/* ── PASSED EXAM GREEN LIGHTS CELEBRATION (>= 4 Pkt) ─────────── */
.slot-machine.passed .score-seg {
  color: #2E7D32 !important;
  font-weight: 800;
}

.slot-machine.passed .slot-bulb {
  background: #388E3C !important;
  box-shadow: 0 0 8px #388E3C !important;
  animation: greenStrobe 0.25s ease-in-out infinite alternate !important;
}

@keyframes greenStrobe {
  from { opacity: 1; transform: scale(1.1); }
  to   { opacity: 0.3; transform: scale(0.9); }
}

.venn-wrapper {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding-top: 1rem;
}

.venn-diagram {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venn-circle {
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), border-color 300ms ease;
}

.circle-left {
  left: 0;
  background-color: rgba(156, 74, 43, 0.03);
  border: 1.5px dashed rgba(156, 74, 43, 0.3);
}

.circle-right {
  right: 0;
  background-color: rgba(94, 122, 107, 0.03);
  border: 1.5px solid rgba(94, 122, 107, 0.4);
}

.circle-left:hover {
  transform: translateX(-6px);
  border-color: rgba(156, 74, 43, 0.6);
}

.circle-right:hover {
  transform: translateX(6px);
  border-color: rgba(94, 122, 107, 0.6);
}

.venn-content {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.85rem;
  position: relative;
}

.left-content {
  padding-right: 2.2rem;
  text-align: left;
}

.right-content {
  padding-left: 2.2rem;
  text-align: left;
}

.venn-title {
  font-family: var(--ff-head);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.circle-left .venn-title {
  color: #9C4A2B;
}

.circle-right .venn-title {
  color: #4A6D5A;
}

.venn-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  line-height: 1.4;
  color: var(--clr-muted);
}

.venn-list li {
  position: relative;
  padding-left: 0.8rem;
}

.venn-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--clr-border);
}

.venn-tag {
  position: absolute;
  top: -1.4rem;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
  font-family: var(--ff-sans);
}

.left-content .venn-tag {
  left: 0;
  background-color: rgba(168, 62, 44, 0.08);
  color: #A83E2C;
  border: 1px solid rgba(168, 62, 44, 0.2);
}

.right-content .venn-tag {
  left: 2.2rem;
  background-color: rgba(47, 111, 76, 0.08);
  color: #2F6F4C;
  border: 1px solid rgba(47, 111, 76, 0.2);
}

.venn-overlap {
  position: absolute;
  z-index: 10;
  width: 190px;
  pointer-events: none;
}

.overlap-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 8px;
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  transition: transform 200ms ease, box-shadow 200ms ease;
  color: #FFFFFF !important;
}

.overlap-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(24, 23, 22, 0.08);
}

.overlap-title {
  font-family: var(--ff-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-ink);
  margin-bottom: 0.35rem;
}

.overlap-text {
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--clr-muted);
  margin: 0;
}

/* ── SEQUENTIAL ENTRANCE FOR VENN DIAGRAM ────────────────────── */
.format-detail-block.active .circle-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideCircleLeft 600ms cubic-bezier(0.16, 1, 0.3, 1) forwards 150ms;
}

.format-detail-block.active .circle-right {
  opacity: 0;
  transform: translateX(40px);
  animation: slideCircleRight 600ms cubic-bezier(0.16, 1, 0.3, 1) forwards 150ms;
}

.format-detail-block.active .overlap-card {
  opacity: 0;
  transform: scale(0.85) translateY(15px);
  animation: popOverlap 500ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards 600ms;
}

@keyframes slideCircleLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideCircleRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes popOverlap {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 600px) {
  .venn-diagram {
    height: auto;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .venn-circle {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 4px;
    padding: 1.8rem 1.2rem;
  }
  
  .circle-left, .circle-right {
    transform: none !important;
  }

  .left-content, .right-content {
    width: 100%;
    padding: 0;
  }
  
  .venn-tag {
    position: static;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 0.4rem;
  }

  .venn-overlap {
    position: static;
    width: 100%;
    transform: none !important;
  }
  
  .overlap-card {
    box-shadow: none;
  }
}

/* ── VENN CLICKABLE ZONES — ACTIVE STATE ─────────────────────── */
.venn-circle,
.overlap-card {
  cursor: pointer;
}

.venn-circle.venn-zone--active.circle-left {
  border-color: rgba(156, 74, 43, 0.7) !important;
  background-color: rgba(156, 74, 43, 0.07) !important;
  transform: translateX(-6px);
}

.venn-circle.venn-zone--active.circle-right {
  border-color: rgba(74, 109, 90, 0.7) !important;
  background-color: rgba(74, 109, 90, 0.07) !important;
  transform: translateX(6px);
}

.overlap-card.venn-zone--active {
  box-shadow: 0 14px 36px rgba(24, 23, 22, 0.1);
  transform: scale(1.04);
}

/* ── VENN DETAIL PANE ─────────────────────────────────────────── */
.venn-pane-container {
  margin-top: 1.2rem;
}

#venn-pane-content {
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  padding: 1.2rem 1.4rem;
  min-height: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: transparent;
  transition: opacity 140ms ease, transform 140ms ease, border-color 200ms ease, background-color 200ms ease;
}

/* Hint state */
.venn-pane--hint {
  flex-direction: row !important;
  align-items: center;
  gap: 0.5rem;
  border-style: dashed;
  opacity: 0.55;
}

.venn-pane-hint-icon {
  font-size: 0.9rem;
  color: var(--clr-muted);
  animation: bounceHint 1.8s ease-in-out infinite;
}

.venn-pane-hint-text {
  font-size: 0.8rem;
  color: var(--clr-muted);
  font-style: italic;
}

@keyframes bounceHint {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-3px); }
}

/* Active/expanded pane content */
.venn-pane-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid;
  font-family: var(--ff-sans);
  letter-spacing: 0.04em;
}

.venn-pane-title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-ink);
  line-height: 1.3;
}

.venn-pane-body {
  font-size: 0.88rem;
  color: var(--clr-muted);
}

/* ─────────────────────────────────────────────────────────────
   MOBILE RESPONSIVE & ACCESSIBILITY OPTIMIZATION (PHONES & TABLETS)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* 1. Global Section Heights & Scroll Margin on Mobile */
  html {
    scroll-padding-top: 56px;
    scroll-snap-type: none; /* Disable mandatory snap on small phones to prevent clip/scroll locking */
  }

  section {
    scroll-margin-top: 56px;
    min-height: auto !important;
    padding: 3rem 1.2rem !important;
  }

  .section-inner,
  .hero-inner {
    padding: 1.5rem 1rem !important;
    max-width: 100%;
  }

  .ws-header-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .ws-circles-flow {
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
  }
}

/* GLOBAL DISCLOSURE MARKER SUPPRESSION */
summary {
  list-style: none !important;
  list-style-type: none !important;
}

summary::-webkit-details-marker,
summary::marker {
  display: none !important;
  content: "" !important;
  font-size: 0 !important;
  color: transparent !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* DESKTOP OPTIMIZATIONS (>= 769px) */
@media (min-width: 769px) {
  /* 1. Top Bar Navigation Links on Desktop (Original Clean Text Links) */
  .nav-hamburger {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
  .nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 2.2rem !important;
    list-style: none !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .nav-links li {
    display: inline-block !important;
  }
  .nav-links a {
    display: inline-block !important;
    font-family: var(--ff-sans) !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    color: #1E1C1A !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    transition: color 200ms ease !important;
  }
  .nav-links a:hover {
    background: transparent !important;
    border: none !important;
    color: #C89660 !important;
    text-decoration: none !important;
    transform: none !important;
  }

  /* 2. Hero Section Typography & Horizontal Side-by-Side Button Layout on Desktop */
  #hero-heading {
    font-size: clamp(2.6rem, 4.2vw, 3.8rem) !important;
    line-height: 1.35 !important;
    margin-bottom: 2.8rem !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    flex-wrap: nowrap !important;
    width: auto !important;
    margin: 0 auto !important;
  }

  .hero-actions a.hero-btn-secondary,
  .hero-actions .hero-btn-secondary {
    display: inline-flex !important;
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    padding: 0.75rem 1.8rem !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    border-radius: 40px !important;
    white-space: nowrap !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Unified Grid System Alignment across All Sections (Desktop >= 769px) */

  .ws-header-grid {
    display: grid !important;
    grid-template-columns: 1fr 260px !important;
    gap: 3.5rem !important;
    align-items: start !important;
  }

  .ws-progressive-flow {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .stadtarchiv-epic-container {
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact-inner {
    max-width: 880px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .ws-modul-badge {
    display: inline-block !important;
  }

  .mob-more,
  .mob-less {
    display: none !important;
  }

  .ws-mobile-disclosure:not([open]) .desk-less {
    display: none !important;
  }
  .ws-mobile-disclosure:not([open]) .desk-more {
    display: inline-block !important;
  }

  .ws-mobile-disclosure[open] .desk-more {
    display: none !important;
  }
  .ws-mobile-disclosure[open] .desk-less {
    display: inline-block !important;
  }

  .ws-mobile-disclosure {
    width: 100% !important;
    margin-top: 0.4rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .ws-mobile-disclosure > summary.ws-toggle-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin-left: 68px !important;
    margin-right: auto !important;
    text-align: left !important;
    width: auto !important;
    padding: 0.6rem 1.5rem !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.2rem !important;
    font-family: var(--ff-sans) !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.32) !important;
    border-radius: 40px !important;
    cursor: pointer !important;
    user-select: none !important;
    white-space: nowrap !important;
    -webkit-tap-highlight-color: transparent !important;
    transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .ws-mobile-disclosure > summary.ws-toggle-btn:hover,
  .ws-mobile-disclosure > summary.ws-toggle-btn:focus-visible {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #FFFFFF !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
    outline: none !important;
  }

  .ws-drawer-inner {
    padding-left: 68px !important;
    padding-top: 0.3rem !important;
    animation: fadeInWsDrawer 250ms ease forwards;
    text-align: left !important;
  }

  .ws-card-action {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 2rem !important;
    margin-top: 1.5rem !important;
    padding-top: 1.4rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-left: -68px !important;
    padding-left: 68px !important;
    width: calc(100% + 68px) !important;
  }

  .ws-card-action .ws-price-tag {
    text-align: left !important;
  }
}

/* WORKSHOP MODULE CARD CONTAINER & STRICT LEFT-ALIGNMENT */
.ws-module-card,
.ws-card-inner,
.ws-card-main,
.ws-teaser-desc,
.ws-takeaway-bullets,
.ws-takeaway-bullets li {
  text-align: left !important;
}

.ws-vertical-track {
  display: none !important;
}

.ws-module-card {
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
  text-align: left !important;
}

.ws-module-card:hover {
  border-color: rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
}

.ws-mobile-disclosure {
  width: 100% !important;
  margin-top: 0.4rem !important;
}

.ws-mobile-disclosure .ws-drawer-inner {
  padding-top: 0.3rem !important;
  animation: fadeInWsDrawer 250ms ease forwards;
}

/* PRIMARY CTA BOOKING BUTTON (SOLID RED FILL FOR WCAG AA 5.2:1 HIGH CONTRAST) */
.hero-btn-primary.ws-primary-cta,
button.ws-primary-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.7rem 1.7rem !important;
  font-family: var(--ff-sans) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #FFFFFF !important;
  background: #C0392B !important;
  border: 1.5px solid #C0392B !important;
  border-radius: 40px !important;
  box-shadow: 0 4px 14px rgba(192, 57, 43, 0.4) !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-btn-primary.ws-primary-cta:hover,
button.ws-primary-cta:hover {
  background: #D9381E !important;
  border-color: #D9381E !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.55) !important;
}

/* MOBILE WORKSHOP ACCORDION STYLING (< 768px) - UNTOUCHED */
@media (max-width: 768px) {
  .desk-more,
  .desk-less {
    display: none !important;
  }

  .ws-mobile-disclosure:not([open]) .mob-less {
    display: none !important;
  }
  .ws-mobile-disclosure:not([open]) .mob-more {
    display: inline-block !important;
  }

  .ws-mobile-disclosure[open] .mob-more {
    display: none !important;
  }
  .ws-mobile-disclosure[open] .mob-less {
    display: inline-block !important;
  }

  .ws-mobile-disclosure > summary.ws-toggle-btn {
    list-style: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 10px !important;
    color: #FFFFFF !important;
    font-family: var(--ff-sans) !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
    transition: background 200ms ease, border-color 200ms ease !important;
  }

  .ws-mobile-disclosure > summary::-webkit-details-marker {
    display: none !important;
  }

  .ws-mobile-disclosure > summary:hover,
  .ws-mobile-disclosure > summary:focus-visible {
    background: rgba(192, 57, 43, 0.18) !important;
    border-color: rgba(192, 57, 43, 0.5) !important;
    outline: none !important;
  }

  .ws-vertical-track {
    display: none !important;
  }

  /* Remove redundant "MODUL 01" badge text on mobile header */
  .ws-modul-badge {
    display: none !important;
  }

  .ws-progressive-flow {
    gap: 1.2rem !important;
    margin-top: 1.2rem !important;
  }

  .ws-module-card {
    padding: 1.4rem 1.2rem !important;
    border-radius: 16px !important;
  }

  .ws-card-inner {
    flex-direction: column !important;
    gap: 0.6rem !important;
  }

  .ws-card-main {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem !important;
    align-items: flex-start !important;
    width: 100% !important;
  }

  .ws-card-disc {
    width: 44px !important;
    height: 44px !important;
    font-size: 1rem !important;
    flex-shrink: 0 !important;
  }

  .ws-teaser-desc {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
  }

  .ws-mobile-disclosure > summary.ws-toggle-btn {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .ws-drawer-inner {
    padding-left: 0 !important;
  }

  .ws-card-action {
    width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    box-sizing: border-box !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    padding-top: 1.1rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-top: 1rem !important;
  }

  .ws-card-action .ws-price-tag {
    text-align: center !important;
  }

  .ws-card-action button,
  .ws-card-action .ws-primary-cta {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0.9rem 1.4rem !important;
    font-size: 0.95rem !important;
    box-sizing: border-box !important;
  }
}

@keyframes fadeInWsDrawer {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE RESPONSIVE OVERRIDES ONLY (< 768px) */
@media (max-width: 768px) {
  #ws-timeline-line {
    display: none !important;
  }
  
  .ws-overview-card,
  #ws-detail-card,
  #mentoring-detail {
    padding: 1.4rem 1.2rem !important;
  }

  /* Top Navigation Bar (MOBILE ONLY < 768px) */
  #main-nav {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.96) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(212, 163, 115, 0.25) !important;
  }

  .nav-inner {
    height: 56px;
    padding: 0 1rem;
  }

  .nav-logo {
    font-size: 1.2rem;
    color: #22201D !important;
  }

  .nav-links {
    display: none !important; /* Mobile menu handles navigation links */
  }

  .nav-hamburger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 44px !important;
    height: 44px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 10001 !important;
    position: relative !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .nav-hamburger span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background-color: #22201D !important;
    border-radius: 2px !important;
    pointer-events: none !important;
    transition: transform 200ms ease, opacity 200ms ease !important;
  }

  .mobile-menu {
    display: none;
    position: fixed !important;
    top: 56px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #FAF8F5 !important;
    padding: 1.5rem 1.8rem !important;
    border-bottom: 1px solid rgba(212, 163, 115, 0.25) !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1) !important;
    z-index: 9999 !important;
  }

  .mobile-menu a {
    color: #22201D !important;
  }

  .mobile-menu.open,
  .mobile-menu[aria-hidden="false"] {
    display: block !important;
  }

  /* ==========================================================================
     HERO SECTION MOBILE REFINEMENT (INTENTIONAL EDITORIAL MOBILE LAYOUT < 992px)
     ========================================================================== */
  #hero {
    min-height: auto !important;
    height: auto !important;
    padding-top: 5.5rem !important;
    padding-bottom: 3.5rem !important;
    background-color: #FAF8F5 !important;
    background: #FAF8F5 !important;
    color: #161513 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    overflow: visible !important;
    position: relative !important;
  }

  #hero > div:first-child {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 2.2rem !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .hero-content-col {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  /* MOBILE HEADLINE TYPOGRAPHY: STRICT LEFT ALIGNMENT ON CHAMPAGNE CANVAS */
  #hero .hero-sentence-block {
    align-items: flex-start !important;
    text-align: left !important;
    font-family: var(--ff-sans) !important;
    font-size: clamp(1.3rem, 5.2vw, 1.7rem) !important;
    line-height: 1.28 !important;
    letter-spacing: -0.018em !important;
    margin: 0 0 1.2rem 0 !important;
    color: #161513 !important;
    width: 100% !important;
  }

  #hero .hero-sentence-block span {
    text-align: left !important;
  }

  .hero-s1, .hero-s1b, .hero-s2 {
    color: #161513 !important;
    font-weight: 700 !important;
    opacity: 1 !important;
  }

  .hero-s2b {
    color: #BA5D45 !important;
    font-weight: 800 !important;
    opacity: 1 !important;
  }

  /* MOBILE PHOTO COLLAGE: INTENTIONAL ART-DIRECTED STACKING WITH SIGNATURE OVERLAP */
  .hero-stacked-collage-col {
    position: relative !important;
    width: 100% !important;
    min-height: 380px !important;
    height: 380px !important;
    margin-top: 0.5rem !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
  }

  .hero-stage-card-frame {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 86% !important;
    height: 330px !important;
    border-radius: 0px !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden !important;
  }

  .hero-workshop-card-frame {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 64% !important;
    height: 270px !important;
    top: auto !important;
    border-radius: 0px !important;
    border: 10px solid #FFFFFF !important;
    background: #FFFFFF !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15) !important;
    z-index: 10 !important;
    transform: rotate(-3deg) !important;
    overflow: hidden !important;
  }

  /* MOBILE CTA BUTTON: SOLID BLACK RECTANGLE FULL-WIDTH */
  .hero-cta-wrapper {
    margin-top: 1rem !important;
    padding-top: 0 !important;
    margin-bottom: 0.5rem !important;
    width: 100% !important;
    z-index: 10 !important;
  }

  .hero-inline-pill {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 0.65rem !important;
    background: #000000 !important;
    color: #FFFFFF !important;
    font-family: var(--ff-sans) !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    padding: 0.95rem 1.4rem !important;
    min-height: 52px !important;
    border-radius: 0px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
    text-align: center !important;
    letter-spacing: 0.01em !important;
    box-sizing: border-box !important;
  }
}

/* ==========================================================================
   GLOBAL HERO DESIGN SYSTEM HARMONIZATION (DESKTOP & MOBILE)
   ========================================================================== */

/* GLOBAL COLOR TOKENS & TYPOGRAPHY */
body {
  font-family: var(--ff-sans) !important;
  background-color: #161513 !important;
  color: #F4F0E8 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-sans) !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
}

/* SECTION BACKGROUND ALTERNATION — LUXURY EDITORIAL LIGHT CHAMPAGNE SYSTEM */
#hero {
  background-color: #FAF8F5 !important;
  background: #FAF8F5 !important;
  color: #161513 !important;
}

#about, #angebote, #events, #faq, #contact {
  background-color: #FAF8F5 !important;
  background: #FAF8F5 !important;
  color: #161513 !important;
}

.events-epic-section {
  background-color: #FAF8F5 !important;
  background: #FAF8F5 !important;
  color: #161513 !important;
}

/* WORKSHOP MODULE CARDS (HERO LUXURY EDITORIAL CARD STYLE) */
.ws-module-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 0px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

.ws-card-disc {
  background: #FAF8F5 !important;
  border: 2.5px solid #BA5D45 !important;
  color: #BA5D45 !important;
}

.ws-modul-badge {
  color: #BA5D45 !important;
}

/* HERO BRAND BLACK BUTTON STYLING SITE-WIDE */
.hero-btn-primary,
.ws-primary-cta,
.btn-primary,
.ws-submit-btn {
  background: #000000 !important;
  color: #FFFFFF !important;
  font-family: var(--ff-sans) !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  border-radius: 0px !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1) !important;
  transition: all 200ms ease !important;
}

.hero-btn-primary:hover,
.ws-primary-cta:hover,
.btn-primary:hover,
.ws-submit-btn:hover {
  background: #22201D !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15) !important;
}

/* CONTACT CARD & FRAME */
.contact-card-frame,
.stadtarchiv-overview {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 0px !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05) !important;
  color: #161513 !important;
}

/* FOOTER HARMONIZATION */
footer {
  background: #FAF8F5 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #4A4744 !important;
}

footer .footer-name {
  color: #161513 !important;
}

footer a:hover {
  color: #BA5D45 !important;
}

  .hero-designer-gallery {
    min-height: 380px !important;
  }

  .main-portrait-card {
    max-width: 250px !important;
  }

  .top-right-card {
    max-width: 150px !important;
    top: -10px !important;
    right: -5px !important;
  }

  .bottom-left-card {
    max-width: 140px !important;
    left: -10px !important;
    bottom: -5px !important;
  }

  /* Bio / About Section Mobile Optimization */
  .about-portrait-col {
    position: static !important;
    top: auto !important;
    width: 100% !important;
    margin-bottom: 1rem !important;
  }

  .simple-about-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .about-portrait-col .portrait-frameless {
    max-width: 260px !important;
    margin: 0 auto !important;
  }

  .about-lead {
    font-size: 1.3rem !important;
    line-height: 1.4 !important;
    padding-left: 0 !important;
    margin-bottom: 1.5rem !important;
  }

  .bio-abstract-lead,
  .bio-abstract-body {
    font-size: 0.98rem !important;
    line-height: 1.7 !important;
  }

  /* 5. Angebote (Workshops / Mentoring / Stage) Cards */
  .formats-menu-grid {
    grid-template-columns: 1fr !important;
    gap: 1.4rem !important;
  }

  .gallery-exhibition-card {
    padding: 1.6rem 1.3rem !important;
  }

  .tile-title {
    font-size: 1.5rem !important;
  }

  /* 6. Slot Machine Arcade Mobile Optimization */
  .slot-machine-outer {
    max-width: 100% !important;
    margin: 0 auto;
    border-radius: 12px;
  }

  .slot-cabinet {
    padding: 1.2rem 1rem !important;
  }

  .slot-reel-window {
    height: 110px !important;
  }

  .slot-score-item {
    font-size: 1.1rem !important;
  }

  /* 7. Substack & Texte Section */
  .texte-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* 8. Contact Form Section Mobile Optimization */
  #contact {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  #contact .contact-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.6rem 1.2rem !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
  }

  #contact header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.8rem !important;
  }

  #contact .form-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
  }

/* 100% MATCH TO MARTHA'S MOCKUP (DISPLACED / VERSETZT LAYOUT WITH CHAMPAGNE BACKGROUND) */
#about {
  background-color: #FAF8F5 !important;
  background: #FAF8F5 !important;
  padding-top: 6.5rem !important;
  padding-bottom: 7.5rem !important;
}

#about .simple-about-grid {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  align-items: center !important;
  position: relative !important;
  width: 100% !important;
  margin: 0 auto !important;
}

/* LEFT: LARGE FOREGROUND STRAIGHT PHOTOGRAPH (ANCHORED BOTTOM-RIGHT, EXPANDED LEFT) */
#about .about-portrait-col {
  grid-column: 1 / 6 !important;
  grid-row: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
  z-index: 20 !important; /* FOREGROUND LAYER SITTING ON TOP OF TEXT PANEL */
  margin: 0 !important;
}

#about .portrait-frameless {
  position: relative !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible !important;
}

#about .about-portrait-col img,
#about .portrait-frameless img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1160 / 1280 !important;
  object-fit: contain !important;
  border-radius: 0px !important;
  border: 2px solid #FFFFFF !important; /* SUBTLE THIN WHITE BORDER */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14) !important;
  display: block !important;
  transform-origin: right bottom !important; /* ANCHOR BOTTOM-RIGHT CORNER FIXED IN PLACE */
  transform: scale(1.4) !important; /* REDUCED 50% SMALLER SCALE WITH FIXED BOTTOM-RIGHT ANCHOR */
  clip-path: inset(0 0 0 1cm) !important; /* CROPS 1CM OFF THE LEFT SIDE OF THE PHOTO */
}

/* RIGHT: OFF-WHITE BACKGROUND TEXT PANEL (ENDS FLUSH AT COLUMN 13 - MATCHING HERO RIGHT EDGE EXACTLY) */
#about .about-text-col {
  grid-column: 3 / 13 !important; /* SPANS COLUMNS 3 THROUGH 12, ENDING FLUSH AT RIGHT CONTAINER EDGE (COLUMN 13) */
  grid-row: 1 !important;
  width: 100% !important;
  max-width: none !important;
  background: #FFFFFF !important;
  border-radius: 0px !important;
  padding: 3.8rem 4.5rem 3.8rem clamp(300px, 32%, 410px) !important; /* INTERNAL LEFT PADDING MOVES TEXT SAFELY RIGHT OF OVERLAPPING PHOTO */
  margin: 0 !important;
  position: relative !important;
  z-index: 10 !important;       /* BACKGROUND TEXT PANEL LAYER */
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.05) !important;
}

/* QUOTE HEADLINE: 32-40px DESKTOP SCALE WITH TERRACOTTA QUOTE BAR */
#about .about-lead {
  font-family: var(--ff-sans) !important;
  font-size: clamp(1.75rem, 2.6vw, 2.2rem) !important;
  font-weight: 700 !important;
  line-height: 1.28 !important;
  color: #161513 !important;
  margin-bottom: 1.6rem !important;
  letter-spacing: -0.02em !important;
  border-left: 3.5px solid #BA5D45 !important;
  padding-left: 1.4rem !important;
}

#about .bio-text {
  gap: 1.1rem !important;
}

#about .bio-text p {
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  color: #4A4744 !important;
  margin-bottom: 0 !important;
}

/* ABOUT SECTION RESPONSIVE OVERLAP (< 992px) */
@media (max-width: 992px) {
  #about {
    padding-top: 4.5rem !important;
    padding-bottom: 5rem !important;
  }

  #about .simple-about-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  #about .about-portrait-col {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    z-index: 1 !important;
    margin-top: 0 !important;
  }

  #about .about-portrait-col img,
  #about .portrait-frameless img {
    width: 100% !important;
    height: 440px !important;
    object-fit: cover !important;
    object-position: center 22% !important;
    border-radius: 0px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
  }

  #about .about-text-col {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 94% !important;
    margin-left: 0 !important;
    margin-top: -65px !important; /* Overlaps bottom of photo on mobile */
    padding: 2.5rem 1.8rem !important;
    background: #FFFFFF !important;
    border-radius: 0px !important;
    position: relative !important;
    z-index: 10 !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05) !important;
  }
}

/* PLAYFUL ROUND ARCADE BUTTON & HERO PERSONALITY ACCENTS */
.hero-badge-pill {
  background: rgba(156, 74, 43, 0.08);
  color: #9C4A2B;
  border: 1px solid rgba(156, 74, 43, 0.2);
  border-radius: 50px;
  padding: 0.35rem 0.95rem;
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: inline-block;
}

.editorial-highlight {
  color: #9C4A2B;
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
}

.btn-arcade-playful {
  background: linear-gradient(135deg, #22201D 0%, #121110 100%);
  color: #F5C75E;
  border: 2px solid #D4AF37;
  border-radius: 50px;
  padding: 0.75rem 1.4rem;
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.28), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 250ms cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.btn-arcade-playful:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.45);
  border-color: #FFE699;
  color: #FFFFFF;
}

.arcade-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #4CAF50;
  border-radius: 50%;
  box-shadow: 0 0 8px #4CAF50;
  animation: pulseNeon 1.5s infinite;
}

@keyframes pulseNeon {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px #4CAF50; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

/* TRULY ROUND 3D ARCADE COIN BUTTON FLOATING BETWEEN TEXT & PICTURE */
.btn-arcade-circular {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FFE98A 0%, #D4AF37 55%, #8C6A18 100%);
  border: 3px solid #FFF8D4;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.45), inset 0 2px 4px rgba(255, 255, 255, 0.8), inset 0 -4px 6px rgba(0, 0, 0, 0.35);
  color: #1A1916;
  font-family: var(--ff-sans);
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.34, 1.56, 0.64, 1);
  position: absolute;
  left: -56px;
  bottom: 35px;
  z-index: 20;
  transform: rotate(-7deg);
}

.btn-arcade-circular:hover {
  transform: scale(1.12) rotate(0deg);
  box-shadow: 0 16px 38px rgba(212, 175, 55, 0.65), inset 0 2px 6px rgba(255, 255, 255, 0.9);
  border-color: #FFFFFF;
}

.btn-arcade-circular .arcade-icon {
  font-size: 1.45rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .btn-arcade-circular {
    position: relative !important;
    left: 0 !important;
    bottom: 0 !important;
    margin: 1.5rem auto 0 auto;
    transform: none !important;
  }
}

.hero-personality-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(234, 231, 222, 0.8);
  border-radius: 12px;
  padding: 0.65rem 1rem;
  font-family: var(--ff-sans);
  font-size: 0.84rem;
  font-weight: 600;
  color: #181716;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* SANS-SERIF EDITORIAL QUOTE TYPOGRAPHY (HIGH LEGIBILITY & LOW EYE STRAIN) */
.about-lead {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.55 !important;
  letter-spacing: -0.012em !important;
  color: #181716;
  margin-bottom: 1.6rem;
}

.bio-quote-callout {
  background: rgba(255, 255, 255, 0.05) !important;
  border-left: 4px solid #C0392B !important;
  padding: 1.2rem 1.6rem;
  border-radius: 0 12px 12px 0;
  margin: 0.8rem 0;
}

.bio-quote-callout p {
  font-family: var(--ff-sans);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.65 !important;
  letter-spacing: -0.008em !important;
  color: #FFFFFF !important;
  margin: 0;
}

/* ── GIMMICK BUTTON & ARCADE MODAL STYLING ─────────────────── */
.btn-gimmick {
  background: linear-gradient(135deg, #1C1B18 0%, #34312C 100%);
  color: #F5C75E;
  border: 1px solid #D4AF37;
  border-radius: 50px;
  padding: 0.65rem 1.3rem;
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.22);
  transition: all 250ms ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-gimmick:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.38);
  border-color: #FFE699;
  color: #FFFFFF;
}

/* ARCADE MODAL OVERLAY */
.arcade-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 11, 10, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.arcade-modal-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  display: flex !important;
}

.arcade-modal-content {
  position: relative;
  background: #181715;
  border: 1px solid #383530;
  border-radius: 20px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ECEAE5;
}

.arcade-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: #A09D96;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 200ms ease;
}

.arcade-modal-close:hover {
  color: #FFFFFF;
}

.arcade-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #D4AF37;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.12);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: inline-block;
  margin-bottom: 0.8rem;
}

.arcade-header-block h3 {
  font-family: var(--ff-sans);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.35;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}

.arcade-subtext {
  font-size: 0.92rem;
  color: #B5B2AB;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 1.5rem auto;
}

.arcade-footer-block {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #2B2A27;
  padding-top: 1.2rem;
  width: 100%;
}

.arcade-takeaway {
  font-size: 0.9rem;
  color: #D0CEC7;
  line-height: 1.6;
  max-width: 500px;
}

/* MARTHAS NOTENBINGO CARD STYLING */
.bingo-card-container {
  width: 100%;
  max-width: 520px;
  background: #22201D;
  border: 2px solid #D4AF37;
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(212,175,55,0.08);
  margin-bottom: 1rem;
}

.bingo-header-banner {
  display: flex;
  justify-content: space-around;
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: #D4AF37;
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
  border-bottom: 2px solid rgba(212,175,55,0.3);
  padding-bottom: 0.4rem;
}

.bingo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.bingo-tile {
  background: #181715;
  border: 1px solid #3A3732;
  border-radius: 10px;
  padding: 0.7rem 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 84px;
  cursor: pointer;
  transition: all 200ms ease;
  position: relative;
  overflow: hidden;
}

.bingo-tile:hover {
  background: #282622;
  border-color: #D4AF37;
  transform: translateY(-2px);
}

.bingo-tile.stamped {
  background: #2C2618;
  border-color: #E8A87C;
  box-shadow: 0 0 12px rgba(232, 168, 124, 0.3);
}

.bingo-tile.stamped::after {
  content: '✓ BINGO';
  position: absolute;
  inset: 0;
  background: rgba(156, 74, 43, 0.88);
  color: #FFFFFF;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-10deg) scale(1.05);
  box-shadow: inset 0 0 8px rgba(0,0,0,0.4);
}

.bingo-score {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 700;
}

.bingo-score.red    { color: #E56B6F; }
.bingo-score.green  { color: #6B7FD7; }
.bingo-score.yellow { color: #F5C75E; }
.bingo-score.fail   { color: #FF4D4D; font-weight: 800; }

.bingo-icon {
  font-size: 1.1rem;
}

.bingo-label {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  line-height: 1.2;
  color: #B5B2AB;
  text-align: center;
}

.bingo-status-banner {
  margin-top: 0.9rem;
  background: rgba(212,175,55,0.1);
  border: 1px dashed rgba(212,175,55,0.4);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #F5C75E;
  font-weight: 600;
}

/* ═════════════════════════════════════════════════════════════════
   INTENTIONALLY CRAFTED MOBILE DESIGN SYSTEM & TOUCH ERGONOMICS
   (Applies strictly to mobile/tablet screens <= 991px; Desktop is untouched)
   ═════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  
  /* ── 1. GENERAL MOBILE LAYOUT & SPACING ─────────────────────── */
  .section-inner {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    padding-top: 3rem !important;
    padding-bottom: 3.5rem !important;
  }

  /* ── 2. MOBILE NAVIGATION & TOUCH HEADER ─────────────────────── */
  #main-nav {
    padding: 0.85rem 1.25rem !important;
    background: rgba(250, 248, 245, 0.94) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  }

  .nav-inner {
    padding: 0 !important;
  }

  /* Mobile menu button / touch target */
  .mobile-menu-btn {
    min-width: 44px !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.35rem !important;
  }

  /* Mobile Overlay Drawer Menu */
  .mobile-menu-overlay, #mobile-menu {
    padding: 2rem 1.5rem !important;
    background: rgba(26, 25, 23, 0.97) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
  }

  .mobile-menu-overlay a, #mobile-menu a {
    font-size: 1.25rem !important;
    padding: 0.85rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
  }

  /* ── 3. BESPOKE MOBILE HERO SECTION ───────────────────────────── */
  #hero {
    min-height: auto !important;
    padding-top: 4.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  /* ── 3. BESPOKE MOBILE HERO SECTION (STRICTLY MOBILE <= 991px) ───── */
  #hero {
    min-height: auto !important;
    padding-top: 1.6rem !important; /* Elegant space below sticky top nav bar */
    padding-bottom: 2.2rem !important; /* Small bar of beige space below CTA at bottom of viewport */
  }

  /* Override inline min-height: 540px on main grid container for mobile */
  #hero > div {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important; /* CRITICAL: Overrides desktop inline min-height: 540px */
    height: auto !important;
    gap: 0 !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  /* Mobile photo collage container & horizontal centering */
  .hero-stacked-collage-col, .hero-right-column {
    order: -1 !important; /* Picture collage on top for mobile */
    width: 100% !important;
    min-height: 0 !important; /* CRITICAL: Overrides desktop inline min-height: 520px */
    height: 185px !important; /* Enlarged mobile picture collage */
    display: flex !important;
    justify-content: center !important; /* Centered horizontally on mobile viewport */
    align-items: flex-start !important;
    position: relative !important;
    margin: 0 auto 0.6rem auto !important;
    padding: 0 !important;
  }

  .hero-stage-card-frame {
    width: 74% !important;
    max-width: 270px !important;
    height: 170px !important;
    margin: 0 auto !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08) !important;
  }

  .hero-workshop-card-frame {
    width: 56% !important;
    max-width: 205px !important;
    height: 145px !important;
    top: 14px !important;
    left: 13% !important;
    border-width: 5px !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15) !important;
  }

  /* Mobile text column & slogan repositioning */
  .hero-content-col, .hero-left-column {
    order: 2 !important; /* Text below pictures */
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    align-self: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Override inline margin-bottom on eyebrow container for mobile */
  .hero-content-col > div:first-child {
    margin-bottom: 0.4rem !important;
  }

  .hero-eyebrow {
    font-size: 0.68rem !important;
    letter-spacing: 0.12em !important;
  }

  /* Override inline margin on h1 headline for mobile */
  .hero-content-col h1, .hero-sentence-block {
    font-size: clamp(1.2rem, 4.4vw, 1.4rem) !important;
    line-height: 1.24 !important;
    margin-bottom: 0.5rem !important;
    letter-spacing: -0.018em !important;
  }

  .hero-sentence {
    display: block !important;
    text-align: left !important;
  }

  /* Override inline margin on paragraph for mobile */
  .hero-content-col p {
    font-size: clamp(0.88rem, 3.2vw, 0.94rem) !important;
    line-height: 1.45 !important;
    margin-bottom: 0.85rem !important;
  }

  /* Mobile Stacked Full-Width Buttons */
  .hero-actions, .hero-cta-wrapper {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.4rem !important;
    margin-top: 0 !important;
    margin-bottom: 0.4rem !important;
  }

  .hero-actions a, .hero-actions button, .hero-inline-pill {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0.8rem 1.2rem !important;
    font-size: 0.88rem !important;
    min-height: 46px !important;
    box-sizing: border-box !important;
  }

  /* ── 4. BESPOKE MOBILE ABOUT / NARRATIVE SECTION ────────────── */
  .about-editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .about-card, .editorial-quote-card {
    padding: 1.6rem 1.25rem !important;
  }

  /* ── 5. BESPOKE MOBILE WORKSHOPS MODULES ─────────────────────── */
  .ws-modules-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .ws-module-card {
    padding: 1.6rem 1.25rem !important;
  }

  .ws-expand-trigger {
    padding: 0.6rem 0 !important;
    min-height: 44px !important;
  }

  /* Full-width touch CTA button inside workshop cards */
  .ws-primary-cta {
    width: 100% !important;
    min-height: 46px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.9rem !important;
    padding: 0.8rem 1rem !important;
    box-sizing: border-box !important;
  }

  /* ── 6. BESPOKE MOBILE STADTARCHIV CAROUSEL ──────────────────── */
  .events-editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .rotating-stage-spotlight, #rotating-stage-spotlight {
    height: 360px !important;
    min-height: 360px !important;
    max-height: 360px !important;
  }

  #spotlight-prev, #spotlight-next {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.4rem !important;
  }

  #spotlight-prev {
    left: 0.6rem !important;
  }

  #spotlight-next {
    right: 0.6rem !important;
  }

  .photo-credits-container {
    flex-wrap: wrap !important;
    gap: 0.35rem 0.6rem !important;
    padding: 0.4rem 0.2rem !important;
  }

  /* ── 7. BESPOKE MOBILE CONTACT FORM & INPUTS ─────────────────── */
  .contact-editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Prevent iOS Safari input auto-zoom by setting font-size to 16px */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    font-size: 16px !important;
    padding: 0.85rem 1rem !important;
    border-radius: 4px !important;
    box-sizing: border-box !important;
  }

  form button[type="submit"] {
    width: 100% !important;
    min-height: 50px !important;
    padding: 0.95rem 1.5rem !important;
    font-size: 0.95rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* ── 8. BESPOKE MOBILE BOOKING MODAL ────────────────────────── */
  #ws-modal-overlay {
    align-items: flex-end !important; /* Slide up from bottom on mobile */
    padding: 0 !important;
  }

  #ws-modal-card, .ws-modal-card {
    max-width: 100% !important;
    width: 100% !important;
    max-height: 92vh !important;
    border-radius: 20px 20px 0 0 !important;
    padding: 2rem 1.4rem 2.5rem 1.4rem !important;
    overflow-y: auto !important;
  }

  #ws-modal-close {
    width: 44px !important;
    height: 44px !important;
    top: 1.2rem !important;
    right: 1.2rem !important;
    font-size: 1.4rem !important;
  }

  /* ── 9. MOBILE FOOTER NAV ─────────────────────────────────────── */
  .footer-links {
    gap: 1.2rem 1.6rem !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .footer-links a {
    font-size: 0.92rem !important;
    padding: 0.4rem 0.2rem !important;
    display: inline-block !important;
  }
}

/* Extra small mobile devices (phones <= 480px) */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.85rem !important;
  }

  .rotating-stage-spotlight, #rotating-stage-spotlight {
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important;
  }

  .hero-image-card {
    height: 320px !important;
  }
}
