@font-face {
    font-family: 'Ahsing';
    src: url(fonts/typogama-ahsing.otf) format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

:root {
    --pink: #d63f8c;
    --pink-light: #e85fa8;
    --pink-dark: #a02870;
    --black: #0a0a0a;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --white: #f5f0ec;
    --grey: #888
}

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

html {
    scroll-behavior: smooth
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    overflow-x: hidden
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    background: rgb(10 10 10 / .85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgb(214 63 140 / .15);
    transition: padding 0.3s
}

nav.scrolled {
    padding: .8rem 3rem
}

.nav-logo img {
    height: 38px;
    filter: brightness(1)
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .75;
    transition: opacity 0.2s, color 0.2s
}

.nav-links a:hover {
    opacity: 1;
    color: var(--pink-light)
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px
}

.nav-burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.nav-burger.open span:nth-child(2) {
    opacity: 0
}

.nav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    font-family: 'Ahsing', serif;
    font-size: 2.2rem;
    color: var(--white);
    text-decoration: none;
    font-style: italic;
    transition: color 0.2s
}

.mobile-menu a:hover {
    color: var(--pink)
}

#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding: 0 3rem 5rem;
    overflow: hidden
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(10 10 10 / .95) 0%, rgb(10 10 10 / .3) 50%, transparent 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px
}

.hero-tag {
    display: inline-block;
    font-size: .7rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 1.2rem;
    border: 1px solid var(--pink-dark);
    padding: .35rem .9rem;
    border-radius: 2px
}

.hero-title {
    font-family: 'Ahsing', serif;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    line-height: .92;
    color: var(--white);
    letter-spacing: -.02em
}

.hero-title em {
    font-style: italic;
    color: var(--pink)
}

.hero-sub {
    margin-top: 1.8rem;
    font-size: 1.05rem;
    color: rgb(245 240 236 / .65);
    max-width: 480px;
    line-height: 1.6
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-top: 2.4rem;
    padding: .85rem 2.2rem;
    background: var(--pink);
    color: var(--white);
    text-decoration: none;
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.25s, transform 0.2s
}

.hero-cta:hover {
    background: var(--pink-dark);
    transform: translateY(-2px)
}

.hero-cta svg {
    width: 16px;
    height: 16px
}

.hero-banner {
    width: min(1000px, 90vw);
    height: auto;
    display: block;
    margin-bottom: 0.5rem;
}

.scroll-hint {
    position: absolute;
    bottom: 2.2rem;
    right: 3rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgb(245 240 236 / .4);
    writing-mode: vertical-lr
}

.scroll-hint::before {
    content: '';
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--pink), transparent);
    display: block
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/Hester Parkhaus Querformat.jpg');
    background-size: cover;
    background-position: center 20%;
    filter: brightness(.4);
    transform: scale(1.04);
    transition: transform 8s ease-out
}

.hero-bg.loaded {
    transform: scale(1)
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none
}

.hero-video-wrap video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 100vh;
    min-width: 100vw;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    filter: brightness(0.45);
    object-fit: cover
}

.mute-btn {
    position: fixed;
    bottom: 2.2rem;
    left: 3rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgb(10 10 10 / .55);
    border: 1px solid rgb(214 63 140 / .4);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: .5rem 1rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s
}

.mute-btn:hover {
    background: rgb(214 63 140 / .25);
    border-color: var(--pink)
}

.mute-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

section {
    padding: 7rem 3rem
}

.section-label {
    font-size: .68rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: .8rem
}

.section-title {
    font-family: 'Ahsing', serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1;
    font-style: italic
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--pink);
    margin: 2rem 0
}

#ueber {
    background: var(--dark);
    position: relative;
    overflow: hidden
}

.ueber-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto
}

.ueber-text p {
    color: rgb(245 240 236 / .7);
    line-height: 1.85;
    font-size: 1rem;
    margin-bottom: 1.4rem
}

.ueber-text p:last-child {
    margin-bottom: 0
}

.ueber-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: .8rem;
}

.ueber-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(20%);
    transition: filter 0.4s, transform 0.4s;
    overflow: hidden;
}

.ueber-images img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.ueber-images .img-tall {
    grid-column: 2;
    grid-row: 1 / span 2;
    object-position: left center;
}

#konzerte {
    background: var(--black)
}

.konzerte-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start
}

.concert-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0
}

.concert-item {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgb(255 255 255 / .07);
    transition: border-color 0.2s
}

.concert-item:first-child {
    border-top: 1px solid rgb(255 255 255 / .07)
}

.concert-item:hover {
    border-color: var(--pink-dark)
}

.concert-date {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink);
    min-width: 80px;
    font-style: italic
}

.concert-name {
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 400
}

.concert-name a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgb(214 63 140 / .4);
    transition: color 0.2s, border-color 0.2s
}

.concert-name a:hover {
    color: var(--pink);
    border-bottom-color: var(--pink)
}

.konzerte-img {
    position: sticky;
    top: 120px
}

.konzerte-img img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    image-orientation: from-image
}

.past-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pink);
    margin-top: 2rem;
    margin-bottom: .5rem;
    letter-spacing: .05em
}

.past-year:first-of-type {
    margin-top: 0
}

#presse {
    background: var(--dark);
    overflow: hidden;
    position: relative
}

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

.presse-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 5rem
}

.presse-lead {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
    color: var(--white)
}

.presse-lead em {
    color: var(--pink);
    font-style: normal
}

.presse-body p {
    color: rgb(245 240 236 / .65);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.2rem
}

.presse-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 2rem
}

.pillar {
    background: var(--dark-2);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--pink);
    transition: height 0.4s
}

.pillar:hover::before {
    height: 100%
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem
}

.pillar p {
    font-size: .9rem;
    color: rgb(245 240 236 / .6);
    line-height: 1.75
}

#besetzung {
    background: var(--black)
}

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

.besetzung-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1rem
}

.member-count {
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: var(--pink);
    line-height: 1;
    opacity: .25
}

.besetzung-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 2rem
}

.section-group h4 {
    font-size: .65rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 1.2rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid rgb(214 63 140 / .3)
}

.section-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .55rem
}

.section-group ul li {
    font-size: .9rem;
    color: rgb(245 240 236 / .7);
    line-height: 1.4
}

.section-group ul li strong {
    color: var(--white);
    font-weight: 500;
    display: block;
    font-size: .82rem
}

.gallery-strip {
    display: flex;
    gap: .6rem;
    overflow-x: auto;
    padding: 0 3rem 2rem;
    scrollbar-width: none
}

.gallery-strip::-webkit-scrollbar {
    display: none
}

.gallery-strip img {
    height: 280px;
    width: auto;
    flex-shrink: 0;
    object-fit: cover;
    filter: saturate(80%);
    transition: filter 0.3s, transform 0.3s;
    cursor: pointer
}

.gallery-strip img:hover {
    filter: saturate(100%);
    transform: scale(1.02)
}

#kontakt {
    background: var(--dark);
    text-align: center;
    padding: 8rem 3rem
}

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

.kontakt-inner .section-title {
    margin-bottom: 1.5rem
}

.kontakt-inner p {
    color: rgb(245 240 236 / .6);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 3rem
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    text-decoration: none;
    transition: transform 0.2s
}

.contact-link:hover {
    transform: translateY(-3px)
}

.contact-link-label {
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--pink)
}

.contact-link-value {
    font-size: 1rem;
    color: var(--white)
}

.big-email {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3.5vw, 2.2rem);
    font-style: italic;
    color: var(--white);
    text-decoration: none;
    border-bottom: 2px solid var(--pink);
    padding-bottom: .2rem;
    transition: color 0.2s, border-color 0.2s
}

.big-email:hover {
    color: var(--pink)
}

footer {
    background: var(--black);
    border-top: 1px solid rgb(255 255 255 / .06);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

footer img {
    height: 28px;
    opacity: .6
}

footer p {
    font-size: .72rem;
    color: rgb(245 240 236 / .3);
    letter-spacing: .05em
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / .95);
    z-index: 200;
    align-items: center;
    justify-content: center
}

.lightbox.open {
    display: flex
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    opacity: .7;
    background: none;
    border: none;
    line-height: 1
}

.lightbox-close:hover {
    opacity: 1;
    color: var(--pink)
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.55);
    border: 1px solid rgba(214, 63, 140, 0.4);
    color: var(--white);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s;
    z-index: 201;
}

.lightbox-arrow:hover {
    background: rgba(214, 63, 140, 0.25);
    border-color: var(--pink);
}

.lightbox-arrow svg {
    width: 22px;
    height: 22px;
    pointer-events: none;
}

.lightbox-arrow-left {
    left: 2rem;
}

.lightbox-arrow-right {
    right: 2rem;
}

.concert-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-left: auto;
    background: none;
    border: 1px solid rgb(214 63 140 / .3);
    color: var(--grey);
    font-family: 'Inter', sans-serif;
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .35rem .75rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}

.concert-gallery-btn:hover {
    border-color: var(--pink);
    color: var(--pink-light);
}

.concert-gallery-btn svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: .68rem;
    letter-spacing: .15em;
    color: rgb(245 240 236 / .4);
    z-index: 201;
}

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease
}

.fade-in.visible {
    opacity: 1;
    transform: none
}

@media (max-width:900px) {
    nav {
        padding: 1rem 1.5rem
    }

    .nav-links {
        display: none
    }

    .nav-burger {
        display: flex
    }

    #hero {
        padding: 0 1.5rem 4rem
    }

    .mute-btn {
        left: 1.5rem;
        bottom: 1.5rem;
    }

    section {
        padding: 5rem 1.5rem
    }

    .ueber-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .ueber-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px;
    }

    .ueber-images .img-tall {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .konzerte-inner {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .konzerte-img {
        display: none
    }

    .presse-header {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .presse-pillars {
        grid-template-columns: 1fr;
        gap: 2px
    }

    .besetzung-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem
    }

    .gallery-strip {
        padding: 0 1.5rem 2rem
    }

    .gallery-strip img {
        height: 200px
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem
    }
}

@media (max-width:560px) {
    .hero-title {
        font-size: clamp(3rem, 15vw, 5rem)
    }

    .ueber-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 280px;
    }

    .ueber-images .img-tall {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .besetzung-grid {
        grid-template-columns: 1fr
    }

    .contact-links {
        flex-direction: column;
        align-items: center
    }
}