:root {
  /* CLIENT PALETTE — Sage/Olive */
  --sage-100: #DEE2DA;
  --sage-200: #B5B9B0;
  --sage-400: #8B9086;
  --sage-600: #62665B;
  --sage-900: #383D31;

  /* Functional aliases */
  --bg: var(--sage-100);
  --bg-deep: var(--sage-200);
  --ink: var(--sage-900);
  --ink-soft: #4A4E43;         /* ~6.6:1 on bg, was sage-600 at 4.4:1 */
  --ink-muted: var(--sage-600); /* ~4.4:1 on bg, was sage-400 at 2.3:1 */
  --line: rgba(56, 61, 49, 0.18);
  --line-soft: rgba(56, 61, 49, 0.08);
  --accent: var(--sage-900);
  --ci: #444888;              /* CI-Akzentfarbe Blauviolett */

  --brand: 'Cinzel', Georgia, serif;
  --display: 'Fraunces', Georgia, serif;
  --body: 'DM Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
  

  /* Gradient palette */
  --gradient-1: #1F5C3A;   /* forest green */
  --gradient-2: #82AD42;   /* olive green */
  --gradient-3: #F0C4A8;   /* peach */
  --gradient-4: #BE9168;   /* warm tan */
  --gradient-5: #6EB5D1;   /* sky blue */
}
* { box-sizing: border-box; margin: 0; padding: 0; }
/* Neutralise WP global-styles block-gap injection (margin-block-start on siblings) */
main > * { margin-block-start: 0 !important; }
html { scroll-behavior: smooth; scroll-padding-top: 74px; }
@media (max-width: 968px) { html { scroll-padding-top: 70px; } }
body { background: var(--bg); color: var(--ink); font-family: var(--body); line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::selection { background: var(--sage-900); color: var(--sage-100); }
img { max-width: 100%; display: block; }

/* Link reset */
a, a:link, a:visited, a:hover, a:active,
a *, a h1, a h2, a h3, a h4, a h5, a h6,
a p, a span, a div, a strong, a em {
  color: inherit;
  text-decoration: none;
}

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .wrap { padding: 0 20px; } }

/* INFO BAR */
.info-bar { padding: 10px 32px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-soft); display: flex; justify-content: space-between; background: var(--bg); position: relative; z-index: 3; }
.info-bar .dot { color: var(--sage-900); }
@media (max-width: 968px) { .info-bar { display: none; } }

/* NAV */
nav.main { position: sticky; top: 0; z-index: 100; background: rgba(222, 226, 218, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); padding: 16px 32px; }
.nav-inner { max-width: 1320px; margin: 0 auto; display: flex; justify-content: flex-start; align-items: center; position: relative; }
.nav-logo { display: flex; align-items: center; gap: 14px; color: var(--sage-900); }
.nav-logo img { width: 42px; height: 42px; }
.nav-logo .wm { font-family: var(--brand); font-size: 16px; letter-spacing: 0.2em; font-weight: 500; }
.nav-links { display: flex; gap: 32px; list-style: none; font-family: var(--display); font-size: 16px; font-style: italic; font-weight: 300; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.nav-links a { color: var(--ink-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--sage-900); }
.nav-cta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; padding: 10px 18px; background: var(--sage-900); color: var(--sage-100) !important; transition: background 0.2s; }
.nav-cta:hover { background: var(--sage-600); }

/* MOBILE NAV */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--sage-900);
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.nav-burger span:nth-child(2) {
  transition: transform 0.35s ease, opacity 0.3s ease 0.05s;
}
.nav-burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { transform: translateX(-8px); opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--sage-900);
  color: var(--sage-100);
  z-index: 99;
  padding: 90px 32px 40px;
  flex-direction: column;
  gap: 0;
}
.nav-mobile.active { display: flex; }
.nav-mobile a {
  font-family: var(--display);
  font-size: 32px;
  font-style: italic;
  font-weight: 300;
  color: var(--sage-100);
  padding: 18px 0;
  border-top: 1px solid rgba(222, 226, 218, 0.15);
}
.nav-mobile a:last-child { border-bottom: 1px solid rgba(222, 226, 218, 0.15); }
.nav-mobile .mobile-cta {
  margin-top: 32px;
  background: var(--sage-100);
  color: var(--sage-900);
  padding: 16px 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  text-align: center;
  border: none;
}

@media (max-width: 968px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  nav.main { padding: 14px 20px; }
  .nav-inner { justify-content: space-between; }
}

/* CINEMATIC HERO with VIDEO */
.hero-cinematic {
  position: relative;
  /* 41px info-bar + 57px nav = 98px on desktop; 100dvh berücksichtigt mobile URL-bar */
  height: calc(100dvh - 98px);
  min-height: 420px;
  max-height: 860px;
  overflow: hidden;
  background: var(--sage-900);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: relative;
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero-cinematic {
    /* 33px info-bar + 49px nav = 82px on mobile */
    height: calc(100dvh - 82px);
    min-height: 320px;
  }
  .hero-video {
    width: 100%;
    height: auto;
    max-height: 100%;
  }
}
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2; /* sits above video; JS fades it out once playback begins */
}
.hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(56, 61, 49, 0.25) 0%, rgba(56, 61, 49, 0.1) 40%, rgba(56, 61, 49, 0.55) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--sage-100);
  padding: 32px;
  text-align: center;
  z-index: 3;
}
.hero-mandala-big {
  width: 88px;
  height: 88px;
  color: var(--sage-100);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 1.8s ease 0.3s forwards;
}
.hero-cinematic h1 {
  font-family: var(--brand);
  font-size: clamp(48px, 10vw, 140px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeIn 1.8s ease 0.6s forwards;
}
.hero-tagline-big {
  font-family: var(--display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  max-width: 640px;
  color: rgba(222, 226, 218, 0.92);
  opacity: 0;
  animation: fadeIn 1.8s ease 1.0s forwards;
  font-variation-settings: 'SOFT' 80, 'opsz' 144;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(222, 226, 218, 0.6);
  z-index: 4;
  opacity: 0;
  animation: fadeIn 1.8s ease 1.4s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll-cue::after {
  content: '';
  width: 1px;
  height: 32px;
  background: rgba(222, 226, 218, 0.4);
  animation: cueLine 2.4s ease-in-out infinite;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cueLine { 0%, 100% { transform: scaleY(1); transform-origin: top; } 50% { transform: scaleY(0.5); } }

/* HERO ANCHOR */
.hero-anchor {
  background: transparent;
  padding: 36px 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero-anchor::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: var(--bg); }
.hero-anchor > * { position: relative; z-index: 2; }
.hero-anchor-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
}
.hero-anchor-date {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-900);
}
.hero-anchor-date .sep { color: var(--sage-400); margin: 0 12px; }
.hero-anchor-meta {
  font-family: var(--display);
  font-size: 16px;
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
}
.hero-anchor-cta {
  background: var(--sage-900);
  color: var(--sage-100) !important;
  padding: 14px 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero-anchor-cta:hover { background: var(--sage-600); }
@media (max-width: 768px) {
  .hero-anchor-inner { grid-template-columns: 1fr; gap: 16px; text-align: center; }
}

/* SECTION */
.section { padding: 96px 32px; border-top: 1px solid var(--line); position: relative; isolation: isolate; }
.section::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: var(--bg); }
.section.deep { background: transparent; }
.section.deep::before { background: var(--bg-deep); }
.section.dark { background: transparent; color: var(--sage-100); }
.section.dark::before { background: var(--sage-900); }
.section.light { background: transparent; }
.section.light::before { background: var(--sage-100); }
.section > * { position: relative; z-index: 2; }
/* On bg-deep (sage-200) the default ink-muted/soft are too light — shift them darker */
.section.deep,
.catalogue-block--deep,
.ticket-page-section.deep {
  --ink-muted: var(--sage-600);
  --ink-soft: var(--sage-900);
}
.section-head { max-width: 1320px; margin: 0 auto 64px; }
.section-num { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage-900); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.section-num::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.section.dark .section-num { color: var(--sage-200); }
.section.dark .section-num::after { background: rgba(222, 226, 218, 0.2); }
.section-title { font-family: var(--display); font-size: clamp(40px, 5.5vw, 76px); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; font-variation-settings: 'SOFT' 80, 'opsz' 144; }
.section-title em { font-style: italic; color: var(--ci); }
.section.dark .section-title em { color: var(--sage-200); }
.section-lede { font-family: var(--display); font-size: clamp(18px, 2vw, 22px); font-weight: 300; font-style: italic; line-height: 1.55; color: var(--ink-soft); max-width: 720px; margin-top: 16px; }
.section.dark .section-lede { color: rgba(222, 226, 218, 0.75); }
@media (max-width: 768px) { .section { padding: 64px 20px; } }

/* CONCEPT */
.concept-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.concept-body { font-family: var(--display); font-size: 21px; font-weight: 300; line-height: 1.65; color: var(--ink-soft); margin-bottom: 48px; }
.concept-quote { border-left: 3px solid var(--sage-600); padding: 12px 0 12px 28px; max-width: 560px; }
.concept-quote-text { font-family: var(--display); font-size: 24px; font-style: italic; font-weight: 300; line-height: 1.4; color: var(--ink); margin-bottom: 14px; }
.concept-quote-attr { font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-muted); }
@media (max-width: 968px) { .concept-grid { grid-template-columns: 1fr; gap: 32px; } }

/* PILLARS — Programm */
.pillar-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.pillar { position: relative; }
.pillar-image { aspect-ratio: 3 / 4; overflow: hidden; margin-bottom: 28px; position: relative; }
.pillar-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.pillar:hover .pillar-image img { transform: scale(1.03); }
.pillar-num { position: absolute; top: 16px; left: 16px; background: var(--sage-900); color: var(--sage-100); padding: 6px 10px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; z-index: 3; }
.pillar h3 { font-family: var(--display); font-size: 30px; font-weight: 400; line-height: 1.15; margin-bottom: 14px; }
.pillar h3 em { font-style: italic; color: var(--ink-soft); font-weight: 300; display: block; font-size: 19px; margin-top: 4px; }
.pillar p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 22px; }
.pillar-link { font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage-900)!important; border-bottom: 1px solid var(--sage-900); padding-bottom: 3px; }
@media (max-width: 968px) { .pillar-grid { grid-template-columns: 1fr; gap: 60px; } }

/* TRAINERS */
.trainers-header { max-width: 1320px; margin: 0 auto 64px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
#trainer .section-head { margin-bottom: 0; }
.trainer-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.trainer-card { cursor: pointer; }
.trainer-image { aspect-ratio: 4 / 5; overflow: hidden; margin-bottom: 20px; }
.trainer-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.trainer-card:hover .trainer-image img { transform: scale(1.04); }
.trainer-discipline { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage-600); margin-bottom: 6px; }
.trainer-name { font-family: var(--display); font-size: 24px; font-weight: 400; line-height: 1.15; margin-bottom: 10px; }
.trainer-bio { font-family: var(--display); font-size: 15px; font-style: italic; font-weight: 300; line-height: 1.5; color: var(--ink-soft); }
.trainers-cta { max-width: 1320px; margin: 40px auto 0; text-align: center; }
.trainers-cta a { font-family: var(--display); font-size: 24px; font-weight: 300; font-style: italic; color: var(--ci); border-bottom: 1px solid var(--ci); padding-bottom: 6px; }
#trainer { padding-bottom: 48px; }
@media (max-width: 1100px) { .trainer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 968px) { .trainers-header { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 540px) { .trainer-grid { grid-template-columns: 1fr; } }

/* GALLERY */
.gallery-section { padding: 80px 32px; border-top: 1px solid var(--line); background: transparent; position: relative; isolation: isolate; }
.gallery-section::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: var(--sage-100); }
.gallery-section > * { position: relative; z-index: 2; }
.gallery-head { max-width: 1320px; margin: 0 auto 56px; }
.gallery-eyebrow { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage-900); margin-bottom: 20px; }
.gallery-title { font-family: var(--display); font-size: clamp(36px, 4.5vw, 56px); font-weight: 300; line-height: 1.1; max-width: 700px; font-variation-settings: 'SOFT' 80; }
.gallery-title em { font-style: italic; color: var(--ci); }

/* SLIDER LAYOUT — desktop >1024px, tablet 768–1024px, mobile <768px */
.gallery-area--tablet { display: none; }
.gallery-mobile       { display: none; }
@media (max-width: 1024px) {
  .gallery-area--desktop { display: none; }
  .gallery-area--tablet  { display: block; }
}
@media (max-width: 767px) {
  .gallery-section { padding: 60px 20px; }
  .gallery-area--tablet { display: none; }
  .gallery-mobile { display: block; }
}

.gallery-slider-wrap { position: relative; max-width: 1320px; margin: 0 auto; }
.gallery-slider { margin: 0 52px; }

/* Grid inside each Slick slide */
.gallery-grid-slide {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery-area--tablet .gallery-grid-slide {
  grid-template-columns: repeat(2, 1fr);
}

/* Mobile lazy-load grid */
.gallery-mobile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.gallery-mobile-item img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.gallery-mobile-item--hidden { display: none; }
.gallery-mobile-more { margin-top: 28px; text-align: center; }
.gallery-load-more {
  background: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 30px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
@media (hover: hover) { .gallery-load-more:hover { background: var(--ink); color: var(--bg); } }
.gallery-grid-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-grid-item:hover img { transform: scale(1.03); }

/* Slick overrides */
.gallery-slider .slick-list { overflow: hidden; }
.gallery-slider .slick-track { display: flex !important; }
.gallery-slider .slick-slide { height: auto; }
.gallery-slider .slick-slide > div { height: 100%; }

/* Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: 1px solid var(--ink);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
  padding: 0;
}
.gallery-arrow:hover { background: var(--ink); color: var(--bg); }
.gallery-prev { left: 0; }
.gallery-next { right: 0; }

/* Counter */
.gallery-counter {
  text-align: center;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

/* TESTIMONIALS */
.testimonial-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.testimonial-card { padding-top: 24px; border-top: 1px solid var(--line); }
.testimonial-mark { font-family: var(--display); font-size: 56px; line-height: 0.7; color: var(--sage-600); margin-bottom: 16px; }
.testimonial-quote { font-family: var(--display); font-size: 19px; font-style: italic; font-weight: 300; line-height: 1.5; margin-bottom: 24px; }
.testimonial-author { font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-muted); }
@media (max-width: 768px) { .testimonial-grid { grid-template-columns: 1fr; gap: 32px; } }

/* LOCATION */
.location-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.location-image { aspect-ratio: 5/4; overflow: hidden; }
.location-image img { width: 100%; height: 100%; object-fit: cover; }
.location-content h3 { font-family: var(--display); font-size: 36px; font-weight: 300; line-height: 1.1; margin-bottom: 24px; font-variation-settings: 'SOFT' 80; }
.location-content h3 em { font-style: italic; color: var(--sage-600); }
.location-content p { font-family: var(--display); font-size: 17px; font-weight: 300; line-height: 1.65; color: var(--ink-soft); margin-bottom: 28px; }
.location-stats { list-style: none; margin-bottom: 32px; }
.location-stats li { padding: 14px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.location-stats li:last-child { border-bottom: 1px solid var(--line); }
.location-stats .value { color: var(--sage-900); }
.btn-link { font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage-900); border-bottom: 1px solid var(--sage-900); padding-bottom: 4px; }
@media (max-width: 968px) { .location-grid { grid-template-columns: 1fr; gap: 40px; } }

/* FAMILY */
.family-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.family-image { aspect-ratio: 4/5; overflow: hidden; }
.family-image img { width: 100%; height: 100%; object-fit: cover; }
.family-content h3 { font-family: var(--display); font-size: clamp(36px, 4vw, 52px); font-weight: 300; line-height: 1.05; margin-bottom: 24px; font-variation-settings: 'SOFT' 80; }
.family-content h3 em { font-style: italic; color: var(--ci); display: block; }
.family-content > p { font-family: var(--display); font-size: 18px; font-weight: 300; line-height: 1.65; color: var(--ink-soft); margin-bottom: 28px; }
.family-points { list-style: none; margin-bottom: 32px; }
.family-points li { padding: 14px 0; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--ink-soft); }
.family-points li:last-child { border-bottom: 1px solid var(--line); }
.family-points li::before { content: ''; width: 8px; height: 8px; background: var(--sage-900); border-radius: 50%; }
@media (max-width: 968px) { .family-grid { grid-template-columns: 1fr; gap: 40px; } }

/* TICKETS */
.tickets-intro { margin-bottom: 64px; }
.ticket-grid { max-width: 1320px; margin: 0 auto 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ticket-card { padding: 40px 32px 32px; border: 1px solid rgba(222, 226, 218, 0.2); position: relative; transition: all 0.3s; }
.ticket-card.featured { background: rgba(222, 226, 218, 0.08); border-color: var(--sage-200); }
.ticket-card:hover { border-color: rgba(222, 226, 218, 0.5); }
.ticket-tag { position: absolute; top: -10px; left: 20px; background: var(--sage-200); color: var(--sage-900); padding: 4px 12px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; }
.ticket-name { font-family: var(--display); font-size: 32px; font-weight: 400; font-style: italic; line-height: 1; margin-bottom: 8px; }
.ticket-meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(222, 226, 218, 0.6); margin-bottom: 32px; }
.ticket-list { list-style: none; margin-bottom: 32px; }
.ticket-list li { padding: 12px 0; border-top: 1px solid rgba(222, 226, 218, 0.15); font-size: 13px; color: rgba(222, 226, 218, 0.85); }
.ticket-cta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage-100); border-bottom: 1px solid var(--sage-100); padding-bottom: 3px; }
.ticket-note { max-width: 1320px; margin: 0 auto; text-align: center; font-family: var(--display); font-size: 15px; font-style: italic; color: rgba(222, 226, 218, 0.6); }
@media (max-width: 968px) { .ticket-grid { grid-template-columns: 1fr; } }

/* NEWSLETTER — 2-Panel-Layout */
.newsletter {
  border-top: 1px solid var(--line);
  position: relative;
  isolation: isolate;
}
.newsletter-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.newsletter-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  isolation: isolate;
}
.newsletter-panel--dark {
  background: var(--sage-600);
  color: var(--sage-100);
}
.newsletter-panel--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/bg-images/bg-schwunglinien.png') center/cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}
.newsletter-panel--dark > * { position: relative; z-index: 1; }
.newsletter-panel--light {
  background: var(--sage-100);
}
.newsletter-panel--light::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/bg-images/bg-schwunglinien.png') center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
}
.newsletter-panel--light > * { position: relative; z-index: 1; }
.newsletter-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  display: block;
}
.newsletter-quote {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--sage-100)!important;
  margin-bottom: 14px;
  font-variation-settings: 'SOFT' 80;
}
.newsletter-attr {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(222,226,218,0.7);
}
.newsletter-panel h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 8px;
  color: var(--sage-900);
}



.newsletter-field-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 20px;
  margin-left: 4px;
  display: block;
  font-weight: 600;
  text-align: left;
}
.newsletter-form {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.newsletter-form .field-error {
  border-left: none;
  text-align: center;
  padding: 6px 0;
}
.newsletter-form input[type="email"] {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 14px 20px;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  outline: none;
}
.newsletter-form input[type="email"]::placeholder { color: var(--ink-muted); }
.newsletter-submit-btn {
  background: var(--sage-900);
  color: var(--sage-100) !important;
  padding: 16px 32px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.newsletter-submit-btn:hover { background: var(--sage-600); }
@media (max-width: 768px) {
  .newsletter-split { grid-template-columns: 1fr; }
  .newsletter-panel { padding: 60px 32px; }
}

/* FOOTER */
footer { background: transparent; color: var(--sage-100); padding: 80px 32px 32px; position: relative; }
footer::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: var(--sage-900); }
footer > * { position: relative; z-index: 2; }
.footer-top { max-width: 1320px; margin: 0 auto 56px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(222, 226, 218, 0.2); }
.footer-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; color: var(--sage-100); }
.footer-brand img { width: 44px; height: 44px; }
.footer-brand-wm { font-family: var(--brand); font-size: 20px; letter-spacing: 0.2em; font-weight: 500; text-transform: uppercase; }
.footer-tagline { font-family: var(--display); font-size: 16px; font-style: italic; line-height: 1.6; color: rgba(222, 226, 218, 0.7); max-width: 320px; margin-bottom: 24px; }
.footer-contact { font-size: 13px; color: rgba(222, 226, 218, 0.7); line-height: 1.6; }
.footer-contact a { display: block; }
.footer-col h4 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage-200); margin-bottom: 20px; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-family: var(--display); font-size: 16px; font-style: italic; color: var(--sage-100); }
.footer-col a:hover { color: var(--sage-200); }
.footer-bottom { max-width: 1320px; margin: 0 auto; display: flex; justify-content: space-between; font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(222, 226, 218, 0.5); }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } .footer-bottom { flex-direction: column; gap: 12px; } }

/* CATALOGUE PAGE */
.catalogue-section {
  padding: 96px 32px 120px;
  background: transparent;
  position: relative;
}
.catalogue-section::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: var(--bg); }
.catalogue-section > * { position: relative; z-index: 2; }
.catalogue-head {
  max-width: 1320px;
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.catalogue-title {
  font-family: var(--display);
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: 'SOFT' 80, 'opsz' 144;
}
.catalogue-title em { font-style: italic; color: var(--sage-600); }
.catalogue-note {
  max-width: 390px;
  font-family: var(--display);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-soft);
}
.catalogue-controls {
  max-width: 1320px;
  margin: 0 auto 52px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-chip {
  appearance: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.22s ease;
}
.filter-chip:hover,
.filter-chip.active {
  background: var(--sage-900);
  color: var(--sage-100);
  border-color: var(--sage-900);
}
.people-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px 24px;
}
.person-card {
  position: relative;
  min-width: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.person-card.is-hidden { display: none; }
.person-image {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5.35;
  overflow: hidden;
  background: var(--bg-deep);
  margin-bottom: 18px;
}
.person-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(56,61,49,0) 50%, rgba(56,61,49,0.34) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.98);
  transition: transform 0.65s ease, filter 0.65s ease;
}
.person-card:hover .person-image img { transform: scale(1.045); filter: saturate(0.95) contrast(1); }
.person-card:hover .person-image::after { opacity: 1; }
.person-index {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--sage-900);
  color: var(--sage-100);
  padding: 5px 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
}
.person-category {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin-bottom: 7px;
}
.person-name {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 9px;
  letter-spacing: -0.01em;
}
.person-meta {
  font-family: var(--display);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.46;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.person-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.person-tags span {
  border-top: 1px solid var(--line);
  padding-top: 6px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.catalogue-transition {
  max-width: 1320px;
  margin: 96px auto 0;
  padding: 56px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.catalogue-transition .small-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.catalogue-transition p {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 34px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  color: var(--ink-soft);
}

@media (max-width: 1100px) {
  .people-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .catalogue-section { padding: 72px 20px 88px; }
  .catalogue-head { grid-template-columns: 1fr; gap: 16px; }
  .people-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 18px; }
  .catalogue-transition { grid-template-columns: 1fr; gap: 20px; margin-top: 72px; }
}
@media (max-width: 540px) {
  .people-grid { grid-template-columns: 1fr; }
  .catalogue-controls { gap: 8px; }
  .filter-chip { width: calc(50% - 4px); }
}
/* CATALOGUE — subnav, block sections, person CTA */
.cat-subnav {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 0 32px;
  position: sticky;
  top: 57px;
  z-index: 90;
}
.cat-subnav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  gap: 0;
}
.cat-subnav-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 16px 24px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.cat-subnav-link:first-child { padding-left: 0; }
.cat-subnav-link:hover { color: var(--sage-900); border-bottom-color: var(--sage-900); }

.catalogue-block {
  padding: 96px 32px 112px;
  background: transparent;
  position: relative;
}
.catalogue-block::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: var(--bg); }
.catalogue-block--deep { background: transparent; }
.catalogue-block--deep::before { background: var(--bg-deep); }
.catalogue-block > * { position: relative; z-index: 2; }

.catalogue-block-head {
  max-width: 1320px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  align-items: start;
}
.cat-block-num {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-900);
  display: flex;
  align-items: center;
  gap: 14px;
}
.cat-block-num::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.catalogue-block-title {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: 'SOFT' 80, 'opsz' 144;
}
.catalogue-block-title em { font-style: italic; color: var(--ci); }
.catalogue-block-lede {
  font-family: var(--display);
  font-size: clamp(17px, 1.8vw, 21px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
  align-self: end;
}

.person-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-900) !important;
  border-bottom: 1px solid var(--sage-900);
  padding-bottom: 3px;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}
.person-cta:hover { opacity: 0.75; }

@media (max-width: 968px) {
  .catalogue-block { padding: 72px 20px 88px; }
  .catalogue-block-head { grid-template-columns: 1fr; gap: 20px; }
  .cat-block-num { grid-column: 1; }
  .cat-subnav { top: 49px; }
  .cat-subnav-link { padding: 14px 16px; }
  .cat-subnav-link:first-child { padding-left: 0; }
}
/* CATALOGUE — intro section */
.cat-intro {
  padding: 96px 32px 88px;
  background: transparent;
  border-top: 1px solid var(--line);
  position: relative;
}
.cat-intro::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: var(--bg); }
.cat-intro > * { position: relative; z-index: 2; }
.cat-intro-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.cat-intro-inner .section-num { margin-bottom: 40px; }
.cat-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.cat-intro-title {
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-variation-settings: 'SOFT' 80, 'opsz' 144;
}
.cat-intro-title em { font-style: italic; color: var(--ci); }
.cat-intro-body {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.cat-intro-body:last-of-type { margin-bottom: 0; }
.cat-intro-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.cat-intro-btn {
  padding: 14px 28px;
  border: 1px solid var(--sage-900);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-900);
  transition: background 0.2s, color 0.2s;
}
.cat-intro-btn:hover {
  background: var(--sage-900);
  color: var(--sage-100);
}
@media (max-width: 968px) {
  .cat-intro { padding: 72px 20px 64px; }
  .cat-intro-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .cat-intro-nav { flex-direction: column; }
  .cat-intro-btn { text-align: center; }
}

/* TICKET SHOP PAGE */
.ticket-page-section {
  padding: 80px 32px;
  border-top: 1px solid var(--line);
  position: relative;
}
.ticket-page-section.deep { background: transparent; }
.ticket-page-section.deep::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: var(--bg-deep); }
.ticket-page-section > * { position: relative; z-index: 2; }
.ticket-page-head {
  max-width: 1320px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 72px;
  align-items: end;
}
.ticket-page-title {
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.025em;
  font-variation-settings: 'SOFT' 80, 'opsz' 144;
}
.ticket-page-title em { font-style: italic; color: var(--ci); }
.ticket-page-lede {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-soft);
}
.ticket-option-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ticket-option-card {
  border: 1px solid var(--line);
  background: rgba(222,226,218,.35);
  padding: 28px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  position: relative;
}
.ticket-option-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56,61,49,.35);
  background: rgba(222,226,218,.55);
}
.ticket-option-card.active-option {
  background: var(--sage-900);
  color: var(--sage-100);
  border-color: var(--sage-900);
}
.ticket-option-card.is-disabled { opacity: .68; }
.ticket-availability {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.active-option .ticket-availability { color: var(--sage-200); }
.ticket-option-card h3 {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 12px;
}
.ticket-option-card h3 em {
  display: block;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
  margin-top: 7px;
}
.active-option h3 em { background: none; -webkit-background-clip: initial; background-clip: initial; color: rgba(222,226,218,.68); }
.ticket-option-copy {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.active-option .ticket-option-copy { color: rgba(222,226,218,.76); }
.ticket-option-list {
  list-style: none;
  margin: auto 0 26px;
}
.ticket-option-list li {
  border-top: 1px solid var(--line);
  padding: 10px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.active-option .ticket-option-list li { border-color: rgba(222,226,218,.18); }
.ticket-option-list li:last-child { border-bottom: 1px solid var(--line); }
.active-option .ticket-option-list li:last-child { border-color: rgba(222,226,218,.18); }
.ticket-qty-control {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  height: 46px;
  border: 1px solid currentColor;
}
.ticket-qty-control button,
.ticket-qty-control input {
  border: none;
  background: transparent;
  color: inherit;
  font-family: var(--mono);
  font-size: 12px;
  text-align: center;
  outline: none;
}
.ticket-qty-control button { cursor: pointer; font-size: 18px; }
.ticket-qty-control button[disabled] { opacity: .35; cursor: not-allowed; }
.ticket-qty-control input {
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
}
.shop-layout {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: start;
}
.order-panel,
.summary-panel,
.info-panel {
  border: 1px solid var(--line);
  background: rgba(222,226,218,.34);
}
.order-panel { padding: 0; }
.panel-block {
  padding: 34px;
  border-bottom: 1px solid var(--line);
}
.panel-block:last-child { border-bottom: 0; }
.panel-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin-bottom: 14px;
}
.panel-title {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(222,226,218,.48);
  color: var(--ink);
  padding: 13px 14px;
  font: 400 15px/1.4 var(--body);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.form-field textarea { min-height: 118px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(56,61,49,.45);
  background: rgba(222,226,218,.7);
}
.participant-list { display: grid; gap: 12px; }
.participant-row {
  display: grid;
  grid-template-columns: 1.4fr .75fr .7fr auto;
  gap: 10px;
  align-items: end;
  padding: 14px;
  border: 1px solid var(--line-soft);
  background: rgba(222,226,218,.2);
}
.participant-row .remove-person {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  color: var(--ink-soft);
}
.add-person-btn {
  margin-top: 16px;
  border: none;
  background: transparent;
  color: var(--sage-900);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid var(--sage-900);
  padding-bottom: 4px;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card span {
  display: block;
  border: 1px solid var(--line);
  padding: 18px 14px;
  min-height: 86px;
  font-family: var(--display);
  font-size: 16px;
  font-style: italic;
  line-height: 1.25;
  cursor: pointer;
  transition: all .2s ease;
}
.choice-card small {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-top: 8px;
  color: var(--ink-muted);
}
.choice-card input:checked + span {
  background: var(--sage-900);
  color: var(--sage-100);
  border-color: var(--sage-900);
}
.choice-card input:checked + span small { color: var(--sage-200); }
.checkbox-list { display: grid; gap: 12px; }
.check-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}
.check-row input { width: 18px; height: 18px; accent-color: var(--sage-900); margin-top: 2px; }
.summary-panel {
  position: sticky;
  top: 90px;
  padding: 28px;
}
.summary-title {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 18px;
}
.summary-lines {
  list-style: none;
  margin: 22px 0;
  border-top: 1px solid var(--line);
}
.summary-lines li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
  color: var(--ink-soft);
}
.summary-lines strong { color: var(--ink); font-weight: 500; text-align: right; }
.summary-note {
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.55;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.summary-total {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}
.summary-total span:first-child {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.summary-total span:last-child {
  font-family: var(--display);
  font-size: 28px;
  font-style: italic;
  color: var(--sage-600);
}
.primary-submit {
  width: 100%;
  border: none;
  background: var(--sage-900);
  color: var(--sage-100);
  padding: 17px 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease;
}
.primary-submit:hover { background: var(--sage-600); }
.small-print {
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-muted);
  margin-top: 18px;
}
.field-warning,
.field-error {
  font-size: 12px;
  line-height: 1.5;
  color: #b84040;
  margin-top: 10px;
  padding: 8px 12px;
  background: color-mix(in srgb, #b84040 8%, transparent);
  border-left: 2px solid #b84040;
  border-radius: 2px;
}
input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b84040 !important;
}
.rule-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.rule-card {
  background: var(--bg);
  padding: 24px;
  min-height: 170px;
}
.rule-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--sage-600);
  margin-bottom: 18px;
}
.rule-card h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 10px;
}
.rule-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.price-placeholder {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage-600);
  background: rgba(56,61,49,.06);
  padding: 8px 10px;
  display: inline-block;
  margin-top: 14px;
}
.active-option .price-placeholder {
  background: rgba(222,226,218,.12);
  color: var(--sage-200);
}
@media (max-width: 1060px) {
  .ticket-page-head,
  .shop-layout { grid-template-columns: 1fr; gap: 36px; }
  .ticket-option-grid { grid-template-columns: 1fr; }
  .summary-panel { position: static; }
  .rule-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .ticket-page-section { padding: 56px 20px; }
  .form-grid, .choice-grid { grid-template-columns: 1fr; }
  .participant-row { grid-template-columns: 1fr; }
  .participant-row .remove-person { width: 100%; }
  .panel-block { padding: 24px; }
  .rule-grid { grid-template-columns: 1fr; }
}

/* TICKET PRICE TABLE */
.ticket-price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 12px;
}
.ticket-price-table thead th {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: right;
  padding: 0 0 8px;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.ticket-price-table thead th:first-child { text-align: left; }
.ticket-price-table td {
  padding: 8px 0;
  text-align: right;
  font-family: var(--mono);
  font-size: 12px;
  border-top: 1px solid var(--line);
  white-space: nowrap;
}
.ticket-price-table td:first-child {
  text-align: left;
  font-family: var(--body);
  font-size: 12px;
  color: var(--ink-soft);
  padding-right: 8px;
  letter-spacing: 0;
  white-space: normal;
}
@media (max-width: 480px) {
  .ticket-price-table { table-layout: fixed; }
  .ticket-price-table td:first-child,
  .ticket-price-table thead th:first-child { width: 26%; }
}
.ticket-price-table .price-group-head td {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-600);
  padding: 14px 0 4px;
  border-top: 2px solid var(--line);
  text-align: left;
}
.active-option .ticket-price-table thead th {
  color: rgba(222,226,218,.45);
  border-bottom-color: rgba(222,226,218,.15);
}
.active-option .ticket-price-table td { border-top-color: rgba(222,226,218,.15); }
.active-option .ticket-price-table td:first-child { color: rgba(222,226,218,.75); }
.active-option .ticket-price-table .price-group-head td {
  color: rgba(222,226,218,.5);
  border-top-color: rgba(222,226,218,.25);
}
.ticket-option-note {
  font-family: var(--display);
  font-size: 13px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.active-option .ticket-option-note { color: rgba(222,226,218,.5); }
.ticket-option-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.active-option .ticket-option-footer { border-top-color: rgba(222,226,218,.2); }
.ticket-option-badge {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.ticket-option-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sage-100);
  border-bottom: 1px solid rgba(222,226,218,.5);
  padding-bottom: 3px;
  display: inline-block;
}
.ticket-option-cta:hover { border-bottom-color: var(--sage-100); }
@media (max-width: 968px) {
  .ticket-card-past { display: none; }
}

/* TICKET FORM — updated participant row */
.participant-row {
  grid-template-columns: 1.4fr .45fr .7fr auto;
}
.verpfl-control {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(222,226,218,.48);
  cursor: pointer;
  transition: background .2s;
}
.verpfl-control:hover { background: rgba(222,226,218,.7); }
.verpfl-control input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--sage-900);
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
.verpfl-control span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 720px) {
  .participant-row { grid-template-columns: 1fr; }
  .participant-row .remove-person { width: 100%; }
}

/* FONT AWESOME CHECKBOX ICONS */
.verpfl-control input[type="checkbox"] { display: none; }
.verpfl-control i { font-size: 16px; flex-shrink: 0; color: var(--sage-900); }
.verpfl-control:has(input:checked) { background: rgba(56,61,49,.08); }

.check-row input[type="checkbox"] { display: none; }
.check-row > i { font-size: 16px; color: var(--sage-900); margin-top: 3px; }

/* PARTICIPANT ROW — height & icon refinements */
.verpfl-control {
  padding: 13px 14px;
  height: auto;
}
.verpfl-control i,
.check-row > i { font-size: 20px; }
.participant-row .remove-person {
  height: auto;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.remove-person i { font-size: 18px; }
/* FIX: .form-field label (0,1,1) overrides .verpfl-control (0,1,0) */
.form-field .verpfl-control {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-family: var(--body);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}
.participant-row {
  align-items: end;
}
/* PARTICIPANT ROW — final alignment pass */
/* Match verpfl-control height exactly to text inputs (padding 13+13 + line-height 21 + border 2 = 49px) */
.form-field .verpfl-control { height: 49px; padding: 0 14px; }
/* Remove button: same height as inputs, bottom-aligned so top starts flush with verpfl-control */
.participant-row .remove-person { height: 49px; align-self: end; }
/* Tagesticket date hint in summary card */
.summary-date-hint {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}
/* Participant 1 name — locked, derived from contact fields */
.participant-name[readonly] {
  background: rgba(56,61,49,.04);
  color: var(--ink-soft);
  cursor: default;
  border-color: transparent;
}
.ticket-option-card h3 em { font-style: italic; }
/* =====================================================
   CATALOGUE DETAIL PAGE
   ===================================================== */

.detail-hero-programm-link {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.18s ease;
}
.detail-hero-programm-link:hover { color: var(--ink); }

.detail-hero {
  background: transparent;
  color: var(--sage-100);
  border-top: 1px solid rgba(222,226,218,.12);
  padding: 88px 32px 80px;
  position: relative;
}
.detail-hero::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: var(--sage-900); }
.detail-hero > * { position: relative; z-index: 2; }
.detail-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: center;
}
.detail-portrait-square {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
}
.detail-portrait-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(0.96);
}
.detail-back-link {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ci) !important;
  border-bottom: 1px solid var(--ci);
  padding-bottom: 3px;
  margin-bottom: 40px;
  transition: color .2s, border-color .2s;
}
.detail-back-link:hover { opacity: 0.7; }
.detail-hero-name {
  font-family: var(--display);
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-variation-settings: 'SOFT' 90, 'opsz' 144;
  margin-bottom: 24px;
}
.detail-hero-name em { font-style: italic; color: var(--sage-200); }
.detail-hero-discipline {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(222,226,218,.5);
  margin-bottom: 28px;
}
.detail-hero-intro {
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 26px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(222,226,218,.76);
  max-width: 540px;
}
@media (max-width: 860px) {
  .detail-hero { padding: 64px 20px 60px; }
  .detail-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .detail-portrait-square { max-width: 260px; }
}

/* Detail bio section */
.detail-bio {
  padding: 96px 32px;
  border-top: 1px solid var(--line);
  background: transparent;
  position: relative;
  position: relative;
}
.detail-bio::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: var(--bg); }
.detail-bio > * { position: relative; z-index: 2; }
.detail-bio-inner {
  max-width: 820px;
  margin: 0 auto;
}
.detail-bio-body {
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 300;
  line-height: 1.68;
  color: var(--ink-soft);
}
.detail-bio-body p + p { margin-top: 22px; }
.detail-bio-meta {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.detail-bio-meta-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.detail-bio-meta-item:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); }
.detail-bio-meta-item:nth-child(even) { padding-left: 24px; }
.detail-bio-meta-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 7px;
}
.detail-bio-meta-value {
  font-family: var(--display);
  font-size: 19px;
  font-style: italic;
  color: var(--ink);
}
@media (max-width: 640px) {
  .detail-bio { padding: 72px 20px; }
  .detail-bio-meta { grid-template-columns: 1fr; }
  .detail-bio-meta-item:nth-child(odd),
  .detail-bio-meta-item:nth-child(even) { padding-left: 0; padding-right: 0; border-right: none; }
}

/* Festival days — reused on detail page */
.days-section {
  padding: 96px 32px;
  background: transparent;
  border-top: 1px solid var(--line);
  position: relative;
  position: relative;
}
.days-section::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: var(--bg-deep); }
.days-section > * { position: relative; z-index: 2; }
.days-inner { max-width: 1320px; margin: 0 auto; }
.days-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 40px 0 56px;
}
.day-card {
  min-height: 160px;
  padding: 20px 16px 16px;
  border: 1px solid var(--line);
  background: rgba(222,226,218,.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: .72;
}
.day-card.is-active { background: var(--ci); color: var(--sage-100); opacity: 1; border-color: var(--ci); }
.day-card.is-arrival { opacity: .88; }
.day-date { font-family: var(--display); font-size: 42px; font-style: italic; font-weight: 300; line-height: .85; margin-bottom: 10px; }
.day-weekday { font-family: var(--mono); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink); font-weight: 500; }
.day-card.is-active .day-weekday { color: rgba(222,226,218,.66); }
.day-status { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); font-weight: 500; padding-top: 16px; border-top: 1px solid var(--line); }
.day-card.is-active .day-status { color: var(--sage-100); border-top-color: rgba(222,226,218,.2); }

/* Workshop list */
.workshop-list { border-top: 1px solid var(--line); }
.workshop-row {
  display: grid;
  grid-template-columns: 170px 1fr 180px;
  gap: 32px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.workshop-time { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); font-weight: 500; line-height: 1.6; }
.workshop-title { font-family: var(--display); font-size: 27px; font-weight: 300; line-height: 1.15; margin-bottom: 8px; }
.workshop-title em { font-style: italic; color: var(--ink-soft); }
.workshop-desc { font-family: var(--display); font-size: 15px; font-style: italic; font-weight: 300; line-height: 1.5; color: var(--ink-soft); }
.workshop-location { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); font-weight: 500; text-align: right; }

/* Quote band */
.quote-band { background: transparent; color: var(--sage-100); padding: 88px 32px; border-top: 1px solid rgba(222,226,218,.1); position: relative; }
.quote-band::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: var(--sage-900); }
.quote-band > * { position: relative; z-index: 2; }
.quote-band-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.quote-band img { width: 48px; height: 48px; margin: 0 auto 28px; display: block; }
.quote-band blockquote { font-family: var(--display); font-size: clamp(26px, 3.5vw, 48px); font-style: italic; font-weight: 300; line-height: 1.18; color: rgba(222,226,218,.9); font-variation-settings: 'SOFT' 90, 'opsz' 144; }
.quote-band cite { display: block; margin-top: 22px; font-family: var(--mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(222,226,218,.48); font-style: normal; }

/* Related people */
.related-section { padding: 96px 32px 112px; background: transparent; border-top: 1px solid var(--line); position: relative; }
.related-section::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: var(--bg); }
.related-section > * { position: relative; z-index: 2; }
.related-inner { max-width: 1320px; margin: 0 auto; }
.related-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.related-card { display: grid; grid-template-columns: 120px 1fr; gap: 18px; align-items: end; border-top: 1px solid var(--line); padding-top: 20px; }
.related-card img { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; filter: saturate(0.78) contrast(0.98); }
.related-card-label { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; margin-bottom: 8px; }
.related-card h3 { font-family: var(--display); font-size: 23px; font-weight: 300; line-height: 1.12; margin-bottom: 7px; }
.related-card p { font-family: var(--display); font-size: 14px; font-style: italic; color: var(--ink-soft); line-height: 1.42; }

@media (max-width: 1100px) {
  .days-grid { grid-template-columns: repeat(3, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .days-section { padding: 72px 20px; }
  .days-grid { grid-template-columns: repeat(2, 1fr); }
  .workshop-row { grid-template-columns: 1fr; gap: 10px; }
  .workshop-location { text-align: left; }
  .quote-band { padding: 64px 20px; }
  .related-section { padding: 72px 20px 88px; }
}
@media (max-width: 540px) {
  .days-grid { grid-template-columns: 1fr 1fr; }
}
/* INDEX — Late Bird ticket showcase */
.ticket-showcase {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
  border-top: 1px solid rgba(222,226,218,.15);
  padding-top: 52px;
}
.ticket-phase-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(222,226,218,.70);
  margin-bottom: 14px;
}
.ticket-phase-name {
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--sage-100);
  margin-bottom: 20px;
  font-variation-settings: 'SOFT' 80, 'opsz' 144;
}
.ticket-phase-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(222,226,218,.78);
  line-height: 1.7;
  margin-bottom: 36px;
}
.ticket-showcase-cta {
  display: inline-block;
  background: var(--sage-100);
  color: var(--sage-900) !important;
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  transition: background .2s;
}
.ticket-showcase-cta:hover { background: var(--sage-200); }
.ticket-note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(222,226,218,.65);
  line-height: 1.7;
  text-align: left;
}
/* Table on dark bg */
.section.dark .ticket-price-table thead th {
  color: rgba(222,226,218,.65);
  border-bottom-color: rgba(222,226,218,.15);
}
.section.dark .ticket-price-table td {
  border-top-color: rgba(222,226,218,.12);
  color: var(--sage-100);
}
.section.dark .ticket-price-table td:first-child { color: rgba(222,226,218,.7); }
.section.dark .ticket-price-table .price-group-head td {
  color: rgba(222,226,218,.62);
  border-top-color: rgba(222,226,218,.2);
}
.ticket-showcase-note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(222,226,218,.65);
  margin-top: 20px;
}
@media (max-width: 768px) {
  .ticket-showcase { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Volunteer page ── */
.vol-section-inner { max-width: 1320px; margin: 0 auto; }
.vol-deal {
  background: var(--sage-900);
  color: var(--sage-100);
  padding: 48px 44px;
}
.vol-deal-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(222,226,218,.65);
  margin-bottom: 16px;
}
.vol-deal-main {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  margin-bottom: 8px;
  font-variation-settings: 'SOFT' 80, 'opsz' 144;
}
.vol-deal-equals {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 300;
  color: rgba(222,226,218,.5);
  margin: 16px 0;
}
.vol-deal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.vol-deal-list li {
  font-family: var(--body);
  font-size: 15px;
  color: rgba(222,226,218,.85);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.vol-deal-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(222,226,218,.4);
}
.vol-deal-cta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sage-100) !important;
  border-bottom: 1px solid rgba(222,226,218,.5);
  padding-bottom: 3px;
  transition: border-color .2s;
}
.vol-deal-cta:hover { border-bottom-color: var(--sage-100); }
.vol-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.vol-area {
  padding: 40px 36px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.vol-area-icon {
  font-size: 22px;
  color: var(--sage-600);
  margin-bottom: 20px;
}
.vol-area-name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}
.vol-area-desc {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.vol-area-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.vol-form { max-width: 860px; }
.vol-days-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 220px));
  gap: 10px;
  margin-top: 4px;
}
.vol-day-check {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: rgba(222,226,218,.3);
  transition: background .15s;
}
.vol-day-check input[type="checkbox"],
.vol-day-check input[type="radio"] { display: none; }
.vol-day-check i {
  font-size: 18px;
  line-height: 1;
  color: var(--sage-900);
  flex-shrink: 0;
  align-self: center;
  margin-right: 12px;
}
.vol-day-check span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  align-self: center;
  line-height: 1;
}
.vol-day-check:hover { background: rgba(222,226,218,.55); }
.vol-day-check:has(input:checked) { background: rgba(56,61,49,.08); border-color: var(--sage-600); }
.vol-form-footer {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.vol-form-note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ink-muted);
  flex: 1;
  min-width: 200px;
}
.vol-submit {
  background: var(--sage-900);
  color: var(--sage-100);
  border: none;
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.vol-submit:hover { background: var(--sage-600); }
@media (max-width: 968px) {
  .vol-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .vol-days-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .vol-areas-grid { grid-template-columns: 1fr; }
  .vol-days-grid { grid-template-columns: 1fr; }
  .vol-deal { padding: 32px 24px; }
}

/* ── Support page ── */
.support-section-inner { max-width: 1320px; margin: 0 auto; }
.support-section-head { margin-bottom: 64px; }
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.support-col-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.support-col-body {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-soft);
}
.support-fact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.support-fact-list li {
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.support-fact-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage-400);
}
.support-anreise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.support-anreise-list li {
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.support-anreise-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage-400);
}
.support-contact {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 2;
}
.support-contact a { color: var(--ink-soft); border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.support-contact a:hover { color: var(--ink); border-bottom-color: var(--ink); }
@media (max-width: 968px) {
  .support-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ── FAQ accordion ── */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--display);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 400;
  color: var(--ink);
  transition: color .2s;
}
.faq-question:hover { color: var(--sage-600); }
.faq-icon {
  flex-shrink: 0;
  font-size: 15px;
  color: var(--sage-600);
  transition: transform .3s ease;
}
.faq-item.is-open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.faq-item.is-open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding-bottom: 32px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq-answer-inner a { color: var(--ink-soft); border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.faq-answer-inner a:hover { color: var(--ink); }

/* ── Legal pages ── */
.legal-intro { background: transparent; color: var(--sage-100); padding: 88px 32px 72px; position: relative; }
.legal-intro::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: var(--sage-900); }
.legal-intro > * { position: relative; z-index: 2; }
.legal-intro-inner { max-width: 760px; margin: 0 auto; }
.legal-intro-label { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(222,226,218,.45); margin-bottom: 24px; }
.legal-intro h1 { font-family: var(--display); font-size: clamp(36px, 5vw, 60px); font-weight: 300; font-style: italic; line-height: 1.08; color: var(--sage-100); }
.legal-body { padding: 80px 32px 120px; }
.legal-body-inner { max-width: 760px; margin: 0 auto; }
.legal-block { padding-bottom: 56px; margin-bottom: 56px; border-bottom: 1px solid var(--line); }
.legal-block:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.legal-block-label { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-600); margin-bottom: 14px; }
.legal-block h2 { font-family: var(--display); font-size: clamp(19px, 1.8vw, 24px); font-weight: 400; color: var(--sage-900); margin-bottom: 20px; }
.legal-block h3 { font-family: var(--display); font-size: 17px; font-weight: 400; color: var(--sage-900); margin-top: 28px; margin-bottom: 10px; }
.legal-block h3:first-child { margin-top: 0; }
.legal-block p { font-family: var(--display); font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--ink-soft); margin-bottom: 14px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul, .legal-block ol { font-family: var(--display); font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--ink-soft); padding-left: 22px; margin-bottom: 14px; }
.legal-block li { margin-bottom: 4px; }
.legal-block a { color: var(--sage-900); text-decoration: underline; text-underline-offset: 3px; }
.legal-address { font-family: var(--mono); font-size: 13px; line-height: 2; color: var(--ink-soft); letter-spacing: .02em; margin-bottom: 16px; }




/* ── Lang switch in info-bar ── */
.lang-switch {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.lang-switch:hover,
.lang-switch.active { color: var(--sage-900); font-weight: 500; }
@media (max-width: 768px) {
  .lang-switch { font-size: 9px; }
}

/* ── Nav secondary menu (desktop) ── */
.nav-secondary-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
  margin-right: 10px;
}
.nav-secondary-toggle span {
  display: block;
  height: 1.5px;
  background: var(--sage-900);
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.nav-secondary-toggle span:nth-child(2) {
  transition: transform 0.35s ease, opacity 0.3s ease 0.05s;
}
.nav-secondary-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-secondary-toggle.active span:nth-child(2) { transform: translateX(-8px); opacity: 0; }
.nav-secondary-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-secondary-menu {
  position: absolute;
  top: calc(100% + 1px);
  right: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  min-width: 180px;
  z-index: 101;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(56,61,49,0.12);
}
.nav-secondary-menu[hidden] { display: none; }
.nav-secondary-menu a {
  padding: 12px 20px;
  font-family: var(--display);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  transition: color 0.2s, background 0.2s;
}
.nav-secondary-menu a:hover { color: var(--sage-900); background: rgba(56,61,49,0.04); }
@media (min-width: 969px) {
  .nav-secondary-toggle { display: flex; }
}

/* ── Mobile nav — restructured ── */
.nav-mobile {
  overflow: hidden;
  height: 100dvh;
  padding: 0;
}
.nav-mobile-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 76px 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Override old link styles within scroll area */
.nav-mobile-scroll a {
  font-family: var(--display);
  font-size: 32px;
  font-style: italic;
  font-weight: 300;
  color: var(--sage-100);
  padding: 16px 0;
  border-top: 1px solid rgba(222,226,218,0.15);
}
.nav-mobile-scroll a:last-child { border-bottom: 1px solid rgba(222,226,218,0.15); }
.nav-mobile-divider {
  border-top: 1px solid rgba(222,226,218,0.25);
  margin: 8px 0;
}
.nav-mobile-divider + a { border-top: none; }
.nav-mobile-secondary {
  font-size: 18px !important;
  opacity: 0.68 !important;
  padding: 11px 0 !important;
}
.nav-mobile-footer {
  flex-shrink: 0;
  padding: 16px 32px 24px;
  border-top: 1px solid rgba(222,226,218,0.2);
  background: var(--sage-900);
}
.nav-mobile-footer .mobile-cta {
  display: block;
  text-align: center;
  margin-top: 0;
}

/* ── Mitwirken section grid ── */
.mitwirken-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.mitwirken-item {
  padding: 40px 36px;
  border: 1px solid var(--line);
  background: rgba(222,226,218,0.3);
}
.mitwirken-item h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 12px;
}
.mitwirken-item p {
  font-family: var(--display);
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
@media (max-width: 968px) {
  .mitwirken-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Related grid — 6 cards (2 rows × 3) ── */
@media (min-width: 1101px) {
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* ── Ticket — choice-card kompakter ── */
.choice-card span {
  font-size: 14px;
  padding: 14px 12px;
  min-height: 76px;
}
.choice-card small { font-size: 11px; }

/* ── Participant 1 X verstecken ── */
.participant-row:first-child .remove-person { visibility: hidden; }

/* ── Verpflegung 'buchen' label ── */
/* (text is in HTML) */

/* ── Newsletter privacy note & success ── */
.newsletter-privacy {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 16px;
  max-width: 260px;
}
.newsletter-privacy a {
  color: inherit;
  border-bottom: 1px solid currentColor;
}
.newsletter-success {
  font-family: var(--display);
  font-size: 16px;
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 16px;
}

/* ── Newsletter image (statt Logo) ── */
.newsletter-image {
  max-width: 280px;
  margin: 0 auto 32px;
  display: block;
  object-fit: cover;
}

/* ── Mitwirken page — anchor scroll offsets (nav handled by html scroll-padding-top) ── */
#volunteer, #shop, #programm {
  scroll-margin-top: 45px;
}
#vol-form {
  scroll-margin-top: 84px;
}
@media (max-width: 968px) {
  #volunteer, #shop, #programm {
    scroll-margin-top: 47px;
  }
  #vol-form {
    scroll-margin-top: 84px;
  }
}

/* ── Mitwirken page — section anchor nav ── */
.mitwirken-subnav {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 0 32px;
  position: sticky;
  top: 74px;
  z-index: 90;
}
.mitwirken-subnav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  gap: 0;
}
.mitwirken-subnav-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 16px 24px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.mitwirken-subnav-link:first-child { padding-left: 0; }
.mitwirken-subnav-link:hover { color: var(--sage-900); border-bottom-color: var(--sage-900); }
@media (max-width: 968px) {
  .mitwirken-subnav { top: 70px; padding: 0 20px; }
  .mitwirken-subnav-link { padding: 10px 16px; display: flex; flex-direction: column; gap: 2px; }
  .mitwirken-subnav-link:first-child { padding-left: 0; }
  .subnav-num { display: block; }
  .subnav-label { display: block; }
}

/* ── Mitwirken form — radio group ── */
.vol-radio-group {
  display: flex;
  gap: 24px;
  padding-top: 8px;
}

/* ── Schwunglinien Hintergrund (8% Deckkraft) in allen Content-Sections ── */
.section,
.gallery-section,
.hero-anchor,
.ticket-page-section,
.catalogue-section,
.catalogue-block,
.detail-hero,
.detail-bio,
.days-section,
.quote-band,
.related-section {
  isolation: isolate;
}

.section:not(#faq)::after,
.gallery-section::after,
.hero-anchor::after,
.ticket-page-section::after,
.catalogue-section::after,
.catalogue-block::after,
.detail-hero::after,
.detail-bio::after,
.days-section::after,
.quote-band::after,
.related-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/bg-images/bg-schwunglinien.png') center / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

/* Content must sit above the bg-image layer */
.section > *,
.gallery-section > *,
.hero-anchor > *,
.ticket-page-section > *,
.catalogue-section > *,
.catalogue-block > *,
.detail-hero > *,
.detail-bio > *,
.days-section > *,
.quote-band > *,
.related-section > * {
  position: relative;
  z-index: 2;
}

/* ── Mobile Hero: quadratisch + kein Abstand ── */
@media (max-width: 768px) {
  .hero-cinematic {
    height: auto;
    min-height: unset;
  }
  .hero-video {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    max-height: none;
  }
  .hero-anchor {
    margin-top: 0;
  }
}

/* ── Familie: Bild unter der Überschrift auf Mobile ── */
@media (max-width: 968px) {
  .family-image { order: 2; }
  .family-content { order: 1; }
}

/* ── Workshop meta tags (Catalogue-Detail) ── */
.workshop-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.workshop-level,
.workshop-format,
.workshop-material {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--line-soft);
  border: 1px solid var(--line);
  padding: 3px 10px;
  border-radius: 100px;
}
.workshop-material {
  color: var(--ink-soft);
}

/* ── Verpflegungsinfos auf Ticket-Seite ── */
.catering-link-hint {
  text-align: center;
  padding: 16px 0 8px;
}
.catering-link-hint a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.catering-info-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 5px;
  color: var(--ink);
  font-size: 13px;
  vertical-align: middle;
  line-height: 1;
  opacity: .65;
}
.catering-info-icon:hover { opacity: 1; }
.catering-info-icon i {
    position: relative;
    top: -1px;
    left: -5px;
}
.catering-link-hint--card {
  text-align: left;
  padding: 0 0 24px;
}
.active-option .catering-link-hint--card a {
  color: rgba(222,226,218,.55);
  border-bottom-color: rgba(222,226,218,.2);
}
.active-option .catering-link-hint--card a:hover {
  color: rgba(222,226,218,.9);
}
.catering-info-list {
  list-style: none;
  margin: 0 0 20px;
}
.catering-info-list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.6;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.catering-info-list li::before {
  content: '–';
  color: var(--ink-muted);
  flex-shrink: 0;
}
.catering-info-list li:last-child { border-bottom: 1px solid var(--line); }
.catering-note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 12px;
}

/* ── Newsletter image (alte Klasse entfernt, neues Icon) ── */
.newsletter-image { display: none; }

/* ── Kontakt page — direct contact block ── */
.kontakt-direct {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.kontakt-direct-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.kontakt-direct-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.kontakt-direct-info a { color: var(--ink-soft); border-bottom: none; text-decoration: none; }
.kontakt-direct-info a:hover { color: var(--ink); }

/* ── Form success page (template-form-success.php) ── */
.form-success-inner {
  max-width: 860px;
  margin: 0 auto;
}
.form-success-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.form-success-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 56px;
}
.form-success-table th,
.form-success-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
  font-size: 15px;
  line-height: 1.6;
}
.form-success-table th {
  width: 35%;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-muted);
  padding-right: 24px;
}
.form-success-table td {
  font-family: var(--body);
  color: var(--ink);
}
.form-success-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.form-success-btn-primary {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--sage-100) !important;
  padding: 14px 28px;
  border: 1px solid var(--ink);
  transition: background 0.2s, color 0.2s;
}
.form-success-btn-primary:hover { background: transparent; color: var(--ink) !important; }
.form-success-btn-secondary {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 14px 28px;
  border: 1px solid var(--line);
  transition: color 0.2s, border-color 0.2s;
}
.form-success-btn-secondary:hover { color: var(--ink); border-color: var(--ink); }
@media (max-width: 968px) {
  .form-success-inner { padding: 60px 20px; }
  .form-success-table th { width: 40%; font-size: 10px; }
  .form-success-actions { flex-direction: column; }
  .form-success-btn-primary,
  .form-success-btn-secondary { text-align: center; }
}


/* ============================================================
   TIMETABLE
   ============================================================ */

:root { --tabs-h: 48px; }

/* --- Hero --- */
.timetable-hero {
  padding: 80px 0;
}
.timetable-hero h1 {
  font-family: var(--brand);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--sage-100);
  margin-bottom: 20px;
}
.timetable-hero .subtitle {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(222, 226, 218, 0.65);
}

/* --- Day-tab bar --- */
.timetable-tabs-wrap {
  position: sticky;
  top: 73px;
  padding: 0 32px;
  z-index: 80;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.timetable-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}
.timetable-tabs::-webkit-scrollbar { display: none; }

.day-tab {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.day-tab:hover {
  background: var(--sage-200);
  color: var(--ink);
  border-color: var(--sage-400);
}
.day-tab.active {
  background: var(--sage-900);
  color: var(--sage-100);
  border-color: var(--sage-900);
}

/* --- Day panels --- */
.timetable-section {
  padding: 48px 0 96px;
}
.day-panel { display: none; }
.day-panel.active { display: block; }

.day-panel-head {
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.day-panel-head h2 {
  font-family: var(--brand);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink);
}

/* --- Venue grid --- */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.venue-track {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(181, 185, 176, 0.16);
}

.venue-head {
  position: sticky;
  top: calc(73px + var(--tabs-h));
  z-index: 10;
  background: var(--sage-900);
  padding: 14px 16px;
  border-bottom: 1px solid rgba(222, 226, 218, 0.15);
}
.venue-head h3 {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-100);
}
.venue-empty {
  padding: 24px 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-muted);
  text-align: center;
}

/* --- Event cards --- */
@keyframes card-highlight {
  0%   { background: var(--sage-100); }
  40%  { background: #fff; }
  100% { background: var(--sage-100); }
}
.time-event {
  margin: 14px;
  padding: 18px;
  background: var(--sage-100);
  border: 1px solid var(--line-soft);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}
.time-event.highlighted {
  animation: card-highlight 3s ease forwards;
}
.time-event:hover {
  transform: translateY(-2px);
  border-color: var(--line);
}


.time-event-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.time-event-top > div:first-child { flex: 1; min-width: 0; }

.event-time {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.time-event h4 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  font-variation-settings: 'SOFT' 60, 'opsz' 144;
}

/* Single-artist portrait */
.event-thumb {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Multi-artist avatar stack */
.avatar-stack {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.avatar-stack-link {
  display: block;
  flex-shrink: 0;
  margin-left: -14px;
  transition: opacity 0.2s;
}
.avatar-stack-link:first-child { margin-left: 0; }
.avatar-stack-link:hover { opacity: 0.82; }
.avatar-stack-item {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  object-fit: cover;
}

.event-thumb { transition: opacity 0.2s; }
.event-thumb:hover { opacity: 0.82; }

.event-artist {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.event-artist a { color: inherit; text-decoration: none; }
.event-artist a:hover { text-decoration: underline; text-decoration-thickness: 1px; }

.time-event p {
  font-family: var(--display);
  font-size: 14px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 12px;
  font-variation-settings: 'SOFT' 60, 'opsz' 144;
}

.event-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  margin-top: 2px;
}
.event-meta-row > span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.event-meta-row .event-tags { margin-top: 0; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .venue-grid { grid-template-columns: 1fr; }
  .venue-track { border-right: none; border-bottom: 1px solid var(--line); }
  .venue-track:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .timetable-hero { padding: 60px 0; }
  .timetable-section { padding: 24px 0 64px; }
}

/* --- Venues section --- */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  max-width: 1320px;
  margin: 0 auto;
}
.venue-card {
  background: var(--bg);
  padding: 40px 36px;
}
.venue-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.venue-card h3 {
  font-family: var(--brand);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 16px;
}
.venue-card p {
  font-family: var(--display);
  font-size: 16px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .venues-grid { grid-template-columns: 1fr; gap: 0; }
  .venue-card { padding: 28px 24px; border-bottom: 1px solid var(--line); }
  .venue-card:last-child { border-bottom: none; }
}

/* --- Compact list table --- */
.compact-table-wrap {
  max-width: 1320px;
  margin: 0 auto;
  overflow-x: auto;
}
.compact-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-family: var(--body);
  font-size: 13px;
}
.compact-table thead th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 10px 14px;
  text-align: left;
  background: rgba(181, 185, 176, 0.28);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.compact-table thead th:first-child { border-left: 7px solid #D2D7CE; }
.compact-table tbody tr { border-bottom: 1px solid var(--line-soft); transition: background 0.15s; }
.compact-table tbody tr:last-child { border-bottom: none; }
.compact-table tbody tr { cursor: pointer; }
.compact-table tbody tr:hover { background: rgba(56, 61, 49, 0.04); }
.compact-table td { padding: 10px 14px; color: var(--ink); vertical-align: middle; }
.compact-table td:nth-child(1) {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}
.compact-table td:nth-child(2) {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.compact-table td:nth-child(3) { font-size: 11px; color: var(--ink-soft); white-space: nowrap; }
.compact-table td:nth-child(4) { font-weight: 500; }
.compact-table td:nth-child(5) { color: var(--ink-soft); }

/* --- Category colour palette --- */
:root {
  --cat-training: #C0392B;
  --cat-musik: #2980B9;
  --cat-specials: #1E8449;
  --cat-kids: #D4AC0D;
}

/* 7px left border on event cards by programme_category */
.time-event[data-type="training"] { border-left: 7px solid var(--cat-training); }
.time-event[data-type="musik"]    { border-left: 7px solid var(--cat-musik); }
.time-event[data-type="specials"] { border-left: 7px solid var(--cat-specials); }
.time-event[data-type="kids"]     { border-left: 7px solid var(--cat-kids); }

/* Compact list: left border on first cell (reliable in border-collapse tables) */
.compact-table tbody tr[data-type="training"] > td:first-child { border-left: 7px solid var(--cat-training); }
.compact-table tbody tr[data-type="musik"]    > td:first-child { border-left: 7px solid var(--cat-musik); }
.compact-table tbody tr[data-type="specials"] > td:first-child { border-left: 7px solid var(--cat-specials); }
.compact-table tbody tr[data-type="kids"]     > td:first-child { border-left: 7px solid var(--cat-kids); }

/* --- Area (sub-venue) standalone below description --- */
.event-area {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.event-area svg { flex-shrink: 0; opacity: 0.65; }

/* --- Event tag pills --- */
.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.event-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: rgba(56, 61, 49, 0.06);
  padding: 2px 6px;
  border-radius: 2px;
}

/* ─────────────────────────────────────────
   Last-wishes batch — 2026-06
   ───────────────────────────────────────── */

/* Item 5: back-link top spacing */
.detail-back-link { margin-top: 2.5rem; }

/* Item 6: full person-card clickable overlay */
.person-card { position: relative; }
.person-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.person-card > a,
.person-card > div,
.person-card > h3,
.person-card > p,
.person-card .person-tags,
.person-card .person-cta {
  position: relative;
  z-index: 1;
}
.person-name a {
  color: inherit;
  text-decoration: none;
}
.person-name a:hover { opacity: 0.75; }

/* Item 8: location heading above photo */
.location-image {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: visible;
}
.location-image img {
  aspect-ratio: 5 / 4;
  width: 100%;
  height: auto;
  object-fit: cover;
  overflow: hidden;
}
.location-heading .section-num { margin-bottom: 8px; }
.location-heading .section-title { margin-top: 0; }

/* Item 7: location links */
.location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.location-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ci);
  border-bottom: 1px solid var(--ci);
  padding-bottom: 2px;
  text-decoration: none;
  transition: opacity .2s;
}
.location-link:hover { opacity: 0.7; }

/* Items 13: accent last word */
.accent-word { color: #444888; }

/* Items 15+16: nav tagline */
.nav-logo { align-items: center; }
.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-tagline {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0.75;
  line-height: 1.2;
}
.nav-tagline .fa-yin-yang {
  font-size: 10px;
  color: #444888;
  margin-right: 4px;
}
.nav-mobile-tagline {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0.75;
  padding: 8px 0 4px;
}
.nav-mobile-tagline .fa-yin-yang {
  font-size: 10px;
  color: #444888;
  margin-right: 4px;
}