/* ============================================================
   der kleine container – main.css
   Desktop-first | Vanilla CSS | Katja Dickels
   ============================================================ */

/* ── FONTS ──────────────────────────────────────────────── */
@font-face {
    font-family: 'TAN Meringue';
    src: url('../fonts/tan-meringue.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Syne';
    src: url('../fonts/syne.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
    --color-bg:           #ede8e4;
    --color-bg-end:       #ebeae8;
    --color-dark:         #18151c;
    --color-text:         #18151c;
    --color-text-muted:   #6b6070;
    --color-text-light:   #f5f2f8;
    --color-orange:       #fd5b04; /* alt #e05c1a; */
    --color-orange-dark:  #c44d10;
    --color-highlight:    #bc67e7;
    --color-border:       rgba(24,21,28,0.12);

    --blob-1: rgba(224, 80, 18, 0.3);    /* orange */
    --blob-2: rgba(209, 196, 216, 0.444);   /* magenta/pink */
    --blob-3: rgba(145, 60, 220, 0.15);   /* lila */
    --blob-4: rgba(230, 130, 40, 0.25);   /* warmes orange */
    --blob-5: rgba(135, 70, 200, 0.561);   /* violett */

    --font-display: 'TAN Meringue', Georgia, serif;
    --font-ui:      'Syne', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;

    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  2rem;
    --space-lg:  4rem;
    --space-xl:  8rem;

    --wrapper-max:     78rem;
    --wrapper-padding: 1.5rem;
    --header-height:   4.5rem;
    --transition:      0.25s ease;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    background-image: linear-gradient(135deg, var(--color-bg-end) 0%, var(--color-bg) 100%);
    background-attachment: fixed;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}
img, video { max-width: 100%; height: auto; display: block; }

/* ── BLOB BACKGROUND LAYER ───────────────────────────────── */
.blob-layer {
    position: fixed;
    inset: -15vw;
    z-index: 0; /* immer unter allem Content (main z-index:2, .section z-index:1) */
    pointer-events: none;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    will-change: transform;
    animation: blob-drift 20s ease-in-out infinite alternate;
    opacity: 0.1;
}
.blob-1 {
    width: 75vw; height: 70vw;
    top: -10%; right: -5%;
    background: var(--blob-1);
    animation-duration: 46s;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
}
.blob-2 {
    width: 60vw; height: 55vw;
    top: 15%; left: -10%;
    background: var(--blob-2);
    animation-duration: 54s;
    animation-delay: -18s;
    border-radius: 40% 60% 30% 70% / 60% 40% 70% 50%;
}
.blob-3 {
    width: 55vw; height: 50vw;
    bottom: 0%; right: 5%;
    background: var(--blob-3);
    animation-duration: 38s;
    animation-delay: -10s;
    border-radius: 70% 30% 50% 60% / 40% 70% 30% 60%;
}
.blob-4 {
    width: 42vw; height: 42vw;
    top: 45%; left: 35%;
    background: var(--blob-4);
    animation-duration: 50s;
    animation-delay: -28s;
    border-radius: 50% 60% 40% 70% / 60% 50% 70% 40%;
}
.blob-5 {
    width: 50vw; height: 46vw;
    top: 25%; right: 0%;
    background: var(--blob-5);
    animation-duration: 62s;
    animation-delay: -14s;
    border-radius: 30% 70% 60% 40% / 70% 30% 60% 50%;
}
@keyframes blob-drift {
    0%   { transform: translate(0, 0)          scale(1)    rotate(0deg);   border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%; }
    20%  { transform: translate(18vw, -12vh)   scale(1.1)  rotate(7deg);   border-radius: 40% 60% 30% 70% / 65% 35% 55% 45%; }
    45%  { transform: translate(-22vw, 16vh)   scale(0.92) rotate(-6deg);  border-radius: 70% 30% 55% 45% / 40% 65% 35% 60%; }
    70%  { transform: translate(20vw, 6vh)     scale(1.06) rotate(4deg);   border-radius: 45% 55% 65% 35% / 55% 45% 70% 30%; }
    100% { transform: translate(-18vw, -10vh)  scale(1.02) rotate(-2deg);  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%; }
}

/* Bild-Blob: eigene Animation mit deutlicherer Rotation */
.blob-img {
    width: 62vw;
    height: auto;
    top: auto;
    top: 28%;
    right: 4%;
    left: auto;
    opacity: 0.12;
    background: none;
    filter: none;
    border-radius: 0;
    /* Weiche Kanten nach außen hin ausblenden */
    -webkit-mask-image: radial-gradient(ellipse 72% 68% at 55% 48%, black 30%, transparent 78%);
    mask-image: radial-gradient(ellipse 72% 68% at 55% 48%, black 30%, transparent 78%);
    will-change: transform;
    /* Keine CSS-Animation — JS übernimmt Rotation + Parallax beim Scrollen */
}
@keyframes blob-img-drift {
    0%   { transform: translate(0, 0)       rotate(0deg)   scale(1); }
    25%  { transform: translate(6vw, -5vh)  rotate(20deg)  scale(1.05); }
    55%  { transform: translate(-5vw, 9vh)  rotate(-14deg) scale(0.96); }
    80%  { transform: translate(7vw, 2vh)   rotate(25deg)  scale(1.03); }
    100% { transform: translate(-3vw, -6vh) rotate(-6deg)  scale(1.01); }
}
@media (prefers-reduced-motion: reduce) {
    .blob { animation: none; }
    .blob-img { animation: none; }
}
.header, .mobile-menu { position: relative; z-index: 100; }
main, .footer { position: relative; z-index: 2; }

/* ── TYPOGRAFIE ──────────────────────────────────────────── */
h1 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.05;
    color: var(--color-text);
    letter-spacing: -0.01em;
}
h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text);
}

#produktion h2 {
    color: var(--color-text-light);
}

h4, h5, h6 {
    font-family: var(--font-ui);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}
h1 { font-size: clamp(2rem, 9vw, 7rem); overflow-wrap: break-word; }
h2 { font-size: clamp(1.6rem, 4.5vw, 3.75rem); overflow-wrap: break-word; }
h3 { font-size: clamp(1.3rem, 3vw, 3rem); }
h4 { font-size: 1.125rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
li { font-size: 1rem; line-height: 1.8; margin-bottom: 0.4rem; }
br { display: block; margin-bottom: 0.5em; }
a { color: var(--color-orange); transition: color var(--transition); }
@media (hover: hover) {
    a:hover { color: var(--color-orange-dark); text-decoration: none; }
}
nav, button, input, textarea, select, label { font-family: var(--font-ui); }

/* ── LAYOUT ──────────────────────────────────────────────── */
.wrapper { max-width: var(--wrapper-max); margin: 0 auto; padding: 0 var(--wrapper-padding); position: relative; z-index: 1; }
.section { padding: var(--space-lg) 0; background: transparent; position: relative; z-index: 1; }
.section--dark { background: transparent; }
/* Screenreader only */
.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;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
a.primary, button.primary,
a.secondary, button.secondary {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
a.primary, button.primary {
    background-color: var(--color-orange);
    color: #fff;
    border-color: var(--color-orange);
}
@media (hover: hover) {
    a.primary:hover, button.primary:hover {
        background-color: var(--color-orange-dark);
        border-color: var(--color-orange-dark);
        color: #fff;
    }
}
a.secondary, button.secondary {
    background-color: transparent;
    color: var(--color-text);
    border-color: var(--color-text);
}
@media (hover: hover) {
    a.secondary:hover, button.secondary:hover {
        background-color: var(--color-text);
        color: var(--color-text-light);
    }
}
a.secondary--light, button.secondary--light {
    background-color: transparent;
    color: var(--color-text-light);
    border-color: rgba(255,255,255,0.7);
}
@media (hover: hover) {
    a.secondary--light:hover, button.secondary--light:hover {
        background-color: rgba(255,255,255,0.15);
        border-color: #fff;
    }
}

/* ── SKIP LINK ────────────────────────────────────────────── */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--color-orange);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.875rem; z-index: 9999;
    transition: top var(--transition); text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── HEADER ──────────────────────────────────────────────── */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--header-height);
    z-index: 100;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}
.header.is-scrolled {
    background-color: var(--color-bg-end);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
}
.header-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}
.site-logo { text-decoration: none; color: var(--color-text); flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; max-width: none; }
.site-name {
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
/* Desktop-Nav einklappen beim Scrollen */
.nav {
    display: flex; align-items: center; gap: 2.5rem;
    margin-left: auto;
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    max-width: 60rem;
    opacity: 1;
    transform: translateX(0);
}
.nav-collapsed .nav {
    max-width: 0;
    opacity: 0;
    transform: translateX(2rem);
    pointer-events: none;
}
.nav-collapsed .hamburger {
    display: flex;
}
@media (prefers-reduced-motion: reduce) {
    .nav { transition: none; }
}
.nav a {
    font-family: var(--font-ui);
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    transition: color var(--transition);
}
.nav a::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--color-orange);
    transition: width var(--transition);
}
@media (hover: hover) {
    .nav a:hover { color: var(--color-orange); }
    .nav a:hover::after { width: 100%; }
}
.nav a[aria-current="page"] { color: var(--color-orange); }
.nav a[aria-current="page"]::after { width: 100%; }
.nav .nav-instagram { display: flex; align-items: center; margin-left: 0.5rem; }
.nav .nav-instagram svg { width: 18px; height: 18px; }

.hamburger {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; width: 2.5rem; height: 2.5rem;
    background: none; border: none; cursor: pointer; padding: 0.25rem;
    flex-shrink: 0;
}
.hamburger span {
    display: block; width: 100%; height: 2px;
    background-color: var(--color-text);
    transition: all var(--transition); border-radius: 1px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed; inset: 0;
    background-color: var(--color-dark);
    z-index: 200;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: var(--space-md);
    opacity: 0; visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: var(--space-sm); }
.mobile-menu nav a {
    font-family: var(--font-ui);
    font-size: clamp(1.4rem, 5.5vw, 3rem);
    font-weight: 800;
    color: var(--color-text-light);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color var(--transition);
    padding: 0.5rem 0;
    min-height: 44px;
    display: flex; align-items: center;
}
@media (hover: hover) {
    .mobile-menu nav a:hover { color: var(--color-highlight); }
}
.mobile-menu-close {
    position: absolute; top: 1.25rem; right: 1.25rem;
    background: none; border: none; font-size: 1.5rem; cursor: pointer;
    color: var(--color-text-light);
    width: 2.5rem; height: 2.5rem;
    display: flex; align-items: center; justify-content: center;
    transition: color var(--transition);
}
@media (hover: hover) {
    .mobile-menu-close:hover { color: var(--color-highlight); }
}

main { padding-top: var(--header-height); }
.is-home main { padding-top: 0; }

/* ── HEADER AUF HOMEPAGE (transparent über Hero) ──────────── */
.is-home .header:not(.is-scrolled) {
    background-color: transparent;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    .site-logo img {zoom: 2; padding-top: 1rem; transition: all 0.3s ease-in-out;}
}
.is-home .header:not(.is-scrolled) .nav a { color: var(--color-text-light); }
.is-home .header:not(.is-scrolled) .nav a::after { background: var(--color-orange); }
@media (hover: hover) {
    .is-home .header:not(.is-scrolled) .nav a:hover { color: var(--color-orange); }
}
.is-home .header:not(.is-scrolled) .site-name { color: var(--color-text-light); }
.is-home .header:not(.is-scrolled) .site-logo img { filter: brightness(0) invert(1); }
.is-home .header.is-scrolled .site-logo img,
.is-subpage .site-logo img { filter: brightness(0); }
.is-home .header:not(.is-scrolled) .hamburger span { background-color: var(--color-text-light); }
.is-home .header:not(.is-scrolled) .nav .nav-instagram svg { stroke: var(--color-text-light); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
    background-color: #170824;
    color: var(--color-text-light);
    padding: var(--space-lg) 0 var(--space-md);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}
.footer-col nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col nav a,
.footer-col p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color var(--transition);
    margin: 0; line-height: 1.6;
}
@media (hover: hover) {
    .footer-col nav a:hover { color: var(--color-orange); }
}
/* Newsletter */
.footer-newsletter {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: var(--space-md);
}
.footer-newsletter h4 {
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.375rem;
    font-weight: 700;
}
.footer-newsletter-text p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.5;
}
.newsletter-input-row {
    display: flex;
    gap: 0.5rem;
}
.newsletter-input-row input[type="email"] {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 0.375rem;
    padding: 0.6875rem 1rem;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    outline: none;
    transition: border-color var(--transition);
}
.newsletter-input-row input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input-row input[type="email"]:focus { border-color: var(--color-orange); }
.newsletter-input-row .primary {
    white-space: nowrap;
    flex-shrink: 0;
}
.newsletter-privacy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin: 0.5rem 0 0;
    line-height: 1.5;
}
.newsletter-privacy a { color: rgba(255,255,255,0.6); text-decoration: underline; text-underline-offset: 2px; }
@media (hover: hover) {
    .newsletter-privacy a:hover { color: var(--color-orange); }
}
#footer-newsletter { scroll-margin-top: 4rem; }

.footer-col-logo .site-name { color: var(--color-text-light); margin-bottom: var(--space-sm); display: block; }
.footer-logo { display: inline-block; margin-bottom: var(--space-sm); }
.footer-logo img {
    height: 60px; width: auto; max-width: none;
    filter: brightness(0) invert(1);
    display: block;
}
.footer-bottom {
    display: flex; align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    gap: var(--space-sm); flex-wrap: wrap;
}
.footer-foerderer {
    display: flex; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}
.footer-foerderer img { opacity: 0.45; filter: grayscale(100%) brightness(2); height: 28px; width: auto; }
.footer-foerderer span { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.footer-bottom p,
.footer-credit { font-size: 0.8125rem; color: rgba(255,255,255,0.55); margin: 0; }
.footer-credit a { color: rgba(255,255,255,0.75); }
@media (hover: hover) {
    .footer-credit a:hover { color: var(--color-orange); }
}

/* ── HERO MIT SLIDESHOW ───────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-dark);
}
.hero--sticky {
    position: sticky;
    top: 0;
    z-index: 1;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease-in-out, transform 1.4s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: opacity, transform;
}
.hero-slide.is-active {
    opacity: 1;
    transform: translateX(0);
}
.hero-slide.is-leaving {
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1.3s cubic-bezier(0.25,0.46,0.45,0.94);
}
/* Gradient-Slide — transparent, blob-layer scheint durch */
.hero-slide--gradient,
.hero-slide--fallback {
    background: var(--color-dark);
    opacity: 1;
    transform: translateX(0);
    transition: none;
}
.hero-slide picture,
.hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.hero-overlay {
    position: absolute; inset: 0;
    transition: opacity 1s ease;
    background: linear-gradient(to bottom, rgba(24,21,28,0.2) 0%, rgba(24,21,28,0.75) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    padding: calc(var(--header-height) + var(--space-xl)) var(--wrapper-padding) var(--space-xl);
    max-width: var(--wrapper-max);
    margin: 0 auto; width: 100%;
}
.hero-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 1rem;
    display: block;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 13vw, 9.5rem);
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 0.95;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
}
.hero-sub {
    font-family: var(--font-ui);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(245,242,248,0.8);
    font-weight: 400;
    max-width: 36rem;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}
/* Scribble-Underline unter Section-Headings */
.scribble-h2 {
    position: relative;
    display: inline-block;
}
.scribble-h2::after {
    content: '';
    position: absolute;
    left: 0; bottom: -0.45rem;
    width: 55%; height: 0.5rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10' preserveAspectRatio='none'%3E%3Cpath d='M2%2C7 C22%2C2 48%2C11 78%2C6 C108%2C1 135%2C10 165%2C5 C185%2C2 195%2C8 198%2C5' stroke='%23e05c1a' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat left / 100% 100%;
    opacity: 0.7;
}
.hero-buttons { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.hero-dots {
    position: absolute; bottom: 2rem; right: var(--wrapper-padding);
    z-index: 2; display: flex; gap: 0.5rem;
}
.hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none; cursor: pointer; padding: 0;
    transition: background var(--transition), transform var(--transition);
}
.hero-dot.is-active { background: var(--color-orange); transform: scale(1.3); }
@media (hover: hover) {
    .hero-dot:hover { background: rgba(255,255,255,0.7); }
}

/* ── SECTION-LABEL ───────────────────────────────────────── */
.section-label {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 1rem;
    display: block;
}

/* ── WER WIR SIND ─────────────────────────────────────────── */
.wir-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}
.wir-col-left h2 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.0;
    margin-bottom: var(--space-md);
}
.keywords {
    display: flex; flex-wrap: wrap;
    gap: 0.5rem; margin-bottom: var(--space-md);
}
.keyword {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border: 2px solid var(--color-text);
    color: var(--color-text);
    text-decoration: none;
    transition: all var(--transition);
    display: inline-block;
}
@media (hover: hover) {
    .keyword:hover {
        background: var(--color-text);
        color: var(--color-text-light);
    }
}
p.highlight {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-text);
    border-left: 3px solid var(--color-orange);
    padding-left: 1rem;
    margin-top: var(--space-md);
}

/* ── CONTAINER-HISTORY ────────────────────────────────────── */
.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    margin-top: var(--space-md);
}
.history-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.history-img { aspect-ratio: 4/3; overflow: hidden; background: var(--color-border); }
.history-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
@media (hover: hover) {
    .history-img:hover img { transform: scale(1.04); }
}

/* ── CONTAINER HERO ──────────────────────────────────────── */
.container-hero {
    position: relative;
    height: 75vh;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: var(--space-xl);
}
.container-hero--sticky {
    position: sticky;
    top: 0;
    z-index: 1;
}
.container-hero-bg {
    position: absolute; inset: 0;
}
.container-hero-bg picture { display: block; height: 100%; }
.container-hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.container-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(55,5,90,0.42) 0%, rgba(10,5,20,0.62) 100%);
    z-index: 2;
}
.container-hero .wrapper {
    position: relative;
    z-index: 3;
    text-align: left;
    width: 100%;
}
.container-hero .section-label { color: rgba(255,255,255,0.65); }
.container-hero h2 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.0;
    color: #fff;
    margin-bottom: 0;
    text-align: left;
}
/* Sanfter Fade-out am unteren Rand von Fullbleed-Sections */
.section-fade-bottom::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 35%;
    background: linear-gradient(to bottom, transparent 0%, rgba(10,5,20,0.55) 100%);
    z-index: 4;
    pointer-events: none;
}

/* ── FOTO-SLIDER ──────────────────────────────────────────── */
.photo-slider { overflow: hidden; position: relative; margin-top: 0; }
.photo-slider-track {
    display: flex; gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.photo-slide-item {
    flex-shrink: 0; width: 40%;
    aspect-ratio: 3/4;
    overflow: hidden; background: var(--color-border);
}
.photo-slide-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
@media (hover: hover) {
    .photo-slide-item:hover img { transform: scale(1.03); }
}
.slider-controls {
    display: flex; gap: 0.75rem;
    margin-top: var(--space-sm);
    justify-content: flex-end;
}
.slider-btn {
    width: 3rem; height: 3rem;
    border: 2px solid var(--color-text);
    background: transparent; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.125rem; color: var(--color-text);
    transition: all var(--transition);
    font-family: var(--font-ui);
}
@media (hover: hover) {
    .slider-btn:hover {
        background: var(--color-text);
        color: var(--color-text-light);
    }
}

/* ── TEAM ─────────────────────────────────────────────────── */
.team-page-h1 {
    font-size: clamp(2.5rem, 8vw, 7rem);
    margin-bottom: var(--space-sm);
}
.team-page-intro {
    max-width: 44rem;
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Alternating row layout */
.team-list-section { padding-top: 0; }
.team-member-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--color-border);
    position: relative; /* GPU-Layer-Reihenfolge sicherstellen */
    z-index: 1;
}
.team-member-row:first-of-type { border-top: 1px solid var(--color-border); }

/* Odd rows: image right, text left */
.team-member-row--reverse { direction: rtl; }
.team-member-row--reverse > * { direction: ltr; }

/* Image */
.team-member-img {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--color-border);
    position: relative;
    z-index: 1;
}
.team-member-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
@media (hover: hover) {
    .team-member-row:hover .team-member-img img { transform: scale(1.04); }
}
.team-member-img-placeholder {
    width: 100%; height: 100%;
    background: var(--color-border);
    position: relative;
    z-index: 1;
}

/* Text block */
.team-member-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.team-member-body h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}
.team-member-role {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-orange);
    margin: 0;
}
.team-member-bio {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}
.team-member-body .secondary { align-self: flex-start; }

/* Team-Grid (Homepage-Teaser) */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }

/* Team-Teaser Slider (Homepage): 5 Mitglieder sichtbar, kreisförmig */
.team-slider .photo-slide-item {
    width: calc(20% - 1.2rem); /* 5 sichtbar bei 1.5rem gap */
    aspect-ratio: auto;
    background: transparent;
    overflow: visible;
    align-items: center;
    text-align: center;
}
.team-slider .photo-slide-item .team-photo {
    width: 100%;
    aspect-ratio: 1;
}
.team-member { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
.team-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-border);
    position: relative;
    border-radius: 50%;
}
.team-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s ease;
    filter: grayscale(20%);
}
.team-photo-link {
    display: block;
    width: 100%;
    text-decoration: none;
}
@media (hover: hover) {
    .team-photo-link:hover .team-photo img { transform: scale(1.06); filter: grayscale(0%); }
}
.team-name { font-family: var(--font-ui); font-size: 1rem; font-weight: 700; margin: 0; }
.team-role { font-size: 0.875rem; color: var(--color-text-muted); margin: 0; line-height: 1.4; }

/* ── PRODUKTIONEN ─────────────────────────────────────────── */
.produktion-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-border);
}
.produktion-card:last-of-type { border-bottom: 1px solid var(--color-border); }
.produktion-card--flip { direction: rtl; }
.produktion-card--flip > * { direction: ltr; }
.produktion-body { display: flex; flex-direction: column; gap: var(--space-sm); }
.produktion-title a { color: var(--color-text); text-decoration: none; transition: color var(--transition); }
@media (hover: hover) {
    .produktion-title a:hover { color: var(--color-orange); }
    .produktion-img:hover img { transform: scale(1.03); }
}
.produktion-img img { transition: transform 0.5s ease; }
.prod-meta-date {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin: 0;
}

/* ── PRODUKTION EINZELSEITE ───────────────────────────────── */
.prod-hero {
    padding: calc(var(--header-height) + var(--space-lg)) 0 var(--space-lg);
    position: relative;
}

.prod-hero:first-of-type { border-top: 1px solid var(--color-border) }

.prod-hero--img {
    min-height: 65svh;
    display: flex;
    align-items: flex-end;
    padding-bottom: var(--space-xl);
    color: var(--color-text-light);
}
.prod-hero-img {
    position: absolute; inset: 0;
    overflow: hidden;
}
.prod-hero-img picture, .prod-hero-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.prod-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(24,21,28,0.2) 0%, rgba(24,21,28,0.75) 100%);
}
.prod-hero-content {
    position: relative; z-index: 2;
}
.prod-hero--img h1,
.prod-hero--img h2 {
    color: var(--color-text-light);
    font-size: clamp(1.75rem, 8vw, 6.5rem);
}
.prod-hero--img .section-label { color: var(--color-orange); }
.prod-hero--img .prod-meta-date { color: rgba(245,242,248,0.7); }
.prod-summary {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 42rem;
    margin-top: var(--space-sm);
    color: rgba(245,242,248,0.85);
}

.prod-grid {
    display: grid;
    grid-template-columns: 1fr 18rem;
    gap: var(--space-xl);
    align-items: start;
}
.prod-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.prod-sidebar-block {
    border-top: 2px solid var(--color-text);
    padding-top: var(--space-sm);
}
.prod-sidebar-label {
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}
.prod-foerderer {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
}
.prod-foerderer-list {
    display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center;
    margin-top: 0.75rem;
}
.prod-foerderer-item {
    display: flex;
}
.prod-foerderer-item img {
    max-width: 100%; height: auto; max-height: 3rem;
    width: auto; object-fit: contain; object-position: left center;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}
@media (hover: hover) {
    .prod-foerderer-item a:hover img { opacity: 1; }
}
.prod-cast-list,
.prod-spielzeiten-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 0.35rem;
}
.prod-cast-list li,
.prod-spielzeiten-list li {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}
.prod-spielzeiten-list li::before { content: '— '; color: var(--color-orange); }
.prod-gallery-heading {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: var(--space-md);
}

/* Trennlinie zwischen Produktionen */
.prod-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: var(--space-xl) auto;
    max-width: var(--wrapper-max);
    padding: 0 var(--wrapper-padding);
}
.prod-detail-entry:last-of-type + .prod-divider { display: none; }


.produktion-card--flip > * { direction: ltr; }
.produktion-body { display: flex; flex-direction: column; gap: var(--space-sm); }
.produktion-img { aspect-ratio: 16/10; overflow: hidden; background: var(--color-border); }
.produktion-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
@media (hover: hover) {
    .produktion-card:hover .produktion-img img { transform: scale(1.03); }
}
.produktion-label {
    font-family: var(--font-ui); font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--color-orange); margin-bottom: 0.75rem; display: block;
}
.produktion-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    line-height: 1.1; margin-bottom: var(--space-sm);
}
.gastspiel-list { list-style: none; padding: 0; margin-top: var(--space-sm); display: flex; flex-direction: column; gap: 0.3rem; }
.gastspiel-list li { font-size: 0.875rem; color: var(--color-text-muted); margin: 0; }
.gastspiel-list li::before { content: '— '; color: var(--color-orange); }

.old-prods-table { width: 100%; border-collapse: collapse; margin-top: var(--space-md); }
.old-prods-table thead tr { border-bottom: 2px solid var(--color-text); }
.old-prods-table th {
    font-family: var(--font-ui); font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--color-text-muted); padding: 0.75rem 1rem 0.75rem 0; text-align: left;
}
.old-prods-table td {
    padding: 1rem 1rem 1rem 0; font-size: 0.9375rem;
    border-bottom: 1px solid var(--color-border);
    vertical-align: top; line-height: 1.5;
}
.old-prods-table td:first-child { font-family: var(--font-ui); font-weight: 700; }

/* ── SPIELSTÄTTE + KONTAKT ────────────────────────────────── */
.ss-kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}
.ss-kontakt-left h2,
.ss-kontakt-right h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: var(--space-md);
}
.spielstaette-logo { max-width: 14rem; margin-top: var(--space-md); }

/* ── KONTAKT ──────────────────────────────────────────────── */
#kontakt-form { scroll-margin-top: var(--header-height); }
.kontakt-section {
    background: transparent;
}
.kontakt-section h2 {
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    color: var(--color-text);
    margin-bottom: var(--space-md);
}
.contact-form { display: grid; gap: var(--space-sm); max-width: 44rem; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-sm); }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-family: var(--font-ui); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted);
}
.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    background: rgba(255,255,255,0.6);
    font-family: var(--font-body); font-size: 1rem; color: var(--color-text);
    transition: border-color var(--transition); outline: none;
    border-radius: 0.25rem;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(40,20,60,0.35); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--color-orange); }
.form-group textarea { resize: vertical; }
.checkbox-group { flex-direction: row; align-items: flex-start; gap: 0.75rem; }
.checkbox-group label { font-size: 0.875rem; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--color-text); }
.checkbox-group input[type="checkbox"] { margin-top: 0.2rem; width: 1.1rem; height: 1.1rem; flex-shrink: 0; cursor: pointer; accent-color: var(--color-orange); }
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-message { padding: 1rem 1.25rem; margin-bottom: var(--space-sm); border-radius: 0.375rem; }
.form-message.success { background: rgba(42,122,42,0.1); color: #1a5c1a; border-left: 3px solid #2a7a2a; }
.form-message.error   { background: rgba(200,0,0,0.08); color: #900; border-left: 3px solid #c00; }

/* ── FÖRDERER ─────────────────────────────────────────────── */
.foerderer-grid {
    display: flex; flex-wrap: wrap; gap: var(--space-md);
    align-items: center; margin-top: var(--space-md);
}
.foerderer-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--color-text-muted); }
.foerderer-item img { height: 2.5rem; width: auto; opacity: 0.7; filter: grayscale(50%); }

/* ── LOGOS-STRIP (Förderer-Marquee) ──────────────────────── */
.logos-strip {
    background-color: #f5f2f0;
    border-top: 1px solid rgba(24,21,28,0.08);
    border-bottom: 1px solid rgba(24,21,28,0.08);
    padding: var(--space-lg) 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.logos-strip-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    text-align: center;
}
.logos-marquee {
    overflow: hidden;
    position: relative;
    background-color: #f5f2f0; /* verhindert weißen Flash beim Loop-Reset */
}
.logos-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    will-change: transform;
    /* Animation via JS (requestAnimationFrame) — kein CSS infinite wegen iOS-Bug */
}
.logos-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logos-item img {
    height: 36px;
    width: auto;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}
@media (hover: hover) {
    .logos-item img:hover {
        opacity: 1;
        filter: grayscale(0%);
    }
}
.logos-text {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text-muted);
    white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
    .logos-track { animation: none; transform: none !important; }
}

/* ── STICKY SCROLL OVERLAP ───────────────────────────────── */
.sticky-wrap {
    position: relative;
    /* Höhe ergibt sich aus sticky-scene (100svh) + section-over (Inhalt) */
}
.sticky-scene {
    position: sticky;
    top: 0;
    height: 100svh;
    overflow: hidden;
    z-index: 1;
}
.sticky-scene picture { display: block; height: 100%; }
.sticky-scene img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sticky-scene-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(55,5,90,0.42) 0%, rgba(10,5,20,0.62) 100%);
    z-index: 2;
}
.sticky-scene-text {
    position: absolute;
    bottom: 12%;
    left: 0; right: 0;
    padding: 0 var(--wrapper-padding);
    z-index: 3;
    color: #fff;
}
.sticky-scene-text-inner {
    max-width: var(--wrapper-max, 75rem);
    margin: 0 auto;
}

.sticky-scene-text .section-label { color: rgba(255,255,255,0.65); }
.sticky-scene-text h2 {
    color: #fff;
    margin-bottom: 0;
    font-size: clamp(2.5rem, 8vw, 7rem);
}
/* Die Section die über die Sticky-Scene gleitet */
.section-over {
    position: relative;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    z-index: 2;
    background-image: linear-gradient(135deg, var(--color-bg-end) 0%, var(--color-bg) 100%);
    box-shadow: 0 -6px 30px rgba(42,10,66,0.12);
}
/* Variante: lokale Blobs innerhalb der Section (nicht transparent) */
.section-over--blobs {
    overflow: hidden; /* Blobs sauber am Rand abschneiden */
}
/* Lokale Blob-Ebene absolut in der Section */
.blob-layer--local {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
/* Wrapper-Inhalt über lokalen Blobs */
.section-over--blobs .wrapper {
    position: relative;
    z-index: 1;
}

/* ── GALERIE ──────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 0.5rem;
    margin-top: var(--space-md);
}
.gallery-item {
    overflow: hidden;
    background: var(--color-border);
    cursor: pointer;
    grid-column: span 1;
    grid-row: span 1;
}
.gallery-item--landscape {
    grid-column: span 2;
}
.gallery-item--portrait {
    grid-row: span 2;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
@media (hover: hover) {
    .gallery-item:hover img { transform: scale(1.04); }
}
.photo-slide-item--lightbox { position: relative; cursor: zoom-in; }

.lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.94); z-index: 500;
    align-items: center; justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: none; border: none; color: #fff;
    font-size: 2rem; cursor: pointer; line-height: 1; font-family: var(--font-ui);
}

/* ── SEITEN-HERO ──────────────────────────────────────────── */
.page-hero { padding: var(--space-xl) 0 var(--space-lg); }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 7rem);
    color: var(--color-text); font-weight: 400;
}
.content-prose { max-width: 50rem; }
.content-prose p { font-size: 1.0625rem; line-height: 1.85; }

/* ── TERMINE ──────────────────────────────────────────────── */
.termine-header {
    display: flex; align-items: baseline;
    justify-content: space-between; margin-bottom: var(--space-md);
}
.all-link {
    font-family: var(--font-ui); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--color-text); text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.4rem;
    transition: color var(--transition);
}
@media (hover: hover) { .all-link:hover { color: var(--color-orange); } }
.termine-list { display: flex; flex-direction: column; }
.termin-item {
    display: grid; grid-template-columns: 7rem 7rem 1fr auto;
    gap: var(--space-md); align-items: center;
    padding: var(--space-md) 0; border-bottom: 1px solid var(--color-border);
}
.termin-item:first-child { border-top: 1px solid var(--color-border); }
.termin-image { aspect-ratio: 4/3; overflow: hidden; background: var(--color-border); }
.termin-image img { width: 100%; height: 100%; object-fit: cover; }
.termin-meta { display: flex; flex-direction: column; gap: 0.1rem; }
.termin-date { font-family: var(--font-ui); font-size: 0.9375rem; font-weight: 700; }
.termin-location { font-family: var(--font-ui); font-size: 0.75rem; color: var(--color-text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.termin-info h3 { font-size: 1.0625rem; margin-bottom: 0.3rem; }
.termin-info p { font-size: 0.875rem; color: var(--color-text-muted); margin: 0; }

/* Prod-Links: Mehr lesen + Alle Produktionen nebeneinander, auf Mobile stapeln */
.prod-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem var(--space-md);
    margin-top: var(--space-sm);
    align-items: center;
}
.prod-links .more-link { margin-top: 0; }

/* ── UTILS ────────────────────────────────────────────────── */
.more-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-ui); font-size: 0.8125rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--color-text); text-decoration: none;
    margin-top: var(--space-sm); transition: color var(--transition);
}
@media (hover: hover) { .more-link:hover { color: var(--color-orange); } }
.visually-hidden {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-orange { color: var(--color-orange); }

/* Garantiert dass alle Content-Grids immer über Blob-Layer liegen */
.wir-grid, .history-grid, .prod-grid, .ss-kontakt-grid,
.photo-slider, .gallery-grid, .team-grid,
.team-member-body, .prod-main, .prod-sidebar,
.contact-form, .hero-content, .container-hero-content {
    position: relative;
    z-index: 1;
}

/* ── SCROLL FADE-IN ───────────────────────────────────────── */
.fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1200px) {
    .team-member-row { gap: var(--space-lg); }
}
@media (max-width: 1024px) {
    :root { --space-lg: 3rem; --space-xl: 5rem; }
    .wir-grid { gap: var(--space-lg); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .team-member-row { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .photo-slide-item { width: 55%; }
    .team-slider .photo-slide-item { width: calc(33.333% - 1rem); } /* 3 sichtbar */
    .produktion-card { gap: var(--space-md); }
    .ss-kontakt-grid { gap: var(--space-lg); }
}
@media (max-width: 768px) {
    .nav { display: none; }
    .hamburger { display: flex; }
    :root { --space-md: 1.5rem; --space-lg: 2.5rem; }
    .wir-grid { grid-template-columns: 1fr; }
    .history-grid { grid-template-columns: 1fr; }
    .produktion-card { grid-template-columns: 1fr; }
    .produktion-card--flip { direction: ltr; }
    .prod-grid { grid-template-columns: 1fr; }
    .prod-sidebar { position: static; }
    .ss-kontakt-grid { grid-template-columns: 1fr; }
    .team-member-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .team-member-row--reverse { direction: ltr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .photo-slide-item { width: 75%; }
    .team-slider .photo-slide-item { width: calc(50% - 0.75rem); } /* 2 sichtbar */
    .termin-item { grid-template-columns: 5rem 1fr; }
    .termin-item > a.primary { grid-column: 1 / -1; justify-self: start; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-newsletter { grid-template-columns: 1fr; gap: var(--space-sm); }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .old-prods-table thead { display: none; }
    .old-prods-table td { display: block; padding: 0.4rem 0; border: none; }
    .old-prods-table tr { border-bottom: 1px solid var(--color-border); padding: 1rem 0; display: block; }
    body { background-attachment: scroll; }
    .blob { filter: blur(50px); }
}
@media (max-width: 640px) {
    :root { --space-lg: 2rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery-item--landscape { grid-column: span 2; }
    .form-row { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .team-member-img { aspect-ratio: 3 / 2; }
    .newsletter-input-row { flex-direction: column; }
    .newsletter-input-row .primary { width: 100%; }
}
@media (max-width: 480px) {
    :root { --space-lg: 1.75rem; --wrapper-padding: 1rem; }
    /* Größen + Umbrechung auf Mobile */
    h1 { overflow-wrap: break-word; word-break: break-word; hyphens: none; }
    h2 { font-size: 1.3rem; overflow-wrap: break-word; word-break: break-word; hyphens: none; }
    .termin-item { grid-template-columns: 1fr; }
    .termin-image { display: none; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; }
    .photo-slide-item { width: 90%; }
    .team-slider .photo-slide-item { width: calc(50% - 0.75rem); } /* genau 2 Kreise sichtbar */
    .history-imgs { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── DATENSCHUTZ / IMPRESSUM ────────────────────────────── */
.legal-prose h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.5rem; }
.legal-prose h3 { font-size: 1rem; font-weight: 700; margin-top: 1.25rem; margin-bottom: 0.35rem; }
