:root {
  --color-ink: #202020;
  --color-paper: #f5f2ec;
  --color-white: #fff;
  --color-accent: #a4202b;
  --color-accent-dark: #76141d;
  --color-gold: #e5b76f;
  --content-width: 1180px;
  --header-height: 96px;
  --shadow: 0 12px 32px rgb(0 0 0 / 18%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--color-ink); background: var(--color-paper); font-family: Arial, Helvetica, sans-serif; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: .65rem 1rem; color: #fff; background: #111; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.contact-bar { color: #eee; background: #222; font-size: .78rem; }
.contact-bar__inner { width: min(calc(100% - 40px), var(--content-width)); min-height: 32px; margin: auto; display: flex; justify-content: flex-end; align-items: center; gap: 1.4rem; }
.contact-bar a { text-decoration: none; }
.contact-bar a:hover { color: var(--color-gold); }
.site-header { position: sticky; z-index: 20; top: 0; min-height: var(--header-height); background: rgb(255 255 255 / 97%); border-bottom: 1px solid rgb(0 0 0 / 10%); box-shadow: 0 4px 14px rgb(0 0 0 / 8%); }
.header-inner { width: min(calc(100% - 40px), var(--content-width)); min-height: var(--header-height); margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: block; text-decoration: none; }
.brand img { width: 116px; height: auto; }
.main-nav ul { display: flex; align-items: stretch; gap: 1.45rem; margin: 0; padding: 0; list-style: none; }
.main-nav a { position: relative; display: block; padding: 1rem 0; text-decoration: none; font-size: .86rem; font-weight: 700; }
.main-nav a::after { content: ''; position: absolute; right: 0; bottom: .6rem; left: 0; height: 2px; background: var(--color-accent); transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after, .main-nav a.is-active::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: transparent; border: 0; cursor: pointer; }
.nav-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s, opacity .2s; }

.production-slider { position: relative; min-height: clamp(540px, calc(100vh - 128px), 760px); overflow: hidden; color: #fff; background: #191919; }
.slides, .slide { position: absolute; inset: 0; }
.slide { visibility: hidden; opacity: 0; transition: opacity .65s ease, visibility .65s; }
.slide.is-active { visibility: visible; opacity: 1; }
.slide-image, .slide-shade { position: absolute; inset: 0; }
.slide-image { background-position: center; background-size: cover; transform: scale(1.02); }
.slide-shade { background: linear-gradient(90deg, rgb(0 0 0 / 84%) 0%, rgb(0 0 0 / 52%) 47%, rgb(0 0 0 / 14%) 100%); }
.slide-content { position: relative; z-index: 2; width: min(calc(100% - 112px), var(--content-width)); margin: auto; padding-top: clamp(105px, 15vh, 165px); }
.eyebrow { margin: 0 0 .7rem; color: var(--color-gold); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--dark { color: var(--color-accent); }
.slide h1, .slide h2 { max-width: 800px; margin: 0 0 1rem; font: 700 clamp(2.45rem, 5.4vw, 5.2rem)/.98 Georgia, 'Times New Roman', serif; text-wrap: balance; }
.slide-content > p:not(.eyebrow) { max-width: 620px; margin: 0 0 2rem; font-size: clamp(1rem, 2vw, 1.18rem); }
.button { display: inline-block; padding: .82rem 1.2rem; color: #fff; background: var(--color-accent); border: 2px solid var(--color-accent); text-decoration: none; font-weight: 700; transition: background .2s, border-color .2s, color .2s; }
.button:hover, .button:focus-visible { background: var(--color-accent-dark); border-color: var(--color-accent-dark); }
.button-group { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }
.button-group .button { margin-top: 0; }
.button--secondary { color: var(--color-accent-dark); background: transparent; }
.button--secondary:hover, .button--secondary:focus-visible { color: #fff; }
.button--outline { background: rgb(0 0 0 / 25%); border-color: #fff; }
.button--outline:hover { background: #fff; border-color: #fff; color: #222; }
.button--light { color: var(--color-accent-dark); background: #fff; border-color: #fff; }
.slider-arrow { position: absolute; z-index: 4; top: 50%; width: 48px; height: 56px; color: #fff; background: rgb(0 0 0 / 38%); border: 1px solid rgb(255 255 255 / 38%); font-size: 2.4rem; line-height: 1; cursor: pointer; transform: translateY(-50%); }
.slider-arrow:hover, .slider-arrow:focus-visible { background: var(--color-accent); }
.slider-arrow--prev { left: 16px; }
.slider-arrow--next { right: 16px; }
.slider-controls { position: absolute; z-index: 5; right: 28px; bottom: 24px; left: 28px; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.slider-dots { display: flex; gap: .55rem; }
.slider-dot { width: 11px; height: 11px; padding: 0; background: transparent; border: 2px solid #fff; border-radius: 50%; cursor: pointer; }
.slider-dot.is-active { background: #fff; }
.slider-pause { min-width: 42px; min-height: 32px; color: #fff; background: rgb(0 0 0 / 38%); border: 1px solid rgb(255 255 255 / 45%); cursor: pointer; }
.slider-pause::before { content: 'Ⅱ'; font-weight: 800; }
.slider-pause[aria-pressed='true']::before { content: '▶'; }
.slider-pause span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.section { padding: clamp(4.5rem, 8vw, 7rem) 24px; }
.section, .production-slider, .support-section, .site-footer { scroll-margin-top: calc(var(--header-height) + 16px); }
.section--light { background: #fff; }
.section-inner, .footer-inner { width: min(100%, var(--content-width)); margin: auto; }
.section h2, .support-section h2 { max-width: 850px; margin: 0 0 1.3rem; font: 700 clamp(2rem, 4.5vw, 3.6rem)/1.08 Georgia, serif; }
.lead { font-size: clamp(1.1rem, 2vw, 1.3rem); }
.current-production__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.production-preview-image { width: 100%; min-height: 390px; aspect-ratio: 3 / 2; object-fit: cover; box-shadow: var(--shadow); }
.current-production__grid .button { margin-top: 1rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.4rem; }
.card { padding: 2rem; background: var(--color-paper); border-top: 4px solid var(--color-accent); }
.card h3 { margin: 0 0 .8rem; font: 700 1.4rem Georgia, serif; }
.card a { color: var(--color-accent-dark); font-weight: 700; }
.text-columns { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 8vw, 7rem); }
.team-section { color: #eee; background: #252525; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: clamp(2rem, 7vw, 6rem); margin-bottom: 2.8rem; }
.section-heading h2 { color: #fff; margin-bottom: 0; }
.section-heading > p { margin: 0 0 .4rem; color: #cfcfcf; font-size: 1.08rem; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgb(255 255 255 / 14%); border: 1px solid rgb(255 255 255 / 14%); }
.team-card { min-height: 310px; padding: 2rem 1.6rem; background: #252525; transition: background .2s, transform .2s; }
.team-card:hover { position: relative; z-index: 1; background: #302a2a; transform: translateY(-4px); }
.team-card__number { display: block; margin-bottom: 3.5rem; color: var(--color-gold); font-size: .76rem; font-weight: 800; letter-spacing: .14em; }
.team-card h3 { margin: 0 0 1rem; color: #fff; font: 700 1.35rem/1.2 Georgia, serif; }
.team-card p { margin: 0; color: #cfcfcf; font-size: .94rem; }
.team-action { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 2.2rem; }
.team-action p { max-width: 560px; margin: 0; color: #bbb; }
.team-hero { padding: clamp(5rem, 10vw, 9rem) 24px; color: #fff; background: linear-gradient(110deg, rgb(0 0 0 / 88%), rgb(62 10 16 / 76%)), url('../images/2025-der-vorname.jpg') center 38% / cover; }
.team-hero h1 { max-width: 850px; margin: 0 0 1.2rem; font: 700 clamp(3.2rem, 8vw, 6.5rem)/.96 Georgia, serif; }
.team-hero p:not(.eyebrow) { max-width: 660px; font-size: 1.2rem; }
.member-section__intro { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: clamp(2rem, 8vw, 7rem); margin-bottom: 2.8rem; }
.member-section__intro h2 { margin-bottom: 0; }
.member-section__intro > p { margin: 0 0 .4rem; font-size: 1.08rem; }
.people-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1.2rem; }
.people-grid--board { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.person-card { overflow: hidden; background: #fff; box-shadow: 0 8px 24px rgb(0 0 0 / 10%); }
.person-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.person-card div { padding: 1.15rem; }
.person-card h3 { margin: 0 0 .3rem; font: 700 1.08rem/1.2 Georgia, serif; }
.person-card p { margin: 0; color: #6b252c; font-size: .8rem; font-weight: 700; }
.ensemble-section { background: #eee8df; }
.ensemble-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 7rem); }
.name-cloud { display: flex; align-content: flex-start; flex-wrap: wrap; gap: .65rem; }
.name-cloud span { padding: .65rem .85rem; background: #fff; border-left: 3px solid var(--color-accent); font-size: .9rem; }
.verein-hero { padding: clamp(5rem, 10vw, 9rem) 24px; color: #fff; background: linear-gradient(110deg, rgb(0 0 0 / 88%), rgb(62 10 16 / 72%)), url('../images/2024-gemeindeversammlung.jpg') center / cover; }
.verein-hero h1 { max-width: 850px; margin: 0 0 1.2rem; font: 700 clamp(3.2rem, 8vw, 6.5rem)/.96 Georgia, serif; }
.verein-hero p:not(.eyebrow) { max-width: 700px; font-size: 1.2rem; }
.article-intro { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 8vw, 7rem); }
.article-intro h2 { margin-bottom: 0; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.5rem; }
.info-card { padding: 2rem; background: var(--color-paper); border-bottom: 4px solid var(--color-accent); }
.info-card > span { color: var(--color-accent); font-size: .75rem; font-weight: 800; letter-spacing: .15em; }
.info-card h3 { margin: 2.4rem 0 .8rem; font: 700 1.35rem/1.2 Georgia, serif; }
.production-types { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 2.6rem; background: #c9c1b6; border: 1px solid #c9c1b6; }
.production-types article { padding: clamp(2rem, 5vw, 4rem); background: #fff; }
.production-types h3 { margin: 0 0 1rem; font: 700 clamp(1.7rem, 3vw, 2.4rem)/1.1 Georgia, serif; }
.production-types__season { color: var(--color-accent); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.additional-productions { max-width: 760px; margin: 2rem auto 0; text-align: center; }
.venue-section { padding: clamp(5rem, 9vw, 8rem) 24px; color: #fff; background: #252525; }
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 7rem); }
.venue-grid h2 { margin: 0 0 1.2rem; font: 700 clamp(2rem, 4.5vw, 3.6rem)/1.08 Georgia, serif; }
.venue-facts { display: grid; gap: 1px; background: rgb(255 255 255 / 15%); }
.venue-facts p { display: grid; grid-template-columns: .55fr 1.45fr; align-items: center; gap: 1rem; margin: 0; padding: 1.3rem; background: #252525; }
.venue-facts strong { color: var(--color-gold); font: 700 1.5rem Georgia, serif; }
.venue-facts span { color: #d3d3d3; }
.closing-text { max-width: 850px; }
.passive-hero { padding: clamp(5rem, 10vw, 9rem) 24px; color: #fff; background: linear-gradient(125deg, #66101a, #a4202b 58%, #351014); }
.passive-hero__inner { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: clamp(2rem, 8vw, 7rem); }
.passive-hero h1 { max-width: 850px; margin: 0 0 1.2rem; font: 700 clamp(3rem, 7vw, 6rem)/.96 Georgia, serif; }
.passive-hero p:not(.eyebrow) { max-width: 700px; font-size: 1.2rem; }
.passive-hero__badge { display: grid; place-items: center; width: min(100%, 300px); aspect-ratio: 1; margin-left: auto; border: 1px solid rgb(255 255 255 / 45%); border-radius: 50%; text-align: center; }
.passive-hero__badge strong { display: block; font: 700 clamp(2rem, 4vw, 3.5rem)/1 Georgia, serif; }
.passive-hero__badge span { display: block; margin-top: .6rem; color: var(--color-gold); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.support-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 8vw, 7rem); }
.support-intro h2 { margin-bottom: 0; }
.membership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2.6rem; }
.membership-card { padding: clamp(2rem, 5vw, 3.5rem); background: var(--color-paper); border-top: 5px solid #777; }
.membership-card--featured { border-color: var(--color-accent); box-shadow: var(--shadow); }
.membership-card__label { margin: 0; color: var(--color-accent); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.membership-card__price { margin: 1.2rem 0 1.8rem; }
.membership-card__price strong { display: block; font: 700 clamp(2.5rem, 5vw, 4rem)/1 Georgia, serif; }
.membership-card__price span { color: #666; font-size: .85rem; }
.membership-card ul { min-height: 150px; margin: 0 0 1.8rem; padding-left: 1.2rem; }
.membership-card li { margin-bottom: .65rem; }
.membership-note { max-width: 760px; margin: 2rem auto 0; color: #666; font-size: .86rem; text-align: center; }
.signup-section { color: #eee; background: #252525; }
.signup-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 8vw, 7rem); }
.signup-grid h2 { color: #fff; }
.signup-grid a { color: #fff; }
.signup-form { padding: clamp(1.5rem, 4vw, 2.5rem); color: var(--color-ink); background: #fff; }
.signup-form label, .signup-form legend { font-size: .86rem; font-weight: 700; }
.signup-form > label, .signup-form fieldset { display: block; margin-bottom: 1.1rem; }
.signup-form input[type='text'], .signup-form input[type='email'] { width: 100%; margin-top: .35rem; padding: .8rem; border: 1px solid #aaa; border-radius: 0; font: inherit; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.1rem; }
.form-row--place { grid-template-columns: .45fr 1.55fr; }
.signup-form fieldset { padding: 1rem; border: 1px solid #bbb; }
.radio-option { display: flex; align-items: center; gap: .6rem; margin-top: .65rem; }
.privacy-check { display: flex !important; align-items: flex-start; gap: .6rem; font-weight: 400 !important; }
.privacy-check input { margin-top: .3rem; }
.form-message { margin: 1rem 0 0; color: var(--color-accent-dark); font-weight: 700; }
.contact-hero { padding: clamp(4.5rem, 8vw, 7rem) 24px; background: #eee8df; }
.contact-hero h1 { margin: 0 0 1rem; font: 700 clamp(3.2rem, 8vw, 6.5rem)/.96 Georgia, serif; }
.contact-hero p:not(.eyebrow) { max-width: 700px; font-size: 1.18rem; }
.contact-main { background: #fff; }
.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 8vw, 7rem); }
.contact-details h2 { margin-bottom: 2rem; }
.contact-detail { padding: 1.2rem 0; border-top: 1px solid #ccc; }
.contact-detail > span { display: block; color: var(--color-accent); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-detail p { margin: .4rem 0 0; }
.contact-detail a, .contact-hint a { color: var(--color-accent-dark); font-weight: 700; }
.contact-hint { margin-top: 2rem; padding: 1.2rem; background: var(--color-paper); }
.contact-form-wrap { padding: clamp(1.8rem, 5vw, 3.5rem); background: var(--color-paper); border-top: 5px solid var(--color-accent); }
.contact-form-wrap > h2 { margin-bottom: .4rem; }
.contact-form { margin-top: 2rem; }
.contact-form > label { display: block; margin-bottom: 1.1rem; font-size: .86rem; font-weight: 700; }
.contact-form input[type='text'], .contact-form input[type='email'], .contact-form select, .contact-form textarea { width: 100%; margin-top: .35rem; padding: .8rem; color: var(--color-ink); background: #fff; border: 1px solid #aaa; border-radius: 0; font: inherit; }
.contact-form textarea { resize: vertical; }
.support-section { padding: clamp(5rem, 9vw, 8rem) 24px; color: #fff; background: linear-gradient(120deg, #76141d, #a4202b); }
.support-section p:not(.eyebrow) { max-width: 700px; font-size: 1.15rem; }
.support-section .button { margin-top: 1rem; }
.site-footer { padding: 4rem 24px 1.3rem; color: #eee; background: #252525; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
.footer-inner h2, .footer-inner h3 { margin-top: 0; color: #fff; font-family: Georgia, serif; }
.footer-inner a { color: #fff; }
.footer-bottom { width: min(100%, var(--content-width)); margin: 3rem auto 0; padding-top: 1.3rem; border-top: 1px solid rgb(255 255 255 / 18%); font-size: .82rem; }

:focus-visible { outline: 3px solid #f2c777; outline-offset: 3px; }
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded='true'] > span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded='true'] > span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded='true'] > span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; padding: .5rem 24px 1rem; background: #fff; border-top: 1px solid #ddd; box-shadow: var(--shadow); }
  .main-nav.is-open { display: block; }
  .main-nav ul { display: block; }
  .main-nav a { padding: .8rem 0; }
  .main-nav a::after { bottom: .45rem; transform-origin: left; }
  .card-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .people-grid, .people-grid--board { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  :root { --header-height: 78px; }
  .contact-bar { display: none; }
  .header-inner { width: min(calc(100% - 28px), var(--content-width)); }
  .brand img { width: 92px; }
  .production-slider { min-height: 590px; }
  .slide-content { width: calc(100% - 56px); padding-top: 100px; }
  .slide-shade { background: linear-gradient(90deg, rgb(0 0 0 / 82%), rgb(0 0 0 / 38%)); }
  .slider-arrow { top: auto; bottom: 18px; width: 42px; height: 42px; transform: none; }
  .slider-arrow--prev { left: 18px; }
  .slider-arrow--next { right: 18px; }
  .current-production__grid, .text-columns, .footer-inner, .section-heading, .member-section__intro, .ensemble-grid, .article-intro, .production-types, .venue-grid, .passive-hero__inner, .support-intro, .membership-grid, .signup-grid, .contact-layout { grid-template-columns: 1fr; }
  .production-preview-image { min-height: 280px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { min-height: 0; }
  .team-card__number { margin-bottom: 2rem; }
  .team-action { align-items: flex-start; flex-direction: column; }
  .people-grid, .people-grid--board { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .passive-hero__badge { width: 220px; margin: 1rem 0 0; }
  .form-row, .form-row--place { grid-template-columns: 1fr; }
}
@media (max-width: 430px) {
  .people-grid, .people-grid--board { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
